1 2 3#[macro_export] 4macro_rules! ensure { 5 ($cond:expr, $e:expr) => { 6 if !($cond) { 7 return Err(core::convert::From::from($e)); 8 } 9 }; 10}