#[non_exhaustive]pub struct ListCoverageOutput {
pub next_token: Option<String>,
pub covered_resources: Option<Vec<CoveredResource>>,
/* 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.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.
covered_resources: Option<Vec<CoveredResource>>An object that contains details on the covered resources in your environment.
Implementations§
source§impl ListCoverageOutput
impl ListCoverageOutput
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.
sourcepub fn covered_resources(&self) -> &[CoveredResource]
pub fn covered_resources(&self) -> &[CoveredResource]
An object that contains details on the covered resources in your environment.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .covered_resources.is_none().
source§impl ListCoverageOutput
impl ListCoverageOutput
sourcepub fn builder() -> ListCoverageOutputBuilder
pub fn builder() -> ListCoverageOutputBuilder
Creates a new builder-style object to manufacture ListCoverageOutput.
Trait Implementations§
source§impl Clone for ListCoverageOutput
impl Clone for ListCoverageOutput
source§fn clone(&self) -> ListCoverageOutput
fn clone(&self) -> ListCoverageOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListCoverageOutput
impl Debug for ListCoverageOutput
source§impl PartialEq for ListCoverageOutput
impl PartialEq for ListCoverageOutput
source§impl RequestId for ListCoverageOutput
impl RequestId for ListCoverageOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for ListCoverageOutput
Auto Trait Implementations§
impl Freeze for ListCoverageOutput
impl RefUnwindSafe for ListCoverageOutput
impl Send for ListCoverageOutput
impl Sync for ListCoverageOutput
impl Unpin for ListCoverageOutput
impl UnwindSafe for ListCoverageOutput
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