pub trait Tuple1MapAll<T> {
    // Required method
    fn map_all<U>(self, f: impl FnMut(T) -> U) -> (U,);
}
Expand description

Mapping all item for Tuple1

Required Methods§

source

fn map_all<U>(self, f: impl FnMut(T) -> U) -> (U,)

Mapping all item for Tuple1

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> Tuple1MapAll<T> for (T,)

source§

fn map_all<U>(self, f: impl FnMut(T) -> U) -> (U,)

Implementors§