[][src]Struct compress::checksum::adler::State32

pub struct State32 { /* fields omitted */ }

Adler state for 32 bits

Implementations

impl State32[src]

pub fn new() -> State32[src]

Create a new state

pub fn feed(&mut self, buf: &[u8])[src]

Mutate the state for given data

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

Get checksum

pub fn reset(&mut self)[src]

Reset the state

Auto Trait Implementations

impl RefUnwindSafe for State32

impl Send for State32

impl Sync for State32

impl Unpin for State32

impl UnwindSafe for State32

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]