pub trait Stack {
    fn push(&mut self, bits: u32);
}

Required Methods

Implementors