pub trait Tuple2MapAll<T0, T1> {
// Required method
fn map_all<U0, U1>(
self,
f0: impl FnMut(T0) -> U0,
f1: impl FnMut(T1) -> U1,
) -> (U0, U1);
}Expand description
Mapping all item for Tuple2
Required Methods§
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.