Struct sn_node::ElderState[][src]

pub struct ElderState { /* fields omitted */ }

Implementations

impl ElderState[src]

pub async fn new(network: Network) -> Result<Self>[src]

Takes a snapshot of current state https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+eval_order_dependence

pub async fn set_joins_allowed(&mut self, joins_allowed: bool) -> Result<()>[src]

pub async fn adults(&self) -> Vec<XorName>[src]

Dynamic state

pub async fn adults_sorted_by_distance_to(
    &self,
    name: &XorName,
    count: usize
) -> Vec<XorName>
[src]

Dynamic state

pub fn prefix(&self) -> &Prefix[src]

Static state

pub fn node_name(&self) -> XorName[src]

Static state

pub fn node_id(&self) -> Ed25519PublicKey[src]

Static state

pub fn key_index(&self) -> usize[src]

Static state

pub fn section_public_key(&self) -> PublicKey[src]

Static state

pub fn public_key_set(&self) -> &PublicKeySet[src]

Static state

pub fn public_key_share(&self) -> PublicKeyShare[src]

Static state

pub fn section_proof_chain(&self) -> &SectionChain[src]

Static state

pub fn elder_names(&self) -> BTreeSet<&XorName>[src]

Static state

pub fn elders(&self) -> &Vec<(XorName, SocketAddr)>[src]

Static state

pub fn elders_sorted_by_distance_to(
    &self,
    name: &XorName
) -> Vec<&(XorName, SocketAddr)>
[src]

Static state

pub async fn sign_as_elder<T: Serialize>(
    &self,
    data: &T
) -> Result<SignatureShare>
[src]

Creates a detached BLS signature share of data if the self holds a BLS keypair share.

pub async fn sign_as_node<T: Serialize>(&self, data: &T) -> Result<Signature>[src]

“Sort of” static; this is calling into routing layer but the underlying keys will not change.

pub fn elder_key(&self) -> TransientElderKey[src]

Static state

Trait Implementations

impl Clone for ElderState[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument 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>,