Trait reflike::RefMut [] [src]

pub trait RefMut<'a, T> {
    fn from_ref_mut(val: &'a mut T) -> Self;
}

A trait for things that are "close enough" to &'a mut T.

Required Methods

Obtains this value from a mutable reference, showing that it's possible.

Implementors