pub enum MaxCount {
U255 = 0,
U511 = 1,
U1023 = 2,
U2047 = 3,
U4095 = 4,
U8191 = 5,
U16383 = 6,
}
Variants§
U255 = 0
000: 255
U511 = 1
001: 511
U1023 = 2
010: 1023
U2047 = 3
011: 2047
U4095 = 4
100: 4095
U8191 = 5
101: 8191
U16383 = 6
110: 16383
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MaxCount
impl RefUnwindSafe for MaxCount
impl Send for MaxCount
impl Sync for MaxCount
impl Unpin for MaxCount
impl UnwindSafe for MaxCount
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