Enum Bl
#[repr(u8)]pub enum Bl {
Bl10 = 0,
Bl8 = 1,
Bl4 = 2,
Bl1 = 3,
}Variants§
Bl10 = 0
For retransmission n, wait up to 2^min(n, 10) time slots
Bl8 = 1
For retransmission n, wait up to 2^min(n, 8) time slots
Bl4 = 2
For retransmission n, wait up to 2^min(n, 4) time slots
Bl1 = 3
For retransmission n, wait up to 2^min(n, 1) time slots
Implementations§
Trait Implementations§
impl Copy for Bl
impl Eq for Bl
§impl Ord for Bl
impl Ord for Bl
1.21.0 (const: unstable) · 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
§impl PartialOrd for Bl
impl PartialOrd for Bl
impl StructuralPartialEq for Bl
Auto Trait Implementations§
impl Freeze for Bl
impl RefUnwindSafe for Bl
impl Send for Bl
impl Sync for Bl
impl Unpin for Bl
impl UnsafeUnpin for Bl
impl UnwindSafe for Bl
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