Skip to main content

TupleMap6

Trait TupleMap6 

Source
pub trait TupleMap6<R, F> {
    type Output;

    // Required method
    fn map6(self, f: F) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn map6(self, f: F) -> Self::Output

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<R, F, T0, T1, T2, T3, T4, T5, T6, T7> TupleMap6<R, F> for (T0, T1, T2, T3, T4, T5, T6, T7)
where F: Fn(T6) -> R,

Source§

impl<R, F, T0, T1, T2, T3, T4, T5, T6> TupleMap6<R, F> for (T0, T1, T2, T3, T4, T5, T6)
where F: Fn(T6) -> R,

Implementors§