pub trait StackPrimitive {
    fn push_to(&self, stack: &mut Stack);
}

Required Methods

Implementations on Foreign Types

Implementors