pub( crate ) mod private
{
use crate::protected::*;
pub trait ChangerInterface
where
Self :
fmt::Debug +
Clone +
,
{
type Root : ChangerInterface;
type Parent : ChangerInterface;
#[ inline ]
fn root( &mut self ) -> &mut Self::Root
{
unsafe
{
core::mem::transmute::< _, _ >( self.parent().root() )
}
}
fn context( self ) -> Self::Root;
fn parent( &mut self ) -> &mut Self::Parent;
fn end( self ) -> Self::Parent;
#[ inline ]
fn change_add< Change >( &mut self, change : Change ) -> &mut Self
where
Change : ChangeInterface + 'static,
{
self.root().change_add( change );
self
}
}
}
crate::mod_interface!
{
prelude use ChangerInterface;
}