hashbar 1.0.1

Hash trait for hashing using the `digest` crate
Documentation
1
2
3
4
5
pub use digest::Update as Hasher;

pub trait Hashbar {
    fn hash<H: Hasher>(&self, hasher: &mut H);
}