#[non_exhaustive]pub struct CapacityUsageSummary {
pub cid_rs: Option<CidrSummary>,
}
Expand description
The capacity usage summary of the resources used by the ReferenceSets
in a firewall.
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.cid_rs: Option<CidrSummary>
Describes the capacity usage of the CIDR blocks used by the IP set references in a firewall.
Implementations§
source§impl CapacityUsageSummary
impl CapacityUsageSummary
sourcepub fn cid_rs(&self) -> Option<&CidrSummary>
pub fn cid_rs(&self) -> Option<&CidrSummary>
Describes the capacity usage of the CIDR blocks used by the IP set references in a firewall.
source§impl CapacityUsageSummary
impl CapacityUsageSummary
sourcepub fn builder() -> CapacityUsageSummaryBuilder
pub fn builder() -> CapacityUsageSummaryBuilder
Creates a new builder-style object to manufacture CapacityUsageSummary
.
Trait Implementations§
source§impl Clone for CapacityUsageSummary
impl Clone for CapacityUsageSummary
source§fn clone(&self) -> CapacityUsageSummary
fn clone(&self) -> CapacityUsageSummary
Returns a copy 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 CapacityUsageSummary
impl Debug for CapacityUsageSummary
source§impl PartialEq for CapacityUsageSummary
impl PartialEq for CapacityUsageSummary
source§fn eq(&self, other: &CapacityUsageSummary) -> bool
fn eq(&self, other: &CapacityUsageSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CapacityUsageSummary
Auto Trait Implementations§
impl RefUnwindSafe for CapacityUsageSummary
impl Send for CapacityUsageSummary
impl Sync for CapacityUsageSummary
impl Unpin for CapacityUsageSummary
impl UnwindSafe for CapacityUsageSummary
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