pub struct UpdateMessageEdited {
pub chat_id: i64,
pub message_id: i64,
pub edit_date: i32,
pub reply_markup: Option<ReplyMarkup>,
}
Expand description
A message was edited. Changes in the message content will come in a separate updateMessageContent
Fields§
§chat_id: i64
Chat identifier
message_id: i64
Message identifier
edit_date: i32
Point in time (Unix timestamp) when the message was edited
reply_markup: Option<ReplyMarkup>
New message reply markup; may be null
Trait Implementations§
Source§impl Clone for UpdateMessageEdited
impl Clone for UpdateMessageEdited
Source§fn clone(&self) -> UpdateMessageEdited
fn clone(&self) -> UpdateMessageEdited
Returns a copy 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 UpdateMessageEdited
impl Debug for UpdateMessageEdited
Source§impl Default for UpdateMessageEdited
impl Default for UpdateMessageEdited
Source§fn default() -> UpdateMessageEdited
fn default() -> UpdateMessageEdited
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateMessageEdited
impl<'de> Deserialize<'de> for UpdateMessageEdited
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 UpdateMessageEdited
impl PartialEq for UpdateMessageEdited
Source§impl Serialize for UpdateMessageEdited
impl Serialize for UpdateMessageEdited
impl StructuralPartialEq for UpdateMessageEdited
Auto Trait Implementations§
impl Freeze for UpdateMessageEdited
impl RefUnwindSafe for UpdateMessageEdited
impl Send for UpdateMessageEdited
impl Sync for UpdateMessageEdited
impl Unpin for UpdateMessageEdited
impl UnwindSafe for UpdateMessageEdited
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