macro_rules! bail {
($msg:literal) => { ... };
($err:expr) => { ... };
($fmt:literal, $($arg:tt)*) => { ... };
}Expand description
Return early with an error.
macro_rules! bail {
($msg:literal) => { ... };
($err:expr) => { ... };
($fmt:literal, $($arg:tt)*) => { ... };
}Return early with an error.