pub struct InsightResults {
pub group_by_attribute: String,
pub insight_arn: String,
pub result_values: Vec<InsightResultValue>,
}
Expand description
The insight results returned by the GetInsightResults
operation.
Fields§
§group_by_attribute: String
The attribute that the findings are grouped by for the insight whose results are returned by the GetInsightResults
operation.
insight_arn: String
The ARN of the insight whose results are returned by the GetInsightResults
operation.
result_values: Vec<InsightResultValue>
The list of insight result values returned by the GetInsightResults
operation.
Trait Implementations§
Source§impl Clone for InsightResults
impl Clone for InsightResults
Source§fn clone(&self) -> InsightResults
fn clone(&self) -> InsightResults
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 InsightResults
impl Debug for InsightResults
Source§impl Default for InsightResults
impl Default for InsightResults
Source§fn default() -> InsightResults
fn default() -> InsightResults
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InsightResults
impl<'de> Deserialize<'de> for InsightResults
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 InsightResults
impl PartialEq for InsightResults
impl StructuralPartialEq for InsightResults
Auto Trait Implementations§
impl Freeze for InsightResults
impl RefUnwindSafe for InsightResults
impl Send for InsightResults
impl Sync for InsightResults
impl Unpin for InsightResults
impl UnwindSafe for InsightResults
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