[][src]Struct twilight_model::gateway::connection_info::BotConnectionInfo

pub struct BotConnectionInfo {
    pub session_start_limit: SessionStartLimit,
    pub shards: u64,
    pub url: String,
}

Gateway information containing the recommended shard count and session availability.

Fields

session_start_limit: SessionStartLimit

Current session availability and session connection concurrency limits.

shards: u64

Recommended shard count to use.

url: String

URL to the gateway.

Trait Implementations

impl Clone for BotConnectionInfo[src]

impl Debug for BotConnectionInfo[src]

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

impl Eq for BotConnectionInfo[src]

impl Hash for BotConnectionInfo[src]

impl PartialEq<BotConnectionInfo> for BotConnectionInfo[src]

impl Serialize for BotConnectionInfo[src]

impl StructuralEq for BotConnectionInfo[src]

impl StructuralPartialEq for BotConnectionInfo[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, U> Into<U> for T where
    U: From<T>, 
[src]

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.