Trait aleph_bft::Hasher

source ·
pub trait Hasher: Eq + Clone + Send + Sync + Debug + 'static {
    type Hash: AsRef<[u8]> + Eq + Ord + Copy + Clone + Send + Sync + Debug + Hash + Codec;

    // Required method
    fn hash(s: &[u8]) -> Self::Hash;
}
Expand description

A hasher, used for creating identifiers for blocks or units.

Required Associated Types§

source

type Hash: AsRef<[u8]> + Eq + Ord + Copy + Clone + Send + Sync + Debug + Hash + Codec

A hash, as an identifier for a block or unit.

Required Methods§

source

fn hash(s: &[u8]) -> Self::Hash

Object Safety§

This trait is not object safe.

Implementors§