Enum libp2p_kad::QueryResult
source · pub enum QueryResult {
Bootstrap(BootstrapResult),
GetClosestPeers(GetClosestPeersResult),
GetProviders(GetProvidersResult),
StartProviding(AddProviderResult),
RepublishProvider(AddProviderResult),
GetRecord(GetRecordResult),
PutRecord(PutRecordResult),
RepublishRecord(PutRecordResult),
}
Expand description
The results of Kademlia queries.
Variants§
Bootstrap(BootstrapResult)
The result of Behaviour::bootstrap
.
GetClosestPeers(GetClosestPeersResult)
The result of Behaviour::get_closest_peers
.
GetProviders(GetProvidersResult)
The result of Behaviour::get_providers
.
StartProviding(AddProviderResult)
The result of Behaviour::start_providing
.
RepublishProvider(AddProviderResult)
The result of a (automatic) republishing of a provider record.
GetRecord(GetRecordResult)
The result of Behaviour::get_record
.
PutRecord(PutRecordResult)
The result of Behaviour::put_record
.
RepublishRecord(PutRecordResult)
The result of a (automatic) republishing of a (value-)record.
Trait Implementations§
source§impl Clone for QueryResult
impl Clone for QueryResult
source§fn clone(&self) -> QueryResult
fn clone(&self) -> QueryResult
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for QueryResult
impl Send for QueryResult
impl Sync for QueryResult
impl Unpin for QueryResult
impl UnwindSafe for QueryResult
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more