#[non_exhaustive]pub struct DeleteNamespaceRequest {
pub name: String,
/* private fields */
}Expand description
The request message for RegistrationService.DeleteNamespace.
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 name of the namespace to delete.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteNamespaceRequest
impl Clone for DeleteNamespaceRequest
Source§fn clone(&self) -> DeleteNamespaceRequest
fn clone(&self) -> DeleteNamespaceRequest
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 DeleteNamespaceRequest
impl Debug for DeleteNamespaceRequest
Source§impl Default for DeleteNamespaceRequest
impl Default for DeleteNamespaceRequest
Source§fn default() -> DeleteNamespaceRequest
fn default() -> DeleteNamespaceRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteNamespaceRequest
impl Message for DeleteNamespaceRequest
Source§impl PartialEq for DeleteNamespaceRequest
impl PartialEq for DeleteNamespaceRequest
impl StructuralPartialEq for DeleteNamespaceRequest
Auto Trait Implementations§
impl Freeze for DeleteNamespaceRequest
impl RefUnwindSafe for DeleteNamespaceRequest
impl Send for DeleteNamespaceRequest
impl Sync for DeleteNamespaceRequest
impl Unpin for DeleteNamespaceRequest
impl UnsafeUnpin for DeleteNamespaceRequest
impl UnwindSafe for DeleteNamespaceRequest
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