#[non_exhaustive]pub struct SearchCasesOutput {
pub next_token: Option<String>,
pub cases: Option<Vec<Option<SearchCasesResponseItem>>>,
/* private fields */
}
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.next_token: Option<String>
The token for the next set of results. This is null if there are no more results to return.
cases: Option<Vec<Option<SearchCasesResponseItem>>>
A list of case documents where each case contains the properties CaseId
and Fields
where each field is a complex union structure.
Implementations§
source§impl SearchCasesOutput
impl SearchCasesOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results. This is null if there are no more results to return.
sourcepub fn cases(&self) -> Option<&[Option<SearchCasesResponseItem>]>
pub fn cases(&self) -> Option<&[Option<SearchCasesResponseItem>]>
A list of case documents where each case contains the properties CaseId
and Fields
where each field is a complex union structure.
source§impl SearchCasesOutput
impl SearchCasesOutput
sourcepub fn builder() -> SearchCasesOutputBuilder
pub fn builder() -> SearchCasesOutputBuilder
Creates a new builder-style object to manufacture SearchCasesOutput
.
Trait Implementations§
source§impl Clone for SearchCasesOutput
impl Clone for SearchCasesOutput
source§fn clone(&self) -> SearchCasesOutput
fn clone(&self) -> SearchCasesOutput
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 SearchCasesOutput
impl Debug for SearchCasesOutput
source§impl PartialEq for SearchCasesOutput
impl PartialEq for SearchCasesOutput
source§fn eq(&self, other: &SearchCasesOutput) -> bool
fn eq(&self, other: &SearchCasesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for SearchCasesOutput
impl RequestId for SearchCasesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for SearchCasesOutput
Auto Trait Implementations§
impl RefUnwindSafe for SearchCasesOutput
impl Send for SearchCasesOutput
impl Sync for SearchCasesOutput
impl Unpin for SearchCasesOutput
impl UnwindSafe for SearchCasesOutput
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