#[non_exhaustive]pub struct DeleteExclusionRequest {
pub name: String,
/* private fields */
}Expand description
The parameters to DeleteExclusion.
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 resource name of an existing exclusion to delete:
"projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]"
"organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]"
"billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]"
"folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]"For example:
"projects/my-project/exclusions/my-exclusion"
Implementations§
Trait Implementations§
Source§impl Clone for DeleteExclusionRequest
impl Clone for DeleteExclusionRequest
Source§fn clone(&self) -> DeleteExclusionRequest
fn clone(&self) -> DeleteExclusionRequest
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 DeleteExclusionRequest
impl Debug for DeleteExclusionRequest
Source§impl Default for DeleteExclusionRequest
impl Default for DeleteExclusionRequest
Source§fn default() -> DeleteExclusionRequest
fn default() -> DeleteExclusionRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteExclusionRequest
impl Message for DeleteExclusionRequest
Source§impl PartialEq for DeleteExclusionRequest
impl PartialEq for DeleteExclusionRequest
impl StructuralPartialEq for DeleteExclusionRequest
Auto Trait Implementations§
impl Freeze for DeleteExclusionRequest
impl RefUnwindSafe for DeleteExclusionRequest
impl Send for DeleteExclusionRequest
impl Sync for DeleteExclusionRequest
impl Unpin for DeleteExclusionRequest
impl UnwindSafe for DeleteExclusionRequest
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