#[non_exhaustive]pub struct ReplaceAccessLevelsResponse {
pub access_levels: Vec<AccessLevel>,
/* private fields */
}Expand description
A response to ReplaceAccessLevelsRequest. This will be put inside of Operation.response field.
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.access_levels: Vec<AccessLevel>List of the [Access Level] [google.identity.accesscontextmanager.v1.AccessLevel] instances.
Implementations§
Source§impl ReplaceAccessLevelsResponse
impl ReplaceAccessLevelsResponse
pub fn new() -> Self
Sourcepub fn set_access_levels<T, V>(self, v: T) -> Self
pub fn set_access_levels<T, V>(self, v: T) -> Self
Sets the value of access_levels.
Trait Implementations§
Source§impl Clone for ReplaceAccessLevelsResponse
impl Clone for ReplaceAccessLevelsResponse
Source§fn clone(&self) -> ReplaceAccessLevelsResponse
fn clone(&self) -> ReplaceAccessLevelsResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 ReplaceAccessLevelsResponse
impl Debug for ReplaceAccessLevelsResponse
Source§impl Default for ReplaceAccessLevelsResponse
impl Default for ReplaceAccessLevelsResponse
Source§fn default() -> ReplaceAccessLevelsResponse
fn default() -> ReplaceAccessLevelsResponse
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ReplaceAccessLevelsResponse
Auto Trait Implementations§
impl Freeze for ReplaceAccessLevelsResponse
impl RefUnwindSafe for ReplaceAccessLevelsResponse
impl Send for ReplaceAccessLevelsResponse
impl Sync for ReplaceAccessLevelsResponse
impl Unpin for ReplaceAccessLevelsResponse
impl UnwindSafe for ReplaceAccessLevelsResponse
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