#[non_exhaustive]pub struct DeleteIngressRuleRequest {
pub name: String,
/* private fields */
}Expand description
Request message for Firewall.DeleteIngressRule.
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: StringName of the Firewall resource to delete.
Example: apps/myapp/firewall/ingressRules/100.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteIngressRuleRequest
impl Clone for DeleteIngressRuleRequest
Source§fn clone(&self) -> DeleteIngressRuleRequest
fn clone(&self) -> DeleteIngressRuleRequest
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 DeleteIngressRuleRequest
impl Debug for DeleteIngressRuleRequest
Source§impl Default for DeleteIngressRuleRequest
impl Default for DeleteIngressRuleRequest
Source§fn default() -> DeleteIngressRuleRequest
fn default() -> DeleteIngressRuleRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteIngressRuleRequest
impl Message for DeleteIngressRuleRequest
Source§impl PartialEq for DeleteIngressRuleRequest
impl PartialEq for DeleteIngressRuleRequest
impl StructuralPartialEq for DeleteIngressRuleRequest
Auto Trait Implementations§
impl Freeze for DeleteIngressRuleRequest
impl RefUnwindSafe for DeleteIngressRuleRequest
impl Send for DeleteIngressRuleRequest
impl Sync for DeleteIngressRuleRequest
impl Unpin for DeleteIngressRuleRequest
impl UnwindSafe for DeleteIngressRuleRequest
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