pub trait UnwrapInfallible<T> {
    fn unwrap_infallible(self) -> T;
}
Expand description

Unwrap a result known not to have a instantiable error

Required Methods

Unwrap contained value

Implementations on Foreign Types

Implementors