#[non_exhaustive]pub struct MessageBatchUpdatedEventData {
pub messages: Vec<MessageUpdatedEventData>,
/* private fields */
}Expand description
Event payload for multiple updated messages.
Event type: google.workspace.chat.message.v1.batchUpdated
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<MessageUpdatedEventData>A list of updated messages.
Implementations§
Source§impl MessageBatchUpdatedEventData
impl MessageBatchUpdatedEventData
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 MessageBatchUpdatedEventData
impl Clone for MessageBatchUpdatedEventData
Source§fn clone(&self) -> MessageBatchUpdatedEventData
fn clone(&self) -> MessageBatchUpdatedEventData
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 MessageBatchUpdatedEventData
impl Debug for MessageBatchUpdatedEventData
Source§impl Default for MessageBatchUpdatedEventData
impl Default for MessageBatchUpdatedEventData
Source§fn default() -> MessageBatchUpdatedEventData
fn default() -> MessageBatchUpdatedEventData
Returns the “default value” for a type. Read more
impl StructuralPartialEq for MessageBatchUpdatedEventData
Auto Trait Implementations§
impl Freeze for MessageBatchUpdatedEventData
impl RefUnwindSafe for MessageBatchUpdatedEventData
impl Send for MessageBatchUpdatedEventData
impl Sync for MessageBatchUpdatedEventData
impl Unpin for MessageBatchUpdatedEventData
impl UnsafeUnpin for MessageBatchUpdatedEventData
impl UnwindSafe for MessageBatchUpdatedEventData
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