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

Mapping .2 for Tuple7

Required Methods§

source

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

Mapping .2 for Tuple7

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

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

source§

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

Implementors§