Macro bail
macro_rules! bail {
($($arg:tt)*) => { ... };
}Expand description
Return early with an error, in any type that can be converted from
an anyhow::Error.
See anyhow::bail for more details.
macro_rules! bail {
($($arg:tt)*) => { ... };
}Return early with an error, in any type that can be converted from
an anyhow::Error.
See anyhow::bail for more details.