macro_rules! bail {
($code:expr, $msg:expr) => { ... };
($code:expr, $fmt:expr, $($arg:tt)*) => { ... };
}Expand description
Return early with an error (convenience for return Err(...)).
macro_rules! bail {
($code:expr, $msg:expr) => { ... };
($code:expr, $fmt:expr, $($arg:tt)*) => { ... };
}Return early with an error (convenience for return Err(...)).