Skip to main content

anyhow

Macro anyhow 

Source
macro_rules! anyhow {
    ( $( $args:tt )* ) => { ... };
}
👎Deprecated:

Use format_err!(...) instead

Expand description

Identical to the format_err! macro.

This is provided for API compatibility with the anyhow crate, but you should prefer using format_err! instead.