pub struct Queue(/* private fields */);Implementations§
Trait Implementations§
Source§impl Queue for Queue
impl Queue for Queue
fn new(size: UBaseType, message_size: UBaseType) -> Result<Self>
fn fetch(&self, buffer: &mut [u8], time: TickType) -> Result<()>
fn fetch_from_isr(&self, buffer: &mut [u8]) -> Result<()>
fn post(&self, item: &[u8], time: TickType) -> Result<()>
fn post_from_isr(&self, item: &[u8]) -> Result<()>
fn delete(&mut self)
impl Send for Queue
impl Sync for Queue
Auto Trait Implementations§
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more