pub trait Map0<T0, R0> {
    type Output;

    fn map0<F: Fn(T0) -> R0>(self, map: F) -> Self::Output;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§