Struct sn_node::AdultState[][src]

pub struct AdultState { /* fields omitted */ }

Implementations

impl AdultState[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 fn node_name(&self) -> XorName[src]

Static state

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

Static state

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

Static state

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.

Trait Implementations

impl Clone for AdultState[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>,