use serde::{Deserialize, Serialize};
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum Updates {
Message,
EditedMessage,
ChannelPost,
EditedChannelPost,
InlineQuery,
ChosenInlineResult,
CallbackQuery,
ShippingQuery,
PreCheckoutQuery,
Poll,
}
impl Updates {
pub fn is_message(self) -> bool {
self == Updates::Message
}
pub fn is_edited_message(self) -> bool {
self == Updates::EditedMessage
}
pub fn is_channel_post(self) -> bool {
self == Updates::ChannelPost
}
pub fn is_edited_channel_post(self) -> bool {
self == Updates::EditedChannelPost
}
pub fn is_inline_query(self) -> bool {
self == Updates::InlineQuery
}
pub fn is_chosen_inline_result(self) -> bool {
self == Updates::ChosenInlineResult
}
pub fn is_callback_query(self) -> bool {
self == Updates::CallbackQuery
}
pub fn is_shipping_query(self) -> bool {
self == Updates::ShippingQuery
}
pub fn is_pre_checkout_query(self) -> bool {
self == Updates::PreCheckoutQuery
}
pub fn is_poll(self) -> bool {
self == Updates::Poll
}
}