[][src]Struct tari_comms::NodeIdentity

pub struct NodeIdentity { /* fields omitted */ }

The public and private identity of this node on the network

Implementations

impl NodeIdentity[src]

pub fn new(
    secret_key: CommsSecretKey,
    public_address: Multiaddr,
    features: PeerFeatures
) -> Result<Self, NodeIdentityError>
[src]

Create a new NodeIdentity from the provided key pair and control service address

pub fn random<R>(
    rng: &mut R,
    public_address: Multiaddr,
    features: PeerFeatures
) -> Result<Self, NodeIdentityError> where
    R: CryptoRng + Rng
[src]

Generates a new random NodeIdentity for CommsPublicKey

pub fn public_address(&self) -> Multiaddr[src]

Retrieve the publicly accessible address that peers must connect to establish a connection

pub fn set_public_address(&self, address: Multiaddr)[src]

Modify the control_service_address

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

pub fn public_key(&self) -> &CommsPublicKey[src]

pub fn secret_key(&self) -> &CommsSecretKey[src]

pub fn features(&self) -> PeerFeatures[src]

pub fn has_peer_features(&self, peer_features: PeerFeatures) -> bool[src]

pub fn to_peer(&self) -> Peer[src]

Returns a Peer with the same public key, node id, public address and features as represented in this NodeIdentity. NOTE: PeerFlags, supported_protocols and user agent are empty.

Trait Implementations

impl Clone for NodeIdentity[src]

impl Debug for NodeIdentity[src]

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

impl Display for NodeIdentity[src]

impl Serialize for NodeIdentity[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, U> Cast<U> for T where
    U: FromCast<T>, 

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Clone + Send + Sync

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

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

impl<T> Instrument for T[src]

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> MessageFormat for T where
    T: DeserializeOwned + Serialize

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> SafeBorrow<T> for T where
    T: ?Sized

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> ToString for T where
    T: Display + ?Sized
[src]

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>,