pub trait MutatorWrapper {
    type Wrapped;

    fn wrapped_mutator(&self) -> &Self::Wrapped;
}
Expand description

A trait for types that are basic wrappers over a mutator, such as Box<M>.

Such wrapper types automatically implement the Mutator trait.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors