pub enum CrcOutput {
Crc32(u32),
Crc32C(u32),
Crc16CCITT(u16),
}
Expand description
CRC output type
Individual CRC algorithms can have different output lengths. This
type represents the different CrcAlgorithm
outputs
respectively.
Variants§
Crc32(u32)
Output of CrcAlgorithm::Crc32
Crc32C(u32)
Output of CrcAlgorithm::Crc32C
Crc16CCITT(u16)
Output of CrcAlgorithm::Crc16CCITT
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CrcOutput
impl RefUnwindSafe for CrcOutput
impl Send for CrcOutput
impl Sync for CrcOutput
impl Unpin for CrcOutput
impl UnwindSafe for CrcOutput
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