pub trait BaseMap2: BaseWrap {
// Required method
fn map2<Out, In0, In1>(
_: Self::Wrap<In0>,
_: Self::Wrap<In1>,
_: impl FnOnce(In0, In1) -> Out,
) -> Self::Wrap<Out>;
}Required Methods§
fn map2<Out, In0, In1>( _: Self::Wrap<In0>, _: Self::Wrap<In1>, _: impl FnOnce(In0, In1) -> Out, ) -> Self::Wrap<Out>
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.