Enum atsam4e16c_pac::can0::mmr3::MOT_A[][src]

#[repr(u8)]pub enum MOT_A {
    MB_DISABLED,
    MB_RX,
    MB_RX_OVERWRITE,
    MB_TX,
    MB_CONSUMER,
    MB_PRODUCER,
}

Mailbox Object Type

Value on reset: 0

Variants

MB_DISABLED

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

MB_RX

1: 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

2: 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

3: Transmit mailbox. Mailbox is configured for transmission.

MB_CONSUMER

4: 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

5: 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.

Trait Implementations

impl Clone for MOT_A[src]

impl Copy for MOT_A[src]

impl Debug for MOT_A[src]

impl PartialEq<MOT_A> for MOT_A[src]

impl StructuralPartialEq for MOT_A[src]

Auto Trait Implementations

impl Send for MOT_A

impl Sync for MOT_A

impl Unpin for MOT_A

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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> 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.