#[repr(u8)]pub enum Mstarbloss {
NO_LOSS = 0,
ARBITRATION_LOSS = 1,
}Variants§
NO_LOSS = 0
No Arbitration Loss has occurred.
ARBITRATION_LOSS = 1
Arbitration loss. The Master function has experienced an Arbitration Loss. At this point, the Master function has already stopped driving the bus and gone to an idle state. Software can respond by doing nothing, or by sending a Start in order to attempt to gain control of the bus when it next becomes idle.
Implementations§
Source§impl Mstarbloss
impl Mstarbloss
Trait Implementations§
Source§impl Clone for Mstarbloss
impl Clone for Mstarbloss
Source§fn clone(&self) -> Mstarbloss
fn clone(&self) -> Mstarbloss
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Mstarbloss
impl Debug for Mstarbloss
Source§impl From<Mstarbloss> for u8
impl From<Mstarbloss> for u8
Source§fn from(val: Mstarbloss) -> u8
fn from(val: Mstarbloss) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Mstarbloss
impl From<u8> for Mstarbloss
Source§fn from(val: u8) -> Mstarbloss
fn from(val: u8) -> Mstarbloss
Converts to this type from the input type.
Source§impl Ord for Mstarbloss
impl Ord for Mstarbloss
Source§fn cmp(&self, other: &Mstarbloss) -> Ordering
fn cmp(&self, other: &Mstarbloss) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Mstarbloss
impl PartialEq for Mstarbloss
Source§impl PartialOrd for Mstarbloss
impl PartialOrd for Mstarbloss
impl Copy for Mstarbloss
impl Eq for Mstarbloss
impl StructuralPartialEq for Mstarbloss
Auto Trait Implementations§
impl Freeze for Mstarbloss
impl RefUnwindSafe for Mstarbloss
impl Send for Mstarbloss
impl Sync for Mstarbloss
impl Unpin for Mstarbloss
impl UnwindSafe for Mstarbloss
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more