NaturalTransform

Trait NaturalTransform 

Source
pub trait NaturalTransform<T: Param<Param = Self::Param>>: Param {
    // Required method
    fn transform(self) -> T;
}

Required Methods§

Source

fn transform(self) -> T

Implementations on Foreign Types§

Source§

impl<A> NaturalTransform<Option<A>> for Box<A>

Source§

fn transform(self) -> Option<A>

Source§

impl<A, E> NaturalTransform<Option<A>> for Result<A, E>

Source§

fn transform(self) -> Option<A>

Implementors§