Type Definition ez_err::core::Result

source · []
pub type Result<T> = Result<T, EzError>;
Expand description

A custom std::result::Result<T, E> with the EzError type. This is used for passing down errors.

Trait Implementations

Handles the result. If it contains an error a backtrace is created and the error is printed to the console. Read more

Handles the result or panics if it is Err. If it contains an error a backtrace is created and the error is printed to the console. Read more

The return type of add_info. This can be used to convert between different error types. Read more

Adds a new frame info to the Result<T>. This only happens when the Result<T> is [Err(T)]. Commonly used with the flc! macro. Read more