logo
pub trait ContextInterface: HasIdInterface + Make0 + Debug {
    type Changer: ChangerInterface;

    fn changer(&mut self) -> Self::Changer;
}
Expand description

Registry of contexts.

Required Associated Types

Type of changer of the context.

Required Methods

Get changer of the context.

Implementors