#[repr(u8)]pub enum PitStopAck {
PIT_STOP_ACK_0 = 0,
PIT_STOP_ACK_1 = 1,
}Variants§
PIT_STOP_ACK_0 = 0
PIT stop acknowledge is not asserted
PIT_STOP_ACK_1 = 1
PIT stop acknowledge is asserted
Implementations§
Source§impl PitStopAck
impl PitStopAck
Trait Implementations§
Source§impl Clone for PitStopAck
impl Clone for PitStopAck
Source§fn clone(&self) -> PitStopAck
fn clone(&self) -> PitStopAck
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 PitStopAck
impl Debug for PitStopAck
Source§impl From<PitStopAck> for u8
impl From<PitStopAck> for u8
Source§fn from(val: PitStopAck) -> u8
fn from(val: PitStopAck) -> u8
Converts to this type from the input type.
Source§impl From<u8> for PitStopAck
impl From<u8> for PitStopAck
Source§fn from(val: u8) -> PitStopAck
fn from(val: u8) -> PitStopAck
Converts to this type from the input type.
Source§impl Ord for PitStopAck
impl Ord for PitStopAck
Source§fn cmp(&self, other: &PitStopAck) -> Ordering
fn cmp(&self, other: &PitStopAck) -> 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 PitStopAck
impl PartialEq for PitStopAck
Source§impl PartialOrd for PitStopAck
impl PartialOrd for PitStopAck
impl Copy for PitStopAck
impl Eq for PitStopAck
impl StructuralPartialEq for PitStopAck
Auto Trait Implementations§
impl Freeze for PitStopAck
impl RefUnwindSafe for PitStopAck
impl Send for PitStopAck
impl Sync for PitStopAck
impl Unpin for PitStopAck
impl UnwindSafe for PitStopAck
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