Trait Input

Source
pub trait Input {
    // Required method
    fn process(&mut self, input: &[u8]);
}
Expand description

Trait for processing input data

Required Methods§

Source

fn process(&mut self, input: &[u8])

Digest input data. This method can be called repeatedly for use with streaming messages.

Implementors§

Source§

impl<D: Input> Input for Writer<D>