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