pub struct Crc32Normal {
crc: u32,
}
Available on crate feature
utils-crc32
only.Expand description
A CRC32 Normal implementation.
Fields§
§crc: u32
Implementations§
Source§impl Crc32Normal
impl Crc32Normal
Sourcepub fn update_crc(init_crc: u32, data: &[u8]) -> u32
pub fn update_crc(init_crc: u32, data: &[u8]) -> u32
Creates a new Crc32Normal instance with a specified initial CRC value.
Auto Trait Implementations§
impl Freeze for Crc32Normal
impl RefUnwindSafe for Crc32Normal
impl Send for Crc32Normal
impl Sync for Crc32Normal
impl Unpin for Crc32Normal
impl UnwindSafe for Crc32Normal
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more