Struct tc_telemetry::ConnectionMessage[][src]

pub struct ConnectionMessage {
    pub name: String,
    pub implementation: String,
    pub version: String,
    pub config: String,
    pub chain: String,
    pub genesis_hash: String,
    pub authority: bool,
    pub startup_time: String,
    pub network_id: String,
}

Message sent when the connection (re-)establishes.

Fields

name: String

Node’s name.

implementation: String

Node’s implementation.

version: String

Node’s version.

config: String

Node’s configuration.

chain: String

Node’s chain.

genesis_hash: String

Node’s genesis hash.

authority: bool

Node is an authority.

startup_time: String

Node’s startup time.

network_id: String

Node’s network ID.

Trait Implementations

impl Debug for ConnectionMessage[src]

impl Serialize for ConnectionMessage[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, 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, 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>,