pub trait UnwrapInfallible<T> {
    // Required method
    fn unwrap_infallible(self) -> T;
}

Required Methods§

Implementations on Foreign Types§

source§

impl<T> UnwrapInfallible<T> for Result<T, CoderError<Infallible, Infallible>>

source§

impl<T> UnwrapInfallible<T> for Result<T, Infallible>

Implementors§