[][src]Struct tg_bot_models::WebhookInfo

pub struct WebhookInfo {
    pub url: String,
    pub has_custom_certificate: bool,
    pub pending_update_count: i64,
    pub last_error_date: Option<i64>,
    pub last_error_message: Option<String>,
    pub max_connections: Option<i64>,
    pub allowed_updates: Option<Vec<String>>,
}

Contains information about the current status of a webhook.

Fields

url: String

Webhook URL, may be empty if webhook is not set up

has_custom_certificate: bool

True, if a custom certificate was provided for webhook certificate checks

pending_update_count: i64

Number of updates awaiting delivery

last_error_date: Option<i64>

Optional. Unix time for the most recent error that happened when trying to deliver an update via webhook

last_error_message: Option<String>

Optional. Error message in human-readable format for the most recent error that happened when trying to deliver an update via webhook

max_connections: Option<i64>

Optional. Maximum allowed number of simultaneous HTTPS connections to the webhook for update delivery

allowed_updates: Option<Vec<String>>

Optional. A list of update types the bot is subscribed to. Defaults to all update types

Trait Implementations

impl PartialOrd<WebhookInfo> for WebhookInfo[src]

impl Clone for WebhookInfo[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<WebhookInfo> for WebhookInfo[src]

impl Debug for WebhookInfo[src]

impl Serialize for WebhookInfo[src]

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

Auto Trait Implementations

impl Send for WebhookInfo

impl Sync for WebhookInfo

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]