Enum libp2p::kad::QueryResult
source · pub enum QueryResult {
Bootstrap(Result<BootstrapOk, BootstrapError>),
GetClosestPeers(Result<GetClosestPeersOk, GetClosestPeersError>),
GetProviders(Result<GetProvidersOk, GetProvidersError>),
StartProviding(Result<AddProviderOk, AddProviderError>),
RepublishProvider(Result<AddProviderOk, AddProviderError>),
GetRecord(Result<GetRecordOk, GetRecordError>),
PutRecord(Result<PutRecordOk, PutRecordError>),
RepublishRecord(Result<PutRecordOk, PutRecordError>),
}
Expand description
The results of Kademlia queries.
Variants§
Bootstrap(Result<BootstrapOk, BootstrapError>)
The result of Kademlia::bootstrap
.
GetClosestPeers(Result<GetClosestPeersOk, GetClosestPeersError>)
The result of Kademlia::get_closest_peers
.
GetProviders(Result<GetProvidersOk, GetProvidersError>)
The result of Kademlia::get_providers
.
StartProviding(Result<AddProviderOk, AddProviderError>)
The result of Kademlia::start_providing
.
RepublishProvider(Result<AddProviderOk, AddProviderError>)
The result of a (automatic) republishing of a provider record.
GetRecord(Result<GetRecordOk, GetRecordError>)
The result of Kademlia::get_record
.
PutRecord(Result<PutRecordOk, PutRecordError>)
The result of Kademlia::put_record
.
RepublishRecord(Result<PutRecordOk, PutRecordError>)
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