[][src]Enum tbot::errors::MethodCall

pub enum MethodCall {
    Network(Error),
    OutOfService,
    Parse {
        response: Vec<u8>,
        error: Error,
    },
    RequestError {
        description: String,
        error_code: u16,
        migrate_to_chat_id: Option<Id>,
        retry_after: Option<u64>,
    },
}

Represents possible errors that may happen during a method call.

Variants

Network(Error)

A network error.

OutOfService

Bot API is likely to be down.

Parse

Failed to parse the response.

Fields of Parse

response: Vec<u8>

The response which failed to parse.

error: Error

The error which parsing failed with.

RequestError

An error returned in response.

Fields of RequestError

description: String

A human-readable description of the error.

error_code: u16

The error code for this error.

migrate_to_chat_id: Option<Id>

The group moved to a supergroup with the following ID.

retry_after: Option<u64>

The bot exceeded flood threshold. You can make another request after the following amount of seconds.

Implementations

impl MethodCall[src]

pub fn is_network(&self) -> bool[src]

Returns true if self is of variant Network.

pub fn expect_network(self) -> Error where
    Self: Debug
[src]

Unwraps the value, yielding the content of Network.

Panics

Panics if the value is not Network, with a panic message including the content of self.

pub fn network(self) -> Option<Error>[src]

Returns Some if self is of variant Network, and None otherwise.

pub fn is_out_of_service(&self) -> bool[src]

Returns true if self is of variant OutOfService.

pub fn is_parse(&self) -> bool[src]

Returns true if self is of variant Parse.

pub fn is_request_error(&self) -> bool[src]

Returns true if self is of variant RequestError.

Trait Implementations

impl Debug for MethodCall[src]

impl Display for MethodCall[src]

impl Error for MethodCall[src]

impl From<Error> for MethodCall[src]

impl From<MethodCall> for HttpWebhook[src]

impl From<MethodCall> for HttpsWebhook[src]

impl From<MethodCall> for Polling[src]

impl From<MethodCall> for PollingSetup[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> 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> 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<T> WithSubscriber for T[src]