Trait rs_graph::collections::ItemQueue[][src]

pub trait ItemQueue<I> {
    fn len(&self) -> usize;
fn clear(&mut self);
fn push(&mut self, u: I);
fn pop(&mut self) -> Option<I>; fn is_empty(&self) -> bool { ... } }

Required methods

fn len(&self) -> usize[src]

fn clear(&mut self)[src]

fn push(&mut self, u: I)[src]

fn pop(&mut self) -> Option<I>[src]

Loading content...

Provided methods

fn is_empty(&self) -> bool[src]

Loading content...

Implementations on Foreign Types

impl<'a, I, D> ItemQueue<I> for &'a mut D where
    D: ItemQueue<I>, 
[src]

fn is_empty(&self) -> bool[src]

fn len(&self) -> usize[src]

fn clear(&mut self)[src]

fn push(&mut self, u: I)[src]

fn pop(&mut self) -> Option<I>[src]

impl<I> ItemQueue<I> for VecDeque<I>[src]

fn is_empty(&self) -> bool[src]

fn len(&self) -> usize[src]

fn clear(&mut self)[src]

fn push(&mut self, u: I)[src]

fn pop(&mut self) -> Option<I>[src]

Loading content...

Implementors

Loading content...