pub trait Iterable<Idx, T>where
Self: Extend<T> + FromIterator<T> + Index<Idx, Output = T> + Insert<Idx, T> + IntoIterator<Item = T>,{ }
Expand description
Iterable describes the basic behaviors of an iterable structure
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.