pub enum UpdateKind {
Show 15 variants
Message(Message),
EditedMessage(Message),
ChannelPost(Message),
EditedChannelPost(Message),
InlineQuery(InlineQuery),
ChosenInlineResult(ChosenInlineResult),
CallbackQuery(CallbackQuery),
ShippingQuery(ShippingQuery),
PreCheckoutQuery(PreCheckoutQuery),
Poll(Poll),
PollAnswer(PollAnswer),
MyChatMember(ChatMemberUpdated),
ChatMember(ChatMemberUpdated),
ChatJoinRequest(ChatJoinRequest),
Error(Value),
}
Variants§
Message(Message)
New incoming message of any kind — text, photo, sticker, etc.
EditedMessage(Message)
New version of a message that is known to the bot and was edited.
ChannelPost(Message)
New incoming channel post of any kind — text, photo, sticker, etc.
EditedChannelPost(Message)
New version of a channel post that is known to the bot and was edited.
InlineQuery(InlineQuery)
New incoming inline query.
ChosenInlineResult(ChosenInlineResult)
The result of an inline query that was chosen by a user and sent to their chat partner. Please see our documentation on the feedback collecting for details on how to enable these updates for your bot.
CallbackQuery(CallbackQuery)
New incoming callback query.
ShippingQuery(ShippingQuery)
New incoming shipping query. Only for invoices with flexible price.
PreCheckoutQuery(PreCheckoutQuery)
New incoming pre-checkout query. Contains full information about checkout.
Poll(Poll)
New poll state. Bots receive only updates about stopped polls and polls, which are sent by the bot.
PollAnswer(PollAnswer)
A user changed their answer in a non-anonymous poll. Bots receive new votes only in polls that were sent by the bot itself.
MyChatMember(ChatMemberUpdated)
The bot’s chat member status was updated in a chat. For private chats, this update is received only when the bot is blocked or unblocked by the user.
ChatMember(ChatMemberUpdated)
A chat member’s status was updated in a chat. The bot must be an
administrator in the chat and must explicitly specify
AllowedUpdate::ChatMember
in the list of allowed_updates
to
receive these updates.
ChatJoinRequest(ChatJoinRequest)
A request to join the chat has been sent. The bot must have the can_invite_users administrator right in the chat to receive these updates.
Error(Value)
An error that happened during deserialization.
This allows teloxide
to continue working even if telegram adds a new
kinds of updates.
Note that deserialize implementation always returns an empty value, teloxide fills in the data when doing deserialization.
Trait Implementations§
source§impl Clone for UpdateKind
impl Clone for UpdateKind
source§fn clone(&self) -> UpdateKind
fn clone(&self) -> UpdateKind
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateKind
impl Debug for UpdateKind
source§impl<'de> Deserialize<'de> for UpdateKind
impl<'de> Deserialize<'de> for UpdateKind
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
source§impl PartialEq for UpdateKind
impl PartialEq for UpdateKind
source§impl Serialize for UpdateKind
impl Serialize for UpdateKind
impl StructuralPartialEq for UpdateKind
Auto Trait Implementations§
impl Freeze for UpdateKind
impl RefUnwindSafe for UpdateKind
impl Send for UpdateKind
impl Sync for UpdateKind
impl Unpin for UpdateKind
impl UnwindSafe for UpdateKind
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Erasable for T
impl<T> Erasable for T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more