pub trait FunctorIter<F, T>{
type Cont<U>: ?Sized;
type Iter;
type Elem;
// Required method
fn apply_all(self, f: F) -> Self::Cont<T>;
}Required Associated Types§
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.