Macro trace_error

Source
macro_rules! trace_error {
    ($err:expr) => { ... };
    ($err:expr, $t:ty) => { ... };
}
Expand description

The core macro that creates the Result::Err(Trace<E>) value, but does not return it immediately.

An optional second parameter can be given to indicate the type the Result should be if type inference cannot determine it automatically.