pub enum Mailbox {
Mailbox0,
Mailbox1,
Mailbox2,
}
Expand description
Identifies one of the three transmit mailboxes.
Variants
Mailbox0
Transmit mailbox 0
Mailbox1
Transmit mailbox 1
Mailbox2
Transmit mailbox 2
Trait Implementations
sourceimpl Ord for Mailbox
impl Ord for Mailbox
sourceimpl PartialOrd<Mailbox> for Mailbox
impl PartialOrd<Mailbox> for Mailbox
sourcefn partial_cmp(&self, other: &Mailbox) -> Option<Ordering>
fn partial_cmp(&self, other: &Mailbox) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for Mailbox
impl Eq for Mailbox
impl StructuralEq for Mailbox
impl StructuralPartialEq for Mailbox
Auto Trait Implementations
impl RefUnwindSafe for Mailbox
impl Send for Mailbox
impl Sync for Mailbox
impl Unpin for Mailbox
impl UnwindSafe for Mailbox
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more