Struct embassy_stm32::can::CanRx
source · pub struct CanRx<'c, 'd, T: Instance> { /* private fields */ }
Expand description
CAN driver, receive half.
Implementations§
source§impl<'c, 'd, T: Instance> CanRx<'c, 'd, T>
impl<'c, 'd, T: Instance> CanRx<'c, 'd, T>
sourcepub async fn read(&mut self) -> Result<Envelope, BusError>
pub async fn read(&mut self) -> Result<Envelope, BusError>
Read a CAN frame.
If no CAN frame is in the RX buffer, this will wait until there is one.
Returns a tuple of the time the message was received and the message frame
sourcepub fn try_read(&mut self) -> Result<Envelope, TryReadError>
pub fn try_read(&mut self) -> Result<Envelope, TryReadError>
Attempts to read a CAN frame without blocking.
Returns [Err(TryReadError::Empty)] if there are no frames in the rx queue.
sourcepub async fn wait_not_empty(&mut self)
pub async fn wait_not_empty(&mut self)
Waits while receive queue is empty.
Auto Trait Implementations§
impl<'c, 'd, T> Freeze for CanRx<'c, 'd, T>
impl<'c, 'd, T> RefUnwindSafe for CanRx<'c, 'd, T>where
T: RefUnwindSafe,
impl<'c, 'd, T> Send for CanRx<'c, 'd, T>where
T: Send,
impl<'c, 'd, T> Sync for CanRx<'c, 'd, T>where
T: Sync,
impl<'c, 'd, T> Unpin for CanRx<'c, 'd, T>
impl<'c, 'd, T> !UnwindSafe for CanRx<'c, 'd, T>
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