Skip to main content

PushBack

Trait PushBack 

Source
pub trait PushBack {
    type Input;

    // Required method
    fn push_back(&mut self, x: Self::Input);
}

Required Associated Types§

Required Methods§

Source

fn push_back(&mut self, x: Self::Input)

Implementors§

Source§

impl<M: Monoid> PushBack for FoldableDeque<M>
where M::Set: Clone,

Source§

type Input = <M as Magma>::Set

Source§

impl<M: Monoid> PushBack for FoldableQueue<M>
where M::Set: Clone,

Source§

type Input = <M as Magma>::Set

Source§

impl<T: Eq> PushBack for KmpSearcher<T>

Source§

type Input = T