pub struct UpdateBusinessMessagesDeleted {
pub connection_id: String,
pub chat_id: i64,
pub message_ids: Vec<i64>,
}
Expand description
Messages in a business account were deleted; for bots only
Fields§
§connection_id: String
Unique identifier of the business connection
chat_id: i64
Identifier of a chat in the business account in which messages were deleted
message_ids: Vec<i64>
Unique message identifiers of the deleted messages
Trait Implementations§
Source§impl Clone for UpdateBusinessMessagesDeleted
impl Clone for UpdateBusinessMessagesDeleted
Source§fn clone(&self) -> UpdateBusinessMessagesDeleted
fn clone(&self) -> UpdateBusinessMessagesDeleted
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 UpdateBusinessMessagesDeleted
impl Default for UpdateBusinessMessagesDeleted
Source§fn default() -> UpdateBusinessMessagesDeleted
fn default() -> UpdateBusinessMessagesDeleted
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateBusinessMessagesDeleted
impl<'de> Deserialize<'de> for UpdateBusinessMessagesDeleted
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 UpdateBusinessMessagesDeleted
impl PartialEq for UpdateBusinessMessagesDeleted
Source§fn eq(&self, other: &UpdateBusinessMessagesDeleted) -> bool
fn eq(&self, other: &UpdateBusinessMessagesDeleted) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateBusinessMessagesDeleted
Auto Trait Implementations§
impl Freeze for UpdateBusinessMessagesDeleted
impl RefUnwindSafe for UpdateBusinessMessagesDeleted
impl Send for UpdateBusinessMessagesDeleted
impl Sync for UpdateBusinessMessagesDeleted
impl Unpin for UpdateBusinessMessagesDeleted
impl UnwindSafe for UpdateBusinessMessagesDeleted
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