pub trait FailureResultExt {
    type Value;
    fn fallible_unwrap(self) -> Self::Value;
}
Expand description

Extension trait providing methods to unwrap a result, preserving backtraces from the underlying error in the event of a panic.

Associated Types

Type of the success case

Required methods

Unwraps the result, panicking if it contains an error. Any backtrace attached to the error will be preserved with the panic.

Implementations on Foreign Types

Implementors