[][src]Trait dynqueue::IntoDynQueue

pub trait IntoDynQueue<T, U: Queue<T>> {
    fn into_dyn_queue<'a>(self) -> DynQueue<'a, T, U>;
}

Trait to produce a new DynQueue

Required methods

fn into_dyn_queue<'a>(self) -> DynQueue<'a, T, U>

new

Loading content...

Implementations on Foreign Types

impl<T> IntoDynQueue<T, RwLock<Vec<T>>> for Vec<T>[src]

impl<T> IntoDynQueue<T, RwLock<Vec<T>>> for RwLock<Vec<T>>[src]

impl<T> IntoDynQueue<T, RwLock<VecDeque<T>>> for VecDeque<T>[src]

impl<T> IntoDynQueue<T, RwLock<VecDeque<T>>> for RwLock<VecDeque<T>>[src]

Loading content...

Implementors

Loading content...