[][src]Struct tgbot::methods::GetUpdates

pub struct GetUpdates { /* fields omitted */ }

Receive incoming updates using long polling

An Array of Update objects is returned

Methods

impl GetUpdates[src]

pub fn offset(self, offset: Integer) -> Self[src]

Identifier of the first update to be returned

Must be greater by one than the highest among the identifiers of previously received updates By default, updates starting with the earliest unconfirmed update are returned An update is considered confirmed as soon as getUpdates is called with an offset higher than its update_id The negative offset can be specified to retrieve updates starting from -offset update from the end of the updates queue All previous updates will forgotten

pub fn limit(self, limit: Integer) -> Self[src]

Limits the number of updates to be retrieved

Values between 1—100 are accepted Defaults to 100

pub fn timeout(self, timeout: Duration) -> Self[src]

Timeout for long polling

Defaults to 0, i.e. usual short polling Should be positive, short polling should be used for testing purposes only

pub fn allowed_updates(self, allowed_updates: HashSet<AllowedUpdate>) -> Self[src]

List the types of updates you want your bot to receive

For example, specify [“message”, “edited_channel_post”, “callback_query”] to only receive updates of these types Specify an empty list to receive all updates regardless of type (default) If not specified, the previous setting will be used Please note that this parameter doesn't affect updates created before the call to the getUpdates, so unwanted updates may be received for a short period of time

pub fn add_allowed_update(self, allowed_update: AllowedUpdate) -> Self[src]

Adds a type of updates you want your bot to receive

Trait Implementations

impl Clone for GetUpdates[src]

impl Debug for GetUpdates[src]

impl Default for GetUpdates[src]

impl Method for GetUpdates[src]

type Response = Vec<Update>

Type of successful result in API response

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

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

type Owned = T

The resulting type after obtaining ownership.

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.