Struct teloxide_core::payloads::GetUpdates
source · [−]pub struct GetUpdates {
pub offset: Option<i32>,
pub limit: Option<u8>,
pub timeout: Option<u32>,
pub allowed_updates: Option<Vec<AllowedUpdate>>,
}Expand description
Fields
offset: Option<i32>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.
limit: Option<u8>Limits the number of updates to be retrieved. Values between 1-100 are accepted. Defaults to 100.
timeout: Option<u32>Timeout in seconds for long polling. Defaults to 0, i.e. usual short polling. Should be positive, short polling should be used for testing purposes only.
allowed_updates: Option<Vec<AllowedUpdate>>A JSON-serialized list of the update types you want your bot to receive. For example, specify [“message”, “edited_channel_post”, “callback_query”] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member (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.
Implementations
sourceimpl GetUpdates
impl GetUpdates
Trait Implementations
sourceimpl Clone for GetUpdates
impl Clone for GetUpdates
sourcefn clone(&self) -> GetUpdatesⓘNotable traits for GetUpdatesimpl Payload for GetUpdates type Output = Vec<Update>;
fn clone(&self) -> GetUpdatesⓘNotable traits for GetUpdatesimpl Payload for GetUpdates type Output = Vec<Update>;
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresourceimpl Debug for GetUpdates
impl Debug for GetUpdates
sourceimpl Default for GetUpdates
impl Default for GetUpdates
sourcefn default() -> GetUpdatesⓘNotable traits for GetUpdatesimpl Payload for GetUpdates type Output = Vec<Update>;
fn default() -> GetUpdatesⓘNotable traits for GetUpdatesimpl Payload for GetUpdates type Output = Vec<Update>;
sourceimpl Hash for GetUpdates
impl Hash for GetUpdates
sourceimpl PartialEq<GetUpdates> for GetUpdates
impl PartialEq<GetUpdates> for GetUpdates
sourcefn eq(&self, other: &GetUpdates) -> bool
fn eq(&self, other: &GetUpdates) -> bool
sourceimpl Payload for GetUpdates
impl Payload for GetUpdates
sourcefn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
GetUpdates with
big timeout), the minimum timeout that should be used. Read moresourceimpl Serialize for GetUpdates
impl Serialize for GetUpdates
impl Eq for GetUpdates
impl StructuralEq for GetUpdates
impl StructuralPartialEq for GetUpdates
Auto Trait Implementations
impl RefUnwindSafe for GetUpdates
impl Send for GetUpdates
impl Sync for GetUpdates
impl Unpin for GetUpdates
impl UnwindSafe for GetUpdates
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.