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