Trait lrs::ops::DerefMut

Objects that implement the mutable dereference operator.

Syntax

trait DerefMut : Deref {
    /* Required methods */
    fn deref_mut(&'a mut self) -> &'a mut <Self as Deref>::Target
}

Methods

ReceiverNameDescription
&mut selfderef_mut

The method that will be called by the operator.