[][src]Trait eiz::rt_queue::PushN

pub trait PushN<T: Send + Clone> {
    fn try_pushn(&mut self, value: &[T]) -> usize;
}

The try_pushn operation.

Required methods

fn try_pushn(&mut self, value: &[T]) -> usize

Tries to copy a slice of values into the container. Returns the number of values successfully copied from the slice.

Loading content...

Implementors

impl<T: Send + Clone> PushN<T> for AtomicRingWriter<T>[src]

impl<T: Send + Clone> PushN<T> for MpscQueueWriter<T>[src]

Loading content...