#[non_exhaustive]pub struct GetSpaceEventRequest {
pub name: String,
/* private fields */
}Expand description
Request message for getting a space event.
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.name: StringRequired. The resource name of the space event.
Format: spaces/{space}/spaceEvents/{spaceEvent}
Implementations§
Trait Implementations§
Source§impl Clone for GetSpaceEventRequest
impl Clone for GetSpaceEventRequest
Source§fn clone(&self) -> GetSpaceEventRequest
fn clone(&self) -> GetSpaceEventRequest
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 GetSpaceEventRequest
impl Debug for GetSpaceEventRequest
Source§impl Default for GetSpaceEventRequest
impl Default for GetSpaceEventRequest
Source§fn default() -> GetSpaceEventRequest
fn default() -> GetSpaceEventRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetSpaceEventRequest
impl Message for GetSpaceEventRequest
Source§impl PartialEq for GetSpaceEventRequest
impl PartialEq for GetSpaceEventRequest
impl StructuralPartialEq for GetSpaceEventRequest
Auto Trait Implementations§
impl Freeze for GetSpaceEventRequest
impl RefUnwindSafe for GetSpaceEventRequest
impl Send for GetSpaceEventRequest
impl Sync for GetSpaceEventRequest
impl Unpin for GetSpaceEventRequest
impl UnsafeUnpin for GetSpaceEventRequest
impl UnwindSafe for GetSpaceEventRequest
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