pub trait GetMut<T>: Get<T> {
// Required method
fn get_mut<Q>(&mut self, index: Q) -> Option<&mut T>
where Q: Borrow<Self::Key>;
}
Expand description
Required Methods§
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.