[][src]Struct twilight_gateway::shard::Information

pub struct Information { /* fields omitted */ }

Information about a shard, including its latency, current session sequence, and connection stage.

Implementations

impl Information[src]

pub fn id(&self) -> u64[src]

Return the ID of the shard.

pub fn latency(&self) -> &Latency[src]

Return an immutable reference to the latency information for the shard.

This includes the average latency over all time, and the latency information for the 5 most recent heartbeats.

pub fn session_id(&self) -> Option<&str>[src]

Return an immutable reference to the session ID of the shard.

pub fn seq(&self) -> u64[src]

Current sequence of the connection.

This is the number of the event that was received this session (without reconnecting). A larger number typically correlates that the shard has been connected for a longer time, while a smaller number typically correlates to meaning that it's been connected for a less amount of time.

pub fn stage(&self) -> Stage[src]

Current stage of the shard.

For example, once a shard is fully booted then it will be Connected.

Trait Implementations

impl Clone for Information[src]

impl Debug for Information[src]

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

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