#[non_exhaustive]pub struct DeleteGatewaySecurityPolicyRuleRequest {
pub name: String,
/* private fields */
}Expand description
Request used by the DeleteGatewaySecurityPolicyRule method.
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. A name of the GatewaySecurityPolicyRule to delete. Must be in the
format
projects/{project}/locations/{location}/gatewaySecurityPolicies/{gatewaySecurityPolicy}/rules/*.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteGatewaySecurityPolicyRuleRequest
impl Clone for DeleteGatewaySecurityPolicyRuleRequest
Source§fn clone(&self) -> DeleteGatewaySecurityPolicyRuleRequest
fn clone(&self) -> DeleteGatewaySecurityPolicyRuleRequest
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 DeleteGatewaySecurityPolicyRuleRequest
impl Default for DeleteGatewaySecurityPolicyRuleRequest
Source§fn default() -> DeleteGatewaySecurityPolicyRuleRequest
fn default() -> DeleteGatewaySecurityPolicyRuleRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteGatewaySecurityPolicyRuleRequest
impl PartialEq for DeleteGatewaySecurityPolicyRuleRequest
Source§fn eq(&self, other: &DeleteGatewaySecurityPolicyRuleRequest) -> bool
fn eq(&self, other: &DeleteGatewaySecurityPolicyRuleRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteGatewaySecurityPolicyRuleRequest
Auto Trait Implementations§
impl Freeze for DeleteGatewaySecurityPolicyRuleRequest
impl RefUnwindSafe for DeleteGatewaySecurityPolicyRuleRequest
impl Send for DeleteGatewaySecurityPolicyRuleRequest
impl Sync for DeleteGatewaySecurityPolicyRuleRequest
impl Unpin for DeleteGatewaySecurityPolicyRuleRequest
impl UnsafeUnpin for DeleteGatewaySecurityPolicyRuleRequest
impl UnwindSafe for DeleteGatewaySecurityPolicyRuleRequest
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