Objects that implement the mutable dereference operator.
trait DerefMut : Deref {
/* Required methods */
fn deref_mut(&'a mut self) -> &'a mut <Self as Deref>::Target
}| Receiver | Name | Description |
|---|---|---|
&mut self | deref_mut | The method that will be called by the operator. |