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