[−][src]Trait sentry_failure::FailureResultExt
Extension trait providing methods to unwrap a result, preserving backtraces from the underlying error in the event of a panic.
Associated Types
type Value
Type of the success case
Required methods
fn fallible_unwrap(self) -> Self::Value
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
impl<T, E> FailureResultExt for Result<T, E> where
E: Into<Error>,
[src]
E: Into<Error>,