#[repr(u8)]pub enum AutoRetransmitDelay {
Show 16 variants
US250 = 0,
US500 = 1,
US750 = 2,
US1000 = 3,
US1250 = 4,
US1500 = 5,
US1750 = 6,
US2000 = 7,
US2250 = 8,
US2500 = 9,
US2750 = 10,
US3000 = 11,
US3250 = 12,
US3500 = 13,
US3750 = 14,
US4000 = 15,
}
Expand description
Auto retransmit delay.
0000
: Wait 250µS
0001
: Wait 500µS
0010
: Wait 750µS
……
1111
: Wait 4000µS
Variants§
US250 = 0
US500 = 1
US750 = 2
US1000 = 3
US1250 = 4
US1500 = 5
US1750 = 6
US2000 = 7
US2250 = 8
US2500 = 9
US2750 = 10
US3000 = 11
US3250 = 12
US3500 = 13
US3750 = 14
US4000 = 15
Trait Implementations§
Source§impl Clone for AutoRetransmitDelay
impl Clone for AutoRetransmitDelay
Source§fn clone(&self) -> AutoRetransmitDelay
fn clone(&self) -> AutoRetransmitDelay
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 AutoRetransmitDelay
impl Debug for AutoRetransmitDelay
Source§impl EnumField for AutoRetransmitDelay
impl EnumField for AutoRetransmitDelay
Source§impl PartialEq for AutoRetransmitDelay
impl PartialEq for AutoRetransmitDelay
impl Copy for AutoRetransmitDelay
impl Eq for AutoRetransmitDelay
impl StructuralPartialEq for AutoRetransmitDelay
Auto Trait Implementations§
impl Freeze for AutoRetransmitDelay
impl RefUnwindSafe for AutoRetransmitDelay
impl Send for AutoRetransmitDelay
impl Sync for AutoRetransmitDelay
impl Unpin for AutoRetransmitDelay
impl UnwindSafe for AutoRetransmitDelay
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