[][src]Trait kari::data::stack::Push

pub trait Push {
    fn push(self, _: &mut Stack);
}

Required methods

fn push(self, _: &mut Stack)

Loading content...

Implementations on Foreign Types

impl<A, B> Push for (A, B) where
    A: Push,
    B: Push
[src]

Loading content...

Implementors

impl<T> Push for T where
    T: Value
[src]

Loading content...