pub trait BackMut: CollectionMut {
// Required method
fn back_mut(&mut self) -> Option<Self::ItemMut<'_>>;
}Expand description
Collection exposing a mutable reference to its back element.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".