pub trait HasPublicKeyHash {
    type TypedPublicKeyHash: IsPublicKeyHash;

    // Required method
    fn get_hash(&self) -> Self::TypedPublicKeyHash;
}

Required Associated Types§

Required Methods§

Implementors§