Tuple4Map3Result

Trait Tuple4Map3Result 

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

Mapping .3 for Tuple4

Required Methods§

Source

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

Mapping .3 for Tuple4

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

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

Source§

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

Implementors§