Struct aws_sdk_inspector2::operation::list_coverage_statistics::ListCoverageStatisticsOutput
source · #[non_exhaustive]pub struct ListCoverageStatisticsOutput {
pub counts_by_group: Option<Vec<Counts>>,
pub total_counts: i64,
pub next_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.counts_by_group: Option<Vec<Counts>>An array with the number for each group.
total_counts: i64The total number for all groups.
next_token: Option<String>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
Implementations§
source§impl ListCoverageStatisticsOutput
impl ListCoverageStatisticsOutput
sourcepub fn counts_by_group(&self) -> &[Counts]
pub fn counts_by_group(&self) -> &[Counts]
An array with the number for each group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .counts_by_group.is_none().
sourcepub fn total_counts(&self) -> i64
pub fn total_counts(&self) -> i64
The total number for all groups.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
source§impl ListCoverageStatisticsOutput
impl ListCoverageStatisticsOutput
sourcepub fn builder() -> ListCoverageStatisticsOutputBuilder
pub fn builder() -> ListCoverageStatisticsOutputBuilder
Creates a new builder-style object to manufacture ListCoverageStatisticsOutput.
Trait Implementations§
source§impl Clone for ListCoverageStatisticsOutput
impl Clone for ListCoverageStatisticsOutput
source§fn clone(&self) -> ListCoverageStatisticsOutput
fn clone(&self) -> ListCoverageStatisticsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListCoverageStatisticsOutput
impl Debug for ListCoverageStatisticsOutput
source§impl PartialEq for ListCoverageStatisticsOutput
impl PartialEq for ListCoverageStatisticsOutput
source§fn eq(&self, other: &ListCoverageStatisticsOutput) -> bool
fn eq(&self, other: &ListCoverageStatisticsOutput) -> bool
self and other values to be equal, and is used by ==.source§impl RequestId for ListCoverageStatisticsOutput
impl RequestId for ListCoverageStatisticsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for ListCoverageStatisticsOutput
Auto Trait Implementations§
impl Freeze for ListCoverageStatisticsOutput
impl RefUnwindSafe for ListCoverageStatisticsOutput
impl Send for ListCoverageStatisticsOutput
impl Sync for ListCoverageStatisticsOutput
impl Unpin for ListCoverageStatisticsOutput
impl UnwindSafe for ListCoverageStatisticsOutput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more