Trait btlib::crypto::DefaultHash

source ·
pub trait DefaultHash: Hash {
    // Required method
    fn default() -> Self;
}
Expand description

Trait for hash types which can be created with no arguments.

Required Methods§

source

fn default() -> Self

Implementors§

source§

impl<A: Default, T: Hash<Arg = A>> DefaultHash for T