pub( crate ) mod private
{
use crate::*;
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
}
}
}
pub mod protected
{
pub use super::
{
orphan::*,
};
}
pub use protected::*;
pub mod orphan
{
pub use super::exposed::*;
}
pub mod exposed
{
pub use super::
{
prelude::*,
};
}
pub use exposed::*;
pub mod prelude
{
pub use super::
{
private::ChangerInterface,
};
}