Trait libp2p::gossipsub::Hasher[][src]

pub trait Hasher {
    fn hash(topic_string: String) -> TopicHash;
}
Expand description

A generic trait that can be extended for various hashing types for a topic.

Required methods

The function that takes a topic string and creates a topic hash.

Implementors