Enum sn_messaging::client::NodeSystemQuery[][src]

pub enum NodeSystemQuery {
    GetSectionElders,
    GetChunk {
        new_holder: XorName,
        address: BlobAddress,
        current_holders: BTreeSet<XorName>,
    },
}

Variants

GetSectionElders

On Elder change, all Elders need to query network for the new wallet’s replicas’ public key set

GetChunk

Acquire the chunk from current holders for replication.

Fields of GetChunk

new_holder: XorName

New Holder’s name.

address: BlobAddress

Address of the blob to be replicated.

current_holders: BTreeSet<XorName>

Current holders.

Trait Implementations

impl Clone for NodeSystemQuery[src]

impl Debug for NodeSystemQuery[src]

impl<'de> Deserialize<'de> for NodeSystemQuery[src]

impl Eq for NodeSystemQuery[src]

impl PartialEq<NodeSystemQuery> for NodeSystemQuery[src]

impl Serialize for NodeSystemQuery[src]

impl StructuralEq for NodeSystemQuery[src]

impl StructuralPartialEq for NodeSystemQuery[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,