pub trait ContextInterface where
Self: 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.
