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

pub enum MethodCall {
    Network(Error),
    OutOfService,
    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

Bots API is likely to be down.

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.

Methods

impl MethodCall[src]

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

Checks if self is Network.

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

Checks if self is OutOfService.

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

Checks if self is RequestError.

Trait Implementations

impl Debug for MethodCall[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T