pub enum EncodingScheme {
NoRedundancyCheck = 0,
R1Byte = 8,
R2Bytes = 12,
}
Expand description
Cyclic Redundancy Check encoding scheme.
Variants§
Trait Implementations§
Source§impl Clone for EncodingScheme
impl Clone for EncodingScheme
Source§fn clone(&self) -> EncodingScheme
fn clone(&self) -> EncodingScheme
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 Default for EncodingScheme
impl Default for EncodingScheme
Source§impl From<u8> for EncodingScheme
impl From<u8> for EncodingScheme
impl Copy for EncodingScheme
Auto Trait Implementations§
impl Freeze for EncodingScheme
impl RefUnwindSafe for EncodingScheme
impl Send for EncodingScheme
impl Sync for EncodingScheme
impl Unpin for EncodingScheme
impl UnwindSafe for EncodingScheme
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