Skip to main content

UnwrapResultExt

Trait UnwrapResultExt 

Source
pub trait UnwrapResultExt<T, E> {
    // Required methods
    fn unwrap_release_unsafe(self) -> T;
    fn unwrap_err_release_unsafe(self) -> E;
}

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T: Debug, E: Debug> UnwrapResultExt<T, E> for Result<T, E>

Implementors§