[][src]Struct nats::ServerInfo

pub struct ServerInfo {
    pub server_id: String,
    pub server_name: String,
    pub host: String,
    pub port: i16,
    pub version: String,
    pub auth_required: bool,
    pub tls_required: bool,
    pub max_payload: i32,
    pub proto: i8,
    pub client_id: u64,
    pub go: String,
    pub nonce: String,
    pub connect_urls: Vec<String>,
    pub client_ip: String,
}

Information sent by the server back to this client during initial connection, and possibly again later.

Fields

server_id: String

The unique identifier of the NATS server.

server_name: String

Generated Server Name.

host: String

The host specified in the cluster parameter/options.

port: i16

The port number specified in the cluster parameter/options.

version: String

The version of the NATS server.

auth_required: bool

If this is set, then the server should try to authenticate upon connect.

tls_required: bool

If this is set, then the server must authenticate using TLS.

max_payload: i32

Maximum payload size that the server will accept.

proto: i8

The protocol version in use.

client_id: u64

The server-assigned client ID. This may change during reconnection.

go: String

The version of golang the NATS server was built with.

nonce: String

The nonce used for nkeys.

connect_urls: Vec<String>

A list of server urls that a client can connect to.

client_ip: String

The client IP as known by the server.

Trait Implementations

impl Clone for ServerInfo[src]

impl Debug for ServerInfo[src]

impl<'de> Deserialize<'de> for ServerInfo[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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