Trait _

pub(crate) trait _<T>: Sized {
    // Required method
    fn void_unwrap(self) -> T;
}
Expand description

Extensions to Result<T, Void>

Required Methods§

fn void_unwrap(self) -> T

Get the value out of a wrapper.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

§

impl<T> ResultVoidExt<T> for Result<T, Void>

§

fn void_unwrap(self) -> T

Get the value out of an always-ok Result.

Never panics, since it is statically known to be Ok.

Implementors§