[][src]Struct carapax::prelude::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: Vec<AllowedUpdate>,
}

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>

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

last_error_message: Option<String>

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>

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

allowed_updates: Vec<AllowedUpdate>

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

Trait Implementations

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

impl Debug 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

Auto Trait Implementations

impl Send for WebhookInfo

impl Sync for WebhookInfo

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

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

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T