pub trait TArrayMapInto<V> {
type MappedType<W>;
// Required method
fn map_into2<W>(self, f: impl FnMut(V) -> W) -> Self::MappedType<W>;
}
Required Associated Types§
type MappedType<W>
Required Methods§
fn map_into2<W>(self, f: impl FnMut(V) -> W) -> Self::MappedType<W>
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.