Enum libp2p_kad::QueryResult[][src]

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 Kademlia::bootstrap.

GetClosestPeers(GetClosestPeersResult)
GetProviders(GetProvidersResult)

The result of Kademlia::get_providers.

StartProviding(AddProviderResult)
RepublishProvider(AddProviderResult)

The result of a (automatic) republishing of a provider record.

GetRecord(GetRecordResult)

The result of Kademlia::get_record.

PutRecord(PutRecordResult)

The result of Kademlia::put_record.

RepublishRecord(PutRecordResult)

The result of a (automatic) republishing of a (value-)record.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.