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

Mapping .8 for Tuple9

Required Methods§

source

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

Mapping .8 for Tuple9

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

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

source§

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

Implementors§