TupleMap

Trait TupleMap 

Source
pub trait TupleMap<Mapper: TupleMapper, Tpl> { }
Available on crate feature map only.
Expand description

A TupleMapper and a tuple that are usable with map_tuple().

See also: map_tuple(), MapTuple, TupleMapper.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<Mapper: TupleMapper> TupleMap<Mapper, ()> for (Mapper, ())

Source§

impl<Mapper: TupleMapper, I1> TupleMap<Mapper, (I1,)> for (Mapper, (I1,))

Source§

impl<Mapper: TupleMapper, I1, I2> TupleMap<Mapper, (I1, I2)> for (Mapper, (I1, I2))

Source§

impl<Mapper: TupleMapper, I1, I2, I3> TupleMap<Mapper, (I1, I2, I3)> for (Mapper, (I1, I2, I3))

Source§

impl<Mapper: TupleMapper, I1, I2, I3, I4> TupleMap<Mapper, (I1, I2, I3, I4)> for (Mapper, (I1, I2, I3, I4))

Source§

impl<Mapper: TupleMapper, I1, I2, I3, I4, I5> TupleMap<Mapper, (I1, I2, I3, I4, I5)> for (Mapper, (I1, I2, I3, I4, I5))

Source§

impl<Mapper: TupleMapper, I1, I2, I3, I4, I5, I6> TupleMap<Mapper, (I1, I2, I3, I4, I5, I6)> for (Mapper, (I1, I2, I3, I4, I5, I6))

Source§

impl<Mapper: TupleMapper, I1, I2, I3, I4, I5, I6, I7> TupleMap<Mapper, (I1, I2, I3, I4, I5, I6, I7)> for (Mapper, (I1, I2, I3, I4, I5, I6, I7))

Source§

impl<Mapper: TupleMapper, I1, I2, I3, I4, I5, I6, I7, I8> TupleMap<Mapper, (I1, I2, I3, I4, I5, I6, I7, I8)> for (Mapper, (I1, I2, I3, I4, I5, I6, I7, I8))

Implementors§