[−][src]Struct heapless::spsc::Consumer
A queue "consumer"; it can dequeue items from the queue
Methods
impl<'a, T, N, C> Consumer<'a, T, N, u8, C> where
N: ArrayLength<T>,
C: XCore,
[src]
N: ArrayLength<T>,
C: XCore,
pub fn ready(&self) -> bool
[src]
Returns if there are any items to dequeue. When this returns true, at least the first subsequent dequeue will succeed.
pub fn dequeue(&mut self) -> Option<T>
[src]
Returns the item in the front of the queue, or None
if the queue is empty
pub unsafe fn dequeue_unchecked(&mut self) -> T
[src]
Returns the item in the front of the queue, without checking if it's empty
Unsafety
If the queue is empty this is equivalent to calling mem::uninitialized
impl<'a, T, N, C> Consumer<'a, T, N, u16, C> where
N: ArrayLength<T>,
C: XCore,
[src]
N: ArrayLength<T>,
C: XCore,
pub fn ready(&self) -> bool
[src]
Returns if there are any items to dequeue. When this returns true, at least the first subsequent dequeue will succeed.
pub fn dequeue(&mut self) -> Option<T>
[src]
Returns the item in the front of the queue, or None
if the queue is empty
pub unsafe fn dequeue_unchecked(&mut self) -> T
[src]
Returns the item in the front of the queue, without checking if it's empty
Unsafety
If the queue is empty this is equivalent to calling mem::uninitialized
impl<'a, T, N, C> Consumer<'a, T, N, usize, C> where
N: ArrayLength<T>,
C: XCore,
[src]
N: ArrayLength<T>,
C: XCore,
pub fn ready(&self) -> bool
[src]
Returns if there are any items to dequeue. When this returns true, at least the first subsequent dequeue will succeed.
pub fn dequeue(&mut self) -> Option<T>
[src]
Returns the item in the front of the queue, or None
if the queue is empty
pub unsafe fn dequeue_unchecked(&mut self) -> T
[src]
Returns the item in the front of the queue, without checking if it's empty
Unsafety
If the queue is empty this is equivalent to calling mem::uninitialized
Trait Implementations
impl<'a, T, N, U, C> Send for Consumer<'a, T, N, U, C> where
N: ArrayLength<T>,
T: Send,
U: Uxx,
C: XCore,
[src]
N: ArrayLength<T>,
T: Send,
U: Uxx,
C: XCore,
Auto Trait Implementations
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self