pub trait Tuple3Map1<T0, T1, T2> {
// Required method
fn map1<U>(self, f: impl FnOnce(T1) -> U) -> (T0, U, T2);
}Expand description
Mapping .1 for Tuple3
Required Methods§
Sourcefn map1<U>(self, f: impl FnOnce(T1) -> U) -> (T0, U, T2)
fn map1<U>(self, f: impl FnOnce(T1) -> U) -> (T0, U, T2)
Mapping .1 for Tuple3
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.