pub trait MutDecorator: Decorator { fn mut_base(&mut self) -> &mut Self::D; }
Get a mutable reference to the underlying data structure.