[][src]Struct crc_any::CRCu16

pub struct CRCu16 { /* fields omitted */ }

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

Methods

impl CRCu16[src]

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

Create a CRCu16 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) -> u16[src]

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

impl CRCu16[src]

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 CRCu16[src]

Trait Implementations

impl Debug for CRCu16[src]

impl Display for CRCu16[src]

Auto Trait Implementations

impl Unpin for CRCu16

impl Send for CRCu16

impl Sync for CRCu16

Blanket Implementations

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

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, 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]