Macro bail

Source
macro_rules! bail {
    ($($args:tt)*) => { ... };
}
Expand description

Returns a Failure after calling Failure::err_boxed(). Any arguments to this macro will be passed to format_args!, allowing formatting specifiers to be used.

See module level documentation for more docs