#[non_exhaustive]pub struct GetInsightsOutput {
pub insights: Option<Vec<Insight>>,
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.insights: Option<Vec<Insight>>
The insights returned by the operation.
next_token: Option<String>
The pagination token to use to request the next page of results.
Implementations§
source§impl GetInsightsOutput
impl GetInsightsOutput
sourcepub fn builder() -> GetInsightsOutputBuilder
pub fn builder() -> GetInsightsOutputBuilder
Creates a new builder-style object to manufacture GetInsightsOutput
.
Trait Implementations§
source§impl Clone for GetInsightsOutput
impl Clone for GetInsightsOutput
source§fn clone(&self) -> GetInsightsOutput
fn clone(&self) -> GetInsightsOutput
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 GetInsightsOutput
impl Debug for GetInsightsOutput
source§impl PartialEq for GetInsightsOutput
impl PartialEq for GetInsightsOutput
source§fn eq(&self, other: &GetInsightsOutput) -> bool
fn eq(&self, other: &GetInsightsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetInsightsOutput
impl RequestId for GetInsightsOutput
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 GetInsightsOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetInsightsOutput
impl Send for GetInsightsOutput
impl Sync for GetInsightsOutput
impl Unpin for GetInsightsOutput
impl UnwindSafe for GetInsightsOutput
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