pub trait PushBack: Collection {
type Output;
// Required method
fn push_back(&mut self, element: Self::Item) -> Self::Output;
}Expand description
Mutable collection where new elements can be pushed on the back.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".