pub enum MaxCountError {
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§
Source§impl Clone for MaxCountError
impl Clone for MaxCountError
Source§fn clone(&self) -> MaxCountError
fn clone(&self) -> MaxCountError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MaxCountError
impl Debug for MaxCountError
Source§impl PartialEq for MaxCountError
impl PartialEq for MaxCountError
impl Copy for MaxCountError
impl StructuralPartialEq for MaxCountError
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