Macro trace_error::throw [] [src]

macro_rules! throw {
    ($err:expr) => { ... };
}

Creates a new Result::Err(Trace<E>) and immediately returns it.

This relies on the return type of the function to provide type inference for the Result::Ok(T) type.