#[non_exhaustive]pub struct DeleteDataAccessScopeRequest {
pub name: String,
/* private fields */
}Expand description
Request message to delete a data access scope.
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 ID of the data access scope to delete.
Format:
projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{data_access_scope}
Implementations§
Trait Implementations§
Source§impl Clone for DeleteDataAccessScopeRequest
impl Clone for DeleteDataAccessScopeRequest
Source§fn clone(&self) -> DeleteDataAccessScopeRequest
fn clone(&self) -> DeleteDataAccessScopeRequest
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 DeleteDataAccessScopeRequest
impl Debug for DeleteDataAccessScopeRequest
Source§impl Default for DeleteDataAccessScopeRequest
impl Default for DeleteDataAccessScopeRequest
Source§fn default() -> DeleteDataAccessScopeRequest
fn default() -> DeleteDataAccessScopeRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteDataAccessScopeRequest
impl PartialEq for DeleteDataAccessScopeRequest
Source§fn eq(&self, other: &DeleteDataAccessScopeRequest) -> bool
fn eq(&self, other: &DeleteDataAccessScopeRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteDataAccessScopeRequest
Auto Trait Implementations§
impl Freeze for DeleteDataAccessScopeRequest
impl RefUnwindSafe for DeleteDataAccessScopeRequest
impl Send for DeleteDataAccessScopeRequest
impl Sync for DeleteDataAccessScopeRequest
impl Unpin for DeleteDataAccessScopeRequest
impl UnsafeUnpin for DeleteDataAccessScopeRequest
impl UnwindSafe for DeleteDataAccessScopeRequest
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