pub trait NetworkDHTProvider {
    fn get_value(&self, key: &KademliaKey);
    fn put_value(&self, key: KademliaKey, value: Vec<u8>);
}
Expand description

Provides access to the networking DHT.

Required Methods§

Start getting a value from the DHT.

Start putting a value in the DHT.

Implementations on Foreign Types§

Implementors§