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

Mapping .2 for Tuple3

Required Methods§

source

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

Mapping .2 for Tuple3

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<E, T0, T1, T2> Tuple3Map2Result<E, T0, T1, T2> for Result<(T0, T1, T2), E>

source§

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

Implementors§