pub trait Container<T> {
type Cont<V>: RawContainer<Item = V> + ?Sized;
}
Expand description
The Container
trait is a higher-level abstraction over RawContainer
.
Required Associated Types§
type Cont<V>: RawContainer<Item = V> + ?Sized
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.