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