pub struct DeleteChatReplyMarkup {
pub chat_id: i64,
pub message_id: i64,
}
Expand description
Deletes the default reply markup from a chat. Must be called after a one-time keyboard or a ForceReply reply markup has been used. UpdateChatReplyMarkup will be sent if the reply markup will be changed
Fields§
§chat_id: i64
Chat identifier
message_id: i64
The message identifier of the used keyboard
Trait Implementations§
Source§impl Clone for DeleteChatReplyMarkup
impl Clone for DeleteChatReplyMarkup
Source§fn clone(&self) -> DeleteChatReplyMarkup
fn clone(&self) -> DeleteChatReplyMarkup
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 DeleteChatReplyMarkup
impl Debug for DeleteChatReplyMarkup
Source§impl<'de> Deserialize<'de> for DeleteChatReplyMarkup
impl<'de> Deserialize<'de> for DeleteChatReplyMarkup
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 Method for DeleteChatReplyMarkup
impl Method for DeleteChatReplyMarkup
Auto Trait Implementations§
impl Freeze for DeleteChatReplyMarkup
impl RefUnwindSafe for DeleteChatReplyMarkup
impl Send for DeleteChatReplyMarkup
impl Sync for DeleteChatReplyMarkup
impl Unpin for DeleteChatReplyMarkup
impl UnwindSafe for DeleteChatReplyMarkup
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