pub struct Crc32c { /* private fields */ }Expand description
Incremental CRC-32C (Castagnoli) checksum.
Google Cloud Storage reports this checksum for direct transfers. Resumed reads first add the retained prefix and then the fetched remainder, which produces the same full-object checksum as an uninterrupted read.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Crc32c
impl RefUnwindSafe for Crc32c
impl Send for Crc32c
impl Sync for Crc32c
impl Unpin for Crc32c
impl UnsafeUnpin for Crc32c
impl UnwindSafe for Crc32c
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