Trait iter_trait::refs::RefMut [] [src]

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

Marker that states that Self can be obtained from the reference &'a mut T.

Required Methods

Performs the conversion, showing that it is possible.

Implementors