Skip to main content

ArrayMpsc

Struct ArrayMpsc 

Source
pub struct ArrayMpsc<T>(/* private fields */);
Expand description

Simplified ArrayQueue tweaks for MPSC

Push and pop fast path reduced one atomic ops compared to its MPMC version (only 3 ops instead of 4), and it’s faster to detect the empty / full condition (2 ops instead of 3).

Implementations§

Source§

impl<T> ArrayMpsc<T>

Source

pub fn new(bound: usize) -> Self

Trait Implementations§

Source§

impl<T> FlavorBounded for ArrayMpsc<T>

Source§

fn new_with_bound(size: usize) -> Self

Source§

impl<T> Queue for ArrayMpsc<T>

Source§

type Item = T

Source§

fn pop(&self) -> Option<T>
where T: Send,

Source§

fn push(&self, item: T) -> Result<(), T>
where T: Send,

Source§

fn is_full(&self) -> bool

Source§

fn is_empty(&self) -> bool

Source§

fn len(&self) -> usize

Source§

fn capacity(&self) -> Option<usize>

Auto Trait Implementations§

§

impl<T> !Freeze for ArrayMpsc<T>

§

impl<T> RefUnwindSafe for ArrayMpsc<T>

§

impl<T> Send for ArrayMpsc<T>

§

impl<T> Sync for ArrayMpsc<T>

§

impl<T> Unpin for ArrayMpsc<T>

§

impl<T> UnsafeUnpin for ArrayMpsc<T>

§

impl<T> UnwindSafe for ArrayMpsc<T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.