Trait Output
Other items inframe_support::dispatch
pub trait Output { fn write(&mut self, bytes: &[u8]); fn push_byte(&mut self, byte: u8) { ... } }
Trait that allows writing of data.
fn write(&mut self, bytes: &[u8])
Write to the output.
fn push_byte(&mut self, byte: u8)
Write a single byte to the output.
impl<W> Output for W where W: Write,