pub trait CommandProcessor<'a> {
    fn push(&mut self, val: Command<InputReference<'a>>);

    fn push_literals(&mut self, data: &InputPair<'a>) { ... }
fn push_rand_literals(&mut self, data: &InputPair<'a>) { ... }
fn push_block_switch_literal(&mut self, block_type: u8) { ... } }

Required methods

Provided methods

Implementors