pub struct UpdateMessageSendAcknowledged {
pub chat_id: i64,
pub message_id: i64,
}
Expand description
A request to send a message has reached the Telegram server. This doesn’t mean that the message will be sent successfully. This update is sent only if the option “use_quick_ack” is set to true. This update may be sent multiple times for the same message
Fields§
§chat_id: i64
The chat identifier of the sent message
message_id: i64
A temporary message identifier
Trait Implementations§
Source§impl Clone for UpdateMessageSendAcknowledged
impl Clone for UpdateMessageSendAcknowledged
Source§fn clone(&self) -> UpdateMessageSendAcknowledged
fn clone(&self) -> UpdateMessageSendAcknowledged
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 Default for UpdateMessageSendAcknowledged
impl Default for UpdateMessageSendAcknowledged
Source§fn default() -> UpdateMessageSendAcknowledged
fn default() -> UpdateMessageSendAcknowledged
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateMessageSendAcknowledged
impl<'de> Deserialize<'de> for UpdateMessageSendAcknowledged
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 UpdateMessageSendAcknowledged
impl PartialEq for UpdateMessageSendAcknowledged
Source§fn eq(&self, other: &UpdateMessageSendAcknowledged) -> bool
fn eq(&self, other: &UpdateMessageSendAcknowledged) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateMessageSendAcknowledged
Auto Trait Implementations§
impl Freeze for UpdateMessageSendAcknowledged
impl RefUnwindSafe for UpdateMessageSendAcknowledged
impl Send for UpdateMessageSendAcknowledged
impl Sync for UpdateMessageSendAcknowledged
impl Unpin for UpdateMessageSendAcknowledged
impl UnwindSafe for UpdateMessageSendAcknowledged
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