Struct heapless::spsc::Producer [−][src]
A queue “producer”; it can enqueue items into the queue
Implementations
impl<'a, T, N, C> Producer<'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 is any space to enqueue a new item. When this returns true, at least the first subsequent enqueue will succeed.
pub fn enqueue(&mut self, item: T) -> Result<(), T>
[src]
Adds an item
to the end of the queue
Returns back the item
if the queue is full
pub fn capacity(&self) -> u8
[src]
Returns the maximum number of elements the queue can hold
pub fn len(&self) -> u8
[src]
Returns the number of elements in the queue
Note
This is a conservative estimate. Interrupt during this function
might cause that the Producer
actually has more than N items of available space.
pub unsafe fn enqueue_unchecked(&mut self, item: T)
[src]
Adds an item
to the end of the queue without checking if it’s full
Unsafety
If the queue is full this operation will leak a value (T’s destructor won’t run on
the value that got overwritten by item
), and will allow the dequeue
operation
to create a copy of item
, which could result in T
’s destructor running on item
twice.
impl<'a, T, N, C> Producer<'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 is any space to enqueue a new item. When this returns true, at least the first subsequent enqueue will succeed.
pub fn enqueue(&mut self, item: T) -> Result<(), T>
[src]
Adds an item
to the end of the queue
Returns back the item
if the queue is full
pub fn capacity(&self) -> u16
[src]
Returns the maximum number of elements the queue can hold
pub fn len(&self) -> u16
[src]
Returns the number of elements in the queue
Note
This is a conservative estimate. Interrupt during this function
might cause that the Producer
actually has more than N items of available space.
pub unsafe fn enqueue_unchecked(&mut self, item: T)
[src]
Adds an item
to the end of the queue without checking if it’s full
Unsafety
If the queue is full this operation will leak a value (T’s destructor won’t run on
the value that got overwritten by item
), and will allow the dequeue
operation
to create a copy of item
, which could result in T
’s destructor running on item
twice.
impl<'a, T, N, C> Producer<'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 is any space to enqueue a new item. When this returns true, at least the first subsequent enqueue will succeed.
pub fn enqueue(&mut self, item: T) -> Result<(), T>
[src]
Adds an item
to the end of the queue
Returns back the item
if the queue is full
pub fn capacity(&self) -> usize
[src]
Returns the maximum number of elements the queue can hold
pub fn len(&self) -> usize
[src]
Returns the number of elements in the queue
Note
This is a conservative estimate. Interrupt during this function
might cause that the Producer
actually has more than N items of available space.
pub unsafe fn enqueue_unchecked(&mut self, item: T)
[src]
Adds an item
to the end of the queue without checking if it’s full
Unsafety
If the queue is full this operation will leak a value (T’s destructor won’t run on
the value that got overwritten by item
), and will allow the dequeue
operation
to create a copy of item
, which could result in T
’s destructor running on item
twice.
Trait Implementations
impl<'a, T, N, U, C> Send for Producer<'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
impl<'a, T, N, U = usize, C = MultiCore> !RefUnwindSafe for Producer<'a, T, N, U, C>
impl<'a, T, N, U = usize, C = MultiCore> !Sync for Producer<'a, T, N, U, C>
impl<'a, T, N, U, C> Unpin for Producer<'a, T, N, U, C>
impl<'a, T, N, U = usize, C = MultiCore> !UnwindSafe for Producer<'a, T, N, U, C>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
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.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,