#[non_exhaustive]pub struct SpaceBatchUpdatedEventData {
pub spaces: Vec<SpaceUpdatedEventData>,
/* private fields */
}Expand description
Event payload for multiple updates to a space.
Event type: google.workspace.chat.space.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.spaces: Vec<SpaceUpdatedEventData>A list of updated spaces.
Implementations§
Source§impl SpaceBatchUpdatedEventData
impl SpaceBatchUpdatedEventData
Sourcepub fn set_spaces<T, V>(self, v: T) -> Self
pub fn set_spaces<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for SpaceBatchUpdatedEventData
impl Clone for SpaceBatchUpdatedEventData
Source§fn clone(&self) -> SpaceBatchUpdatedEventData
fn clone(&self) -> SpaceBatchUpdatedEventData
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 SpaceBatchUpdatedEventData
impl Debug for SpaceBatchUpdatedEventData
Source§impl Default for SpaceBatchUpdatedEventData
impl Default for SpaceBatchUpdatedEventData
Source§fn default() -> SpaceBatchUpdatedEventData
fn default() -> SpaceBatchUpdatedEventData
Returns the “default value” for a type. Read more
Source§impl Message for SpaceBatchUpdatedEventData
impl Message for SpaceBatchUpdatedEventData
impl StructuralPartialEq for SpaceBatchUpdatedEventData
Auto Trait Implementations§
impl Freeze for SpaceBatchUpdatedEventData
impl RefUnwindSafe for SpaceBatchUpdatedEventData
impl Send for SpaceBatchUpdatedEventData
impl Sync for SpaceBatchUpdatedEventData
impl Unpin for SpaceBatchUpdatedEventData
impl UnsafeUnpin for SpaceBatchUpdatedEventData
impl UnwindSafe for SpaceBatchUpdatedEventData
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