Trait Push

Source
pub trait Push<T> {
    // Required method
    fn push(&mut self, op1: T);
}
Expand description

Trait for push instruction kinds.

Required Methods§

Source

fn push(&mut self, op1: T)

Emit a push instruction.

Implementors§