pub struct Info {
pub protocol_version: ProtocolVersionInfo,
pub id: Id,
pub listen_addr: ListenAddress,
pub network: Id,
pub version: Version,
pub channels: Channels,
pub moniker: Moniker,
pub other: OtherInfo,
}
Expand description
Node information
Fields§
§protocol_version: ProtocolVersionInfo
Protocol version information
id: Id
Node ID
listen_addr: ListenAddress
Listen address
network: Id
Tendermint network / chain ID,
version: Version
Tendermint version
channels: Channels
Channels
moniker: Moniker
Moniker
other: OtherInfo
Other status information
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Info
impl<'de> Deserialize<'de> for Info
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Info
impl StructuralPartialEq for Info
Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more