pub trait ContextInterface{
type Changer: ChangerInterface;
// Required method
fn changer(&mut self) -> Self::Changer;
}
Expand description
Registry of contexts.
Required Associated Types§
Sourcetype Changer: ChangerInterface
type Changer: ChangerInterface
Type of changer of the context.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.