pub( crate ) mod private
{
use crate::protected::*;
pub trait ContextInterface
where
Self :
HasIdInterface +
Make0 +
fmt::Debug +
,
{
type Changer : ChangerInterface;
fn changer( &mut self ) -> Self::Changer;
}
}
crate::mod_interface!
{
prelude use ContextInterface;
}