pub struct UpdateBotMessageReactions {
pub peer: Peer,
pub msg_id: i32,
pub date: i32,
pub reactions: Vec<ReactionCount>,
pub qts: i32,
}Expand description
Generated from:
updateBotMessageReactions#9cb7759 peer:Peer msg_id:int date:int reactions:Vector<ReactionCount> qts:int = UpdateFields§
§peer: Peer§msg_id: i32§date: i32§reactions: Vec<ReactionCount>§qts: i32Trait Implementations§
Source§impl Clone for UpdateBotMessageReactions
impl Clone for UpdateBotMessageReactions
Source§fn clone(&self) -> UpdateBotMessageReactions
fn clone(&self) -> UpdateBotMessageReactions
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 UpdateBotMessageReactions
impl Debug for UpdateBotMessageReactions
Source§impl Deserializable for UpdateBotMessageReactions
impl Deserializable for UpdateBotMessageReactions
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<UpdateBotMessageReactions> for Update
impl From<UpdateBotMessageReactions> for Update
Source§fn from(x: UpdateBotMessageReactions) -> Self
fn from(x: UpdateBotMessageReactions) -> Self
Converts to this type from the input type.
Source§impl Identifiable for UpdateBotMessageReactions
impl Identifiable for UpdateBotMessageReactions
Source§const CONSTRUCTOR_ID: u32 = 0x09cb7759
const CONSTRUCTOR_ID: u32 = 0x09cb7759
The constructor ID as specified in the TL schema.
Source§impl TryFrom<Update> for UpdateBotMessageReactions
impl TryFrom<Update> for UpdateBotMessageReactions
impl StructuralPartialEq for UpdateBotMessageReactions
Auto Trait Implementations§
impl Freeze for UpdateBotMessageReactions
impl RefUnwindSafe for UpdateBotMessageReactions
impl Send for UpdateBotMessageReactions
impl Sync for UpdateBotMessageReactions
impl Unpin for UpdateBotMessageReactions
impl UnsafeUnpin for UpdateBotMessageReactions
impl UnwindSafe for UpdateBotMessageReactions
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