#[non_exhaustive]pub struct SearchContentOutput {
pub content_summaries: Vec<ContentSummary>,
pub next_token: Option<String>,
/* 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.content_summaries: Vec<ContentSummary>Summary information about the content.
next_token: Option<String>If there are additional results, this is the token for the next set of results.
Implementations§
source§impl SearchContentOutput
impl SearchContentOutput
sourcepub fn content_summaries(&self) -> &[ContentSummary]
pub fn content_summaries(&self) -> &[ContentSummary]
Summary information about the content.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If there are additional results, this is the token for the next set of results.
source§impl SearchContentOutput
impl SearchContentOutput
sourcepub fn builder() -> SearchContentOutputBuilder
pub fn builder() -> SearchContentOutputBuilder
Creates a new builder-style object to manufacture SearchContentOutput.
Trait Implementations§
source§impl Clone for SearchContentOutput
impl Clone for SearchContentOutput
source§fn clone(&self) -> SearchContentOutput
fn clone(&self) -> SearchContentOutput
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 SearchContentOutput
impl Debug for SearchContentOutput
source§impl PartialEq for SearchContentOutput
impl PartialEq for SearchContentOutput
source§fn eq(&self, other: &SearchContentOutput) -> bool
fn eq(&self, other: &SearchContentOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for SearchContentOutput
impl RequestId for SearchContentOutput
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 SearchContentOutput
Auto Trait Implementations§
impl RefUnwindSafe for SearchContentOutput
impl Send for SearchContentOutput
impl Sync for SearchContentOutput
impl Unpin for SearchContentOutput
impl UnwindSafe for SearchContentOutput
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
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>
Creates a shared type from an unshared type.