Trait digest::Update[][src]

pub trait Update {
    fn update(&mut self, data: &[u8]);
}
Expand description

Types which consume data with byte granularity.

Required methods

Update state using the provided data.

Implementors