pub trait Decorator { type D; fn base(&self) -> &Self::D; }
The decorated type.
Get a reference to the underlying data structure.