Skip to main content

Entry

Trait Entry 

Source
pub trait Entry {
    // Required method
    fn write(&self, writer: &mut dyn Write);
}
Expand description

The trait for an entry in the stack

Required Methods§

Source

fn write(&self, writer: &mut dyn Write)

Implementors§

Source§

impl<Data: Debug> Entry for DataScope<Data>