1 2 3 4 5 6
macro_rules! return_err { ($err:expr) => { return Box::new(once($err.map_err(Into::into))) }; } pub(crate) use return_err;