#[repr(u8)]pub enum StopAckDlyEn {
ENTER_KEEP_ALIVE_ON_IDLE = 0,
ENTER_KEEP_ALIVE_IMMEDIATE = 1,
}Variants§
ENTER_KEEP_ALIVE_ON_IDLE = 0
Enter KEEP_ALIVE mode immediately when there is no USB AHB transfer.
ENTER_KEEP_ALIVE_IMMEDIATE = 1
Enter KEEP_ALIVE mode until the USB core is idle and there is no USB AHB transfer.
Implementations§
Source§impl StopAckDlyEn
impl StopAckDlyEn
Trait Implementations§
Source§impl Clone for StopAckDlyEn
impl Clone for StopAckDlyEn
Source§fn clone(&self) -> StopAckDlyEn
fn clone(&self) -> StopAckDlyEn
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 StopAckDlyEn
impl Debug for StopAckDlyEn
Source§impl From<StopAckDlyEn> for u8
impl From<StopAckDlyEn> for u8
Source§fn from(val: StopAckDlyEn) -> u8
fn from(val: StopAckDlyEn) -> u8
Converts to this type from the input type.
Source§impl From<u8> for StopAckDlyEn
impl From<u8> for StopAckDlyEn
Source§fn from(val: u8) -> StopAckDlyEn
fn from(val: u8) -> StopAckDlyEn
Converts to this type from the input type.
Source§impl Ord for StopAckDlyEn
impl Ord for StopAckDlyEn
Source§fn cmp(&self, other: &StopAckDlyEn) -> Ordering
fn cmp(&self, other: &StopAckDlyEn) -> 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 StopAckDlyEn
impl PartialEq for StopAckDlyEn
Source§impl PartialOrd for StopAckDlyEn
impl PartialOrd for StopAckDlyEn
impl Copy for StopAckDlyEn
impl Eq for StopAckDlyEn
impl StructuralPartialEq for StopAckDlyEn
Auto Trait Implementations§
impl Freeze for StopAckDlyEn
impl RefUnwindSafe for StopAckDlyEn
impl Send for StopAckDlyEn
impl Sync for StopAckDlyEn
impl Unpin for StopAckDlyEn
impl UnwindSafe for StopAckDlyEn
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