Trait syntex_syntax::util::move_map::MoveMap [] [src]

pub trait MoveMap<T>: Sized {
    fn move_flat_map<F, I>(self, f: F) -> Self
    where
        F: FnMut(T) -> I,
        I: IntoIterator<Item = T>
; fn move_map<F>(self, f: F) -> Self
    where
        F: FnMut(T) -> T
, { ... } }

Required Methods

Provided Methods

Implementors