pub trait MutDecorator: Decorator {
    fn mut_base(&mut self) -> &mut Self::D;
}

Required Methods

Get a mutable reference to the underlying data structure.

Implementors