pub trait DerefMutRaw: DerefRaw {
    fn deref_mut_raw(this: Mut<'_, Self>) -> Mut<'_, Self::Target>;
}
Expand description

A variant of DerefMut that works with raw references.

Required Methods

Mutably dereferences the value.

Implementors