Struct tg_bot_models::WebhookInfo[][src]

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

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

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

Number of updates awaiting delivery

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

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

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

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

Trait Implementations

impl Debug for WebhookInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for WebhookInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for WebhookInfo
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for WebhookInfo
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

impl Send for WebhookInfo

impl Sync for WebhookInfo