Trait map_in_place::MapBoxInPlace [] [src]

pub trait MapBoxInPlace<A> {
    fn map<B, F: FnOnce(A) -> B>(self, f: F) -> Box<B>;
    fn map_in_place<B, F: FnOnce(A) -> B>(self, f: F) -> Box<B>;
}

Required Methods

Implementors