#[non_exhaustive]pub struct CommitServicePerimetersResponse {
pub service_perimeters: Vec<ServicePerimeter>,
/* private fields */
}Expand description
A response to CommitServicePerimetersRequest. 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.service_perimeters: Vec<ServicePerimeter>List of all the [Service Perimeter] [google.identity.accesscontextmanager.v1.ServicePerimeter] instances in the [Access Policy] [google.identity.accesscontextmanager.v1.AccessPolicy].
Implementations§
Source§impl CommitServicePerimetersResponse
impl CommitServicePerimetersResponse
pub fn new() -> Self
Sourcepub fn set_service_perimeters<T, V>(self, v: T) -> Self
pub fn set_service_perimeters<T, V>(self, v: T) -> Self
Sets the value of service_perimeters.
Trait Implementations§
Source§impl Clone for CommitServicePerimetersResponse
impl Clone for CommitServicePerimetersResponse
Source§fn clone(&self) -> CommitServicePerimetersResponse
fn clone(&self) -> CommitServicePerimetersResponse
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 Default for CommitServicePerimetersResponse
impl Default for CommitServicePerimetersResponse
Source§fn default() -> CommitServicePerimetersResponse
fn default() -> CommitServicePerimetersResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for CommitServicePerimetersResponse
impl PartialEq for CommitServicePerimetersResponse
Source§fn eq(&self, other: &CommitServicePerimetersResponse) -> bool
fn eq(&self, other: &CommitServicePerimetersResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CommitServicePerimetersResponse
Auto Trait Implementations§
impl Freeze for CommitServicePerimetersResponse
impl RefUnwindSafe for CommitServicePerimetersResponse
impl Send for CommitServicePerimetersResponse
impl Sync for CommitServicePerimetersResponse
impl Unpin for CommitServicePerimetersResponse
impl UnwindSafe for CommitServicePerimetersResponse
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