pub trait Collection<T>:
AsRef<[T]>
+ AsMut<[T]>
+ Default
+ Length
+ Truncate
+ TryExtend<T>
+ TryPush<T> { }
Expand description
Collection types implement all of the traits in this crate.
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.