[go: up one dir, main page]

Macro bail

Source
macro_rules! bail {
    ($e:expr) => { ... };
    ($fmt:expr, $($arg:tt)*) => { ... };
}
Expand description

Exits a function early with an Error.

The bail! macro provides an easy way to exit a function. bail!(X) is equivalent to writing:

return Err(format_err!(X))