[][src]Struct minimult_cortex_m::MTMsgSender

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

Message sending channel

Methods

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

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

Gets if there is a vacant message entry.

  • Returns the number of vacant message entries.

pub fn send(&mut self, msg: M)[src]

Sends a message.

  • msg - the message to be sent.
  • Blocks if there is no vacant message entry.

Trait Implementations

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

Auto Trait Implementations

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

impl<'a, 'q, M> !Sync for MTMsgSender<'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