Struct aws_sdk_support::output::DescribeCasesOutput
source · [−]#[non_exhaustive]pub struct DescribeCasesOutput {
pub cases: Option<Vec<CaseDetails>>,
pub next_token: Option<String>,
}Expand description
Returns an array of CaseDetails objects and a nextToken that defines a point for pagination in the result set.
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.cases: Option<Vec<CaseDetails>>The details for the cases that match the request.
next_token: Option<String>A resumption point for pagination.
Implementations
sourceimpl DescribeCasesOutput
impl DescribeCasesOutput
sourcepub fn cases(&self) -> Option<&[CaseDetails]>
pub fn cases(&self) -> Option<&[CaseDetails]>
The details for the cases that match the request.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A resumption point for pagination.
sourceimpl DescribeCasesOutput
impl DescribeCasesOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeCasesOutput
Trait Implementations
sourceimpl Clone for DescribeCasesOutput
impl Clone for DescribeCasesOutput
sourcefn clone(&self) -> DescribeCasesOutput
fn clone(&self) -> DescribeCasesOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DescribeCasesOutput
impl Debug for DescribeCasesOutput
sourceimpl PartialEq<DescribeCasesOutput> for DescribeCasesOutput
impl PartialEq<DescribeCasesOutput> for DescribeCasesOutput
sourcefn eq(&self, other: &DescribeCasesOutput) -> bool
fn eq(&self, other: &DescribeCasesOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DescribeCasesOutput) -> bool
fn ne(&self, other: &DescribeCasesOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for DescribeCasesOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeCasesOutput
impl Send for DescribeCasesOutput
impl Sync for DescribeCasesOutput
impl Unpin for DescribeCasesOutput
impl UnwindSafe for DescribeCasesOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more