1 2 3 4 5 6 7 8 9 10 11 12 13
#[cfg(test)] #[path = "./error_handler_test.rs"] pub mod error_handler_test; #[macro_export] macro_rules! try_wrap_err { ($res:expr) => { match $res { Ok(ok) => ok, Err(error) => return Some(Err(error.into())), } }; }