pub trait Decorator {
    type D;

    fn base(&self) -> &Self::D;
}

Required Associated Types

The decorated type.

Required Methods

Get a reference to the underlying data structure.

Implementors