#[non_exhaustive]pub struct MessageBatchDeletedEventData {
pub messages: Vec<MessageDeletedEventData>,
/* private fields */
}Expand description
Event payload for multiple deleted messages.
Event type: google.workspace.chat.message.v1.batchDeleted
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.messages: Vec<MessageDeletedEventData>A list of deleted messages.
Implementations§
Source§impl MessageBatchDeletedEventData
impl MessageBatchDeletedEventData
Sourcepub fn set_messages<T, V>(self, v: T) -> Self
pub fn set_messages<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for MessageBatchDeletedEventData
impl Clone for MessageBatchDeletedEventData
Source§fn clone(&self) -> MessageBatchDeletedEventData
fn clone(&self) -> MessageBatchDeletedEventData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MessageBatchDeletedEventData
impl Debug for MessageBatchDeletedEventData
Source§impl Default for MessageBatchDeletedEventData
impl Default for MessageBatchDeletedEventData
Source§fn default() -> MessageBatchDeletedEventData
fn default() -> MessageBatchDeletedEventData
Returns the “default value” for a type. Read more
impl StructuralPartialEq for MessageBatchDeletedEventData
Auto Trait Implementations§
impl Freeze for MessageBatchDeletedEventData
impl RefUnwindSafe for MessageBatchDeletedEventData
impl Send for MessageBatchDeletedEventData
impl Sync for MessageBatchDeletedEventData
impl Unpin for MessageBatchDeletedEventData
impl UnsafeUnpin for MessageBatchDeletedEventData
impl UnwindSafe for MessageBatchDeletedEventData
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