#[non_exhaustive]pub struct QueryAuditableServicesRequest {
pub full_resource_name: String,
/* private fields */
}Expand description
A request to get the list of auditable services for a resource.
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.full_resource_name: StringRequired. The full resource name to query from the list of auditable services.
The name follows the Google Cloud Platform resource format.
For example, a Cloud Platform project with id my-project will be named
//cloudresourcemanager.googleapis.com/projects/my-project.
Implementations§
Source§impl QueryAuditableServicesRequest
impl QueryAuditableServicesRequest
pub fn new() -> Self
Sourcepub fn set_full_resource_name<T: Into<String>>(self, v: T) -> Self
pub fn set_full_resource_name<T: Into<String>>(self, v: T) -> Self
Sets the value of full_resource_name.
Trait Implementations§
Source§impl Clone for QueryAuditableServicesRequest
impl Clone for QueryAuditableServicesRequest
Source§fn clone(&self) -> QueryAuditableServicesRequest
fn clone(&self) -> QueryAuditableServicesRequest
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 QueryAuditableServicesRequest
impl Default for QueryAuditableServicesRequest
Source§fn default() -> QueryAuditableServicesRequest
fn default() -> QueryAuditableServicesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for QueryAuditableServicesRequest
impl PartialEq for QueryAuditableServicesRequest
Source§fn eq(&self, other: &QueryAuditableServicesRequest) -> bool
fn eq(&self, other: &QueryAuditableServicesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueryAuditableServicesRequest
Auto Trait Implementations§
impl Freeze for QueryAuditableServicesRequest
impl RefUnwindSafe for QueryAuditableServicesRequest
impl Send for QueryAuditableServicesRequest
impl Sync for QueryAuditableServicesRequest
impl Unpin for QueryAuditableServicesRequest
impl UnwindSafe for QueryAuditableServicesRequest
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