Trait Extract

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

Extract lets you take a value of A out of an F<A>.

It is the categorical dual of Pure, ie. it does the opposite of Pure.

Required Methods§

Source

fn extract(self) -> A

Implementors§