[][src]Enum sam3x8e::can1::mmr0::MOTW

pub enum MOTW {
    MB_DISABLED,
    MB_RX,
    MB_RX_OVERWRITE,
    MB_TX,
    MB_CONSUMER,
    MB_PRODUCER,
}

Values that can be written to the field MOT

Variants

MB_DISABLED

Mailbox is disabled. This prevents receiving or transmitting any messages with this mailbox.

MB_RX

Reception Mailbox. Mailbox is configured for reception. If a message is received while the mailbox data register is full, it is discarded.

MB_RX_OVERWRITE

Reception mailbox with overwrite. Mailbox is configured for reception. If a message is received while the mailbox is full, it overwrites the previous message.

MB_TX

Transmit mailbox. Mailbox is configured for transmission.

MB_CONSUMER

Consumer Mailbox. Mailbox is configured in reception but behaves as a Transmit Mailbox, i.e., it sends a remote frame and waits for an answer.

MB_PRODUCER

Producer Mailbox. Mailbox is configured in transmission but also behaves like a reception mailbox, i.e., it waits to receive a Remote Frame before sending its contents.

Auto Trait Implementations

impl Send for MOTW

impl Sync for MOTW

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

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

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

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