pub trait Tuple7Map6Result<E, T0, T1, T2, T3, T4, T5, T6> {
    // Required method
    fn map6<U>(
        self,
        f: impl FnOnce(T6) -> U
    ) -> Result<(T0, T1, T2, T3, T4, T5, U), E>;
}
Expand description

Mapping .6 for Tuple7

Required Methods§

source

fn map6<U>( self, f: impl FnOnce(T6) -> U ) -> Result<(T0, T1, T2, T3, T4, T5, U), E>

Mapping .6 for Tuple7

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<E, T0, T1, T2, T3, T4, T5, T6> Tuple7Map6Result<E, T0, T1, T2, T3, T4, T5, T6> for Result<(T0, T1, T2, T3, T4, T5, T6), E>

source§

fn map6<U>( self, f: impl FnOnce(T6) -> U ) -> Result<(T0, T1, T2, T3, T4, T5, U), E>

Implementors§