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