pub struct GetInsightsResponse {
pub insights: Vec<Insight>,
pub next_token: Option<String>,
}
Fields§
§insights: Vec<Insight>
The insights returned by the operation.
next_token: Option<String>
The pagination token to use to request the next page of results.
Trait Implementations§
Source§impl Clone for GetInsightsResponse
impl Clone for GetInsightsResponse
Source§fn clone(&self) -> GetInsightsResponse
fn clone(&self) -> GetInsightsResponse
Returns a duplicate 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 GetInsightsResponse
impl Debug for GetInsightsResponse
Source§impl Default for GetInsightsResponse
impl Default for GetInsightsResponse
Source§fn default() -> GetInsightsResponse
fn default() -> GetInsightsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetInsightsResponse
impl<'de> Deserialize<'de> for GetInsightsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetInsightsResponse
impl PartialEq for GetInsightsResponse
impl StructuralPartialEq for GetInsightsResponse
Auto Trait Implementations§
impl Freeze for GetInsightsResponse
impl RefUnwindSafe for GetInsightsResponse
impl Send for GetInsightsResponse
impl Sync for GetInsightsResponse
impl Unpin for GetInsightsResponse
impl UnwindSafe for GetInsightsResponse
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