pub enum BLW {
BL10,
BL8,
BL4,
BL1,
}
Expand description
Values that can be written to 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
Auto Trait Implementations§
impl Freeze for BLW
impl RefUnwindSafe for BLW
impl Send for BLW
impl Sync for BLW
impl Unpin for BLW
impl UnwindSafe for BLW
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