Trait UnwrapAll

Source
pub trait UnwrapAll {
    type Output;

    // Required method
    fn unwrap_all(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn unwrap_all(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<T> UnwrapAll for Option<T>

Source§

type Output = T

Source§

fn unwrap_all(self) -> Self::Output

Implementors§