Skip to main content

HashFsExt

Trait HashFsExt 

Source
pub trait HashFsExt {
    // Required method
    fn update<R: Read>(&mut self, reader: R) -> Result<()>;
}

Required Methods§

Source

fn update<R: Read>(&mut self, reader: R) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<D: Digest> HashFsExt for D