Enum Crc
#[repr(u8)]pub enum Crc {
DISABLED = 0,
ENABLED = 1,
}
Variants§
DISABLED = 0
Full size (33/17 bit) CRC polynomial is not used
ENABLED = 1
Full size (33/17 bit) CRC polynomial is used
Implementations§
Trait Implementations§
§impl Ord for Crc
impl Ord for Crc
§impl PartialOrd for Crc
impl PartialOrd for Crc
impl Copy for Crc
impl Eq for Crc
impl StructuralPartialEq for Crc
Auto Trait Implementations§
impl Freeze for Crc
impl RefUnwindSafe for Crc
impl Send for Crc
impl Sync for Crc
impl Unpin for Crc
impl UnwindSafe for Crc
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