[][src]Enum twilight_gateway::shard::error::Error

pub enum Error {
    Processor {
        source: ProcessorError,
    },
    Connecting {
        source: TungsteniteError,
    },
    GettingGatewayUrl {
        source: HttpError,
    },
    IdTooLarge {
        id: u64,
        total: u64,
    },
    LargeThresholdInvalid {
        value: u64,
    },
    PayloadSerialization {
        source: JsonError,
    },
    SendingMessage {
        source: TrySendError<TungsteniteMessage>,
    },
    Stopped,
}

Error type representing the possible reasons for errors to occur in the shard.

Variants

Processor

An error happened while creating a shard processor.

Fields of Processor

source: ProcessorError

The error from the shard processor.

Connecting

An error happened while trying to connect to the gateway.

Fields of Connecting

source: TungsteniteError

The error from the WebSocket client.

GettingGatewayUrl

Getting the gateway URL via the HTTP client failed.

Fields of GettingGatewayUrl

source: HttpError

The error from the twilight_http client.

IdTooLarge

The shard ID was larger than the total number of shards.

Fields of IdTooLarge

id: u64

The ID of the shard that was too large.

total: u64

The total number of shards in use.

LargeThresholdInvalid

The "large threshold" value was too large or too small.

Fields of LargeThresholdInvalid

value: u64

The value that is invalid.

PayloadSerialization

There was an error serializing or deserializing a payload.

Fields of PayloadSerialization

source: JsonError

The serialization error.

SendingMessage

A message tried to be sent but the receiving half was dropped. This typically means that the shard is shutdown.

Fields of SendingMessage

source: TrySendError<TungsteniteMessage>

The reason for the error.

Stopped

The shard hasn't been started, so there is no active session.

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

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, 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> ToString for T where
    T: Display + ?Sized
[src]

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>,