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