Enum libp2p_kad::protocol::KadRequestMsg [−][src]
pub enum KadRequestMsg {
Ping,
FindNode {
key: Vec<u8>,
},
GetProviders {
key: Key,
},
AddProvider {
key: Key,
provider: KadPeer,
},
GetValue {
key: Key,
},
PutValue {
record: Record,
},
}Expand description
Request that we can send to a peer or that we received from a peer.
Variants
Ping request.
Request for the list of nodes whose IDs are the closest to key. The number of nodes
returned is not specified, but should be around 20.
Same as FindNode, but should also return the entries of the local providers list for
this key.
Show fields
Fields of GetProviders
key: KeyIdentifier being searched.
Indicates that this list of providers is known for this key.
Show fields
Request to get a value from the dht records.
Show fields
Fields of GetValue
key: KeyThe key we are searching for.
Request to put a value into the dht records.
Show fields
Fields of PutValue
record: RecordTrait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for KadRequestMsgimpl Send for KadRequestMsgimpl Sync for KadRequestMsgimpl Unpin for KadRequestMsgimpl UnwindSafe for KadRequestMsgBlanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = TShould always be Self
pub fn vzip(self) -> V