pub struct UpdateMessageReactions {
pub chat_id: i64,
pub message_id: i64,
pub date: i32,
pub reactions: Vec<MessageReaction>,
}
Expand description
Reactions added to a message with anonymous reactions have changed; for bots only
Fields§
§chat_id: i64
Chat identifier
message_id: i64
Message identifier
date: i32
Point in time (Unix timestamp) when the reactions were changed
reactions: Vec<MessageReaction>
The list of reactions added to the message
Trait Implementations§
Source§impl Clone for UpdateMessageReactions
impl Clone for UpdateMessageReactions
Source§fn clone(&self) -> UpdateMessageReactions
fn clone(&self) -> UpdateMessageReactions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateMessageReactions
impl Debug for UpdateMessageReactions
Source§impl Default for UpdateMessageReactions
impl Default for UpdateMessageReactions
Source§fn default() -> UpdateMessageReactions
fn default() -> UpdateMessageReactions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateMessageReactions
impl<'de> Deserialize<'de> for UpdateMessageReactions
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateMessageReactions
impl PartialEq for UpdateMessageReactions
Source§impl Serialize for UpdateMessageReactions
impl Serialize for UpdateMessageReactions
impl StructuralPartialEq for UpdateMessageReactions
Auto Trait Implementations§
impl Freeze for UpdateMessageReactions
impl RefUnwindSafe for UpdateMessageReactions
impl Send for UpdateMessageReactions
impl Sync for UpdateMessageReactions
impl Unpin for UpdateMessageReactions
impl UnwindSafe for UpdateMessageReactions
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
Mutably borrows from an owned value. Read more