[][src]Struct ico_memory::mem::QueueU32

#[repr(C)]
pub struct QueueU32<'a> { /* fields omitted */ }

Methods

impl<'a> QueueU32<'a>[src]

pub const unsafe fn from_static(
    slice: &'a *mut AtomicU32,
    capacity: usize
) -> QueueU32<'a>
[src]

This method is a kludge to work around lack of stable const-generics, const unions, etc.
It is up to the caller to ensure that the pointer passed in is truly static, and is not mutated externally. Capacity must be a non-zero power of two.

pub fn clear(&self)[src]

pub fn enqueue(&self, value: u32) -> bool[src]

pub fn dequeue(&self) -> Option<u32>[src]

Trait Implementations

impl<'a> Sync for QueueU32<'a>[src]

impl<'a> Send for QueueU32<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for QueueU32<'a>

impl<'a> UnwindSafe for QueueU32<'a>

impl<'a> RefUnwindSafe for QueueU32<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]