pub struct Crc32 { /* private fields */ }
Expand description
A standalone CRC32 implementation
This is based on the CRC32 implementation from: crc-rs https://github.com/mrhooray/crc-rs
This implemented the CRC-32 checksum poly: 0x04c11db7 init: 0x00000000 refin: false refout: false xorout: 0xffffffff
Implementations§
Auto Trait Implementations§
impl !Freeze for Crc32
impl !RefUnwindSafe for Crc32
impl Send for Crc32
impl !Sync for Crc32
impl Unpin for Crc32
impl UnwindSafe for Crc32
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