#[non_exhaustive]pub struct CompleteImportSpaceResponse {
pub space: Option<Space>,
/* private fields */
}Expand description
Response message for completing the import process for a space.
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 import mode space.
Implementations§
Source§impl CompleteImportSpaceResponse
impl CompleteImportSpaceResponse
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 CompleteImportSpaceResponse
impl Clone for CompleteImportSpaceResponse
Source§fn clone(&self) -> CompleteImportSpaceResponse
fn clone(&self) -> CompleteImportSpaceResponse
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 CompleteImportSpaceResponse
impl Debug for CompleteImportSpaceResponse
Source§impl Default for CompleteImportSpaceResponse
impl Default for CompleteImportSpaceResponse
Source§fn default() -> CompleteImportSpaceResponse
fn default() -> CompleteImportSpaceResponse
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CompleteImportSpaceResponse
Auto Trait Implementations§
impl Freeze for CompleteImportSpaceResponse
impl RefUnwindSafe for CompleteImportSpaceResponse
impl Send for CompleteImportSpaceResponse
impl Sync for CompleteImportSpaceResponse
impl Unpin for CompleteImportSpaceResponse
impl UnsafeUnpin for CompleteImportSpaceResponse
impl UnwindSafe for CompleteImportSpaceResponse
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