MIT
exception-plugin is a common exception in Rust, which helps developers better control their programs
```rust use std::error::Error; use std::{line, file}; use std::path::PathBuf; use exceptplugin::{ ExceptionLevel, ExceptionFactory, EasyException, EasyExceptionBuilder, NewFrom, SuperBuilderImpl, DerefException, Exception, TargetParamImpl, CommonParamImpl, easye, };
pub fn testeasy() -> Result<(), Box
```rust use std::error::Error; use std::fmt::{Debug, Display, Formatter}; use std::ops::Deref; use std::time::Duration; use exceptplugin::{ SuperBuilderImpl, Exception, ExceptionLevel, exceptionimpl, displayerrimpl, Exceptions, builder_impl, NewFrom, FromBuilder, ExceptionFactory, };
/// # step1 : create a new exception /// /// mut contain 4 param!: /// - code /// - msg /// - level /// - timestamp
pub struct MyException { code: u32, msg: String, level: ExceptionLevel, timestamp: Duration, /// here I define a new param! define: String, }
/// # step2 : use macro to impl Exception for MyException
/// if you wanna impl Exception trait , you must impl Error,Debug,Display,as followings:
/// rust
/// impl Error for MyException {}
/// impl Debug for MyException {}
/// impl Display for MyException {}
/// impl Exception for MyException { // fn ... }
///
/// it is very complicated , so you can use exceptionimpl! and displayerrimpl!
displayerrimpl!(MyException);
exceptionimpl!(MyException,Exceptions::Define);
/// # step3 : impl the other param for define Exception /// actually , now it is enough /// but you need to continue!!! impl MyException { pub fn getdefine(&self) -> &str { &self.define } pub fn setdefine(&mut self, value: &str) -> &mut Self { self.define = String::from(value); self } }
/// # step4 : create a builder for define Exception
/// builder is quite simple and you should add a param : e_type: Exceptions
pub struct MyExceptionBuilder { code: u32, msg: String, level: ExceptionLevel, timestamp: Duration, /// here I define a new param! define: String, e_type: Exceptions, }
impl MyExceptionBuilder { pub fn getdefine(&self) -> &str { &self.define } pub fn setdefine(&mut self, value: &str) -> &mut Self { self.define = String::from(value); self } }
/// # step5 : add builderimpl! macro for Define Exception builderimpl!(MyExceptionBuilder,MyException);
/// # step6 : impl NewFrom and FromBuilder
impl NewFrom for MyException {
type Builder = MyExceptionBuilder;
fn new() -> Self::Builder {
MyExceptionBuilder::new()
}
fn from_super(e: Box
impl FromBuilder for MyException { type Output = MyException; type Input = MyExceptionBuilder; fn frombuilder(builder: &Self::Input) -> Self::Output { Self::Output { code: builder.code(), msg: String::from(builder.msg()), level: builder.level(), timestamp: builder.timestamp(), define: String::from(builder.getdefine()), } } }
/// # step 7: test
pub fn testmyexception() -> () {
// [src\lib\defineexception.rs:110] mye = MyException {
// code: 1000,
// msg: "",
// level: Info,
// timestamp: 0ns,
// define: "this is my exception",
// }
let mye = ExceptionFactory::new::