#[non_exhaustive]pub struct BatchUpdateIngressRulesResponse {
pub ingress_rules: Vec<FirewallRule>,
/* private fields */
}Expand description
Response message for Firewall.UpdateAllIngressRules.
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.ingress_rules: Vec<FirewallRule>The full list of ingress FirewallRules for this application.
Implementations§
Source§impl BatchUpdateIngressRulesResponse
impl BatchUpdateIngressRulesResponse
pub fn new() -> Self
Sourcepub fn set_ingress_rules<T, V>(self, v: T) -> Self
pub fn set_ingress_rules<T, V>(self, v: T) -> Self
Sets the value of ingress_rules.
Trait Implementations§
Source§impl Clone for BatchUpdateIngressRulesResponse
impl Clone for BatchUpdateIngressRulesResponse
Source§fn clone(&self) -> BatchUpdateIngressRulesResponse
fn clone(&self) -> BatchUpdateIngressRulesResponse
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 BatchUpdateIngressRulesResponse
impl Default for BatchUpdateIngressRulesResponse
Source§fn default() -> BatchUpdateIngressRulesResponse
fn default() -> BatchUpdateIngressRulesResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for BatchUpdateIngressRulesResponse
impl PartialEq for BatchUpdateIngressRulesResponse
Source§fn eq(&self, other: &BatchUpdateIngressRulesResponse) -> bool
fn eq(&self, other: &BatchUpdateIngressRulesResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchUpdateIngressRulesResponse
Auto Trait Implementations§
impl Freeze for BatchUpdateIngressRulesResponse
impl RefUnwindSafe for BatchUpdateIngressRulesResponse
impl Send for BatchUpdateIngressRulesResponse
impl Sync for BatchUpdateIngressRulesResponse
impl Unpin for BatchUpdateIngressRulesResponse
impl UnwindSafe for BatchUpdateIngressRulesResponse
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