pub enum BLR {
BL10,
BL8,
BL4,
BL1,
}
Expand description
Possible values of the field BL
Variants§
BL10
For retransmission n, wait up to 2^min(n, 10) time slots
BL8
For retransmission n, wait up to 2^min(n, 8) time slots
BL4
For retransmission n, wait up to 2^min(n, 4) time slots
BL1
For retransmission n, wait up to 2^min(n, 1) time slots
Implementations§
Trait Implementations§
impl Copy for BLR
impl StructuralPartialEq for BLR
Auto Trait Implementations§
impl Freeze for BLR
impl RefUnwindSafe for BLR
impl Send for BLR
impl Sync for BLR
impl Unpin for BLR
impl UnwindSafe for BLR
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