Trait Entry
econtext
pub trait Entry { fn print(&self); }
The trait for an entry in the stack
fn print(&self)
impl<Data: Debug> Entry for DataScope<Data>