Trait Extract

Source
pub trait Extract<A> {
    // Required method
    fn extract(self) -> A;
}

Required Methods§

Source

fn extract(self) -> A

Implementations on Foreign Types§

Source§

impl<A> Extract<A> for Option<A>

Source§

fn extract(self) -> A

Source§

impl<A, E> Extract<A> for Result<A, E>
where E: Debug,

Source§

fn extract(self) -> A

Implementors§