[][src]Trait dmutils::Mut

pub trait Mut: Deref {
    pub fn mutate(&mut self) -> &mut Self::Target;
}

Required methods

pub fn mutate(&mut self) -> &mut Self::Target[src]

Acquire the mutable borrow of a pointer. May clone the content if necessary.

Loading content...

Implementations on Foreign Types

impl<T: Clone> Mut for Rc<T>[src]

Loading content...

Implementors

impl<T: Clone> Mut for Share<T>[src]

Loading content...