[][src]Struct crc_any::CRCu32

pub struct CRCu32 { /* fields omitted */ }

This struct can help you compute a CRC-32 (or CRC-x where x is under 32) value.

Methods

impl CRCu32[src]

pub fn create_crc(
    poly: u32,
    bits: u8,
    initial: u32,
    final_xor: u32,
    reflect: bool
) -> CRCu32
[src]

Create a CRCu32 instance by providing the length of bits, expression, reflection, an initial value and a final xor value.

pub fn digest<T: ?Sized + AsRef<[u8]>>(&mut self, data: &T)[src]

Digest some data.

pub fn reset(&mut self)[src]

Reset the sum.

pub fn get_crc(&self) -> u32[src]

Get the current CRC value (it always returns a u32 value). You can continue calling digest method even after getting a CRC value.

pub fn get_crc_vec_le(&mut self) -> Vec<u8>[src]

Get the current CRC value (it always returns a vec instance with a length corresponding to the CRC bits). You can continue calling digest method even after getting a CRC value.

pub fn get_crc_vec_be(&mut self) -> Vec<u8>[src]

Get the current CRC value (it always returns a vec instance with a length corresponding to the CRC bits). You can continue calling digest method even after getting a CRC value.

impl CRCu32[src]

Trait Implementations

impl Display for CRCu32[src]

impl Debug for CRCu32[src]

Auto Trait Implementations

impl Unpin for CRCu32

impl Sync for CRCu32

impl Send for CRCu32

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]