[][src]Struct minimult_cortex_m::MTMsgReceiver

pub struct MTMsgReceiver<'a, 'q, M> { /* fields omitted */ }

Message receiving channel

Methods

impl<'_, '_, M> MTMsgReceiver<'_, '_, M>[src]

pub fn available(&self) -> usize[src]

Gets if there is an available message entry.

  • Returns the number of available message entries.

pub fn receive(&mut self) -> M[src]

Receives a message.

  • Returns the received message.
  • Blocks if there is no available message entry.

Trait Implementations

impl<'_, '_, M: Send> Send for MTMsgReceiver<'_, '_, M>[src]

Auto Trait Implementations

impl<'a, 'q, M> Unpin for MTMsgReceiver<'a, 'q, M>

impl<'a, 'q, M> !Sync for MTMsgReceiver<'a, 'q, M>

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self