pub trait WrapperMut<T>: Wrapper<T> {
// Required methods
fn get_mut(&mut self) -> &mut T;
fn view_mut(&mut self) -> Self::Cont<&mut T>;
}Expand description
The WrapperMut trait extends the Wrapper trait to provide mutable access to the
inner value.
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.