#[repr(u8)]pub enum BL_A {
Bl10 = 0,
Bl8 = 1,
Bl4 = 2,
Bl1 = 3,
}
Expand description
Back-off limit
Value on reset: 0
Variants§
Bl10 = 0
0: For retransmission n, wait up to 2^min(n, 10) time slots
Bl8 = 1
1: For retransmission n, wait up to 2^min(n, 8) time slots
Bl4 = 2
2: For retransmission n, wait up to 2^min(n, 4) time slots
Bl1 = 3
3: For retransmission n, wait up to 2^min(n, 1) time slots
Trait Implementations§
impl Copy for BL_A
impl StructuralPartialEq for BL_A
Auto Trait Implementations§
impl Freeze for BL_A
impl RefUnwindSafe for BL_A
impl Send for BL_A
impl Sync for BL_A
impl Unpin for BL_A
impl UnwindSafe for BL_A
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