Trait frame_support::dispatch::Output[]

pub trait Output {
    fn write(&mut self, bytes: &[u8]);

    fn push_byte(&mut self, byte: u8) { ... }
}
Expand description

Trait that allows writing of data.

Required methods

Write to the output.

Provided methods

Write a single byte to the output.

Implementors