pub struct ChatItemsDeleted {
pub user: User,
pub chat_item_deletions: Vec<ChatItemDeletion>,
pub by_user: bool,
pub timed: bool,
pub undocumented: BTreeMap<String, JsonObject>,
}Expand description
§Message events
Bots must use these events to process received messages.
Message was deleted by another user.
Fields§
§user: User§chat_item_deletions: Vec<ChatItemDeletion>§by_user: bool§timed: bool§undocumented: BTreeMap<String, JsonObject>Trait Implementations§
Source§impl Clone for ChatItemsDeleted
impl Clone for ChatItemsDeleted
Source§fn clone(&self) -> ChatItemsDeleted
fn clone(&self) -> ChatItemsDeleted
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 ChatItemsDeleted
impl Debug for ChatItemsDeleted
Source§impl<'de> Deserialize<'de> for ChatItemsDeleted
impl<'de> Deserialize<'de> for ChatItemsDeleted
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 ChatItemsDeleted
impl PartialEq for ChatItemsDeleted
Source§impl Serialize for ChatItemsDeleted
impl Serialize for ChatItemsDeleted
impl StructuralPartialEq for ChatItemsDeleted
Auto Trait Implementations§
impl Freeze for ChatItemsDeleted
impl RefUnwindSafe for ChatItemsDeleted
impl Send for ChatItemsDeleted
impl Sync for ChatItemsDeleted
impl Unpin for ChatItemsDeleted
impl UnwindSafe for ChatItemsDeleted
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