Trait brassfibre::prelude::Apply [] [src]

pub trait Apply<'s, R> {
    type In;
    type FOut;
    type Out;
    fn apply<'f>(&'s self, func: &'f Fn(&Self::In) -> Self::FOut) -> Self::Out;
}

Associated Types

Required Methods

Implementors