#[non_exhaustive]pub struct SearchRelatedItemsOutput {
pub next_token: Option<String>,
pub related_items: Option<Vec<Option<SearchRelatedItemsResponseItem>>>,
/* 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.
A list of items related to a case.
Implementations§
source§impl SearchRelatedItemsOutput
impl SearchRelatedItemsOutput
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.
A list of items related to a case.
source§impl SearchRelatedItemsOutput
impl SearchRelatedItemsOutput
sourcepub fn builder() -> SearchRelatedItemsOutputBuilder
pub fn builder() -> SearchRelatedItemsOutputBuilder
Creates a new builder-style object to manufacture SearchRelatedItemsOutput
.
Trait Implementations§
source§impl Clone for SearchRelatedItemsOutput
impl Clone for SearchRelatedItemsOutput
source§fn clone(&self) -> SearchRelatedItemsOutput
fn clone(&self) -> SearchRelatedItemsOutput
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 SearchRelatedItemsOutput
impl Debug for SearchRelatedItemsOutput
source§impl PartialEq for SearchRelatedItemsOutput
impl PartialEq for SearchRelatedItemsOutput
source§fn eq(&self, other: &SearchRelatedItemsOutput) -> bool
fn eq(&self, other: &SearchRelatedItemsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for SearchRelatedItemsOutput
impl RequestId for SearchRelatedItemsOutput
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 SearchRelatedItemsOutput
Auto Trait Implementations§
impl RefUnwindSafe for SearchRelatedItemsOutput
impl Send for SearchRelatedItemsOutput
impl Sync for SearchRelatedItemsOutput
impl Unpin for SearchRelatedItemsOutput
impl UnwindSafe for SearchRelatedItemsOutput
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