#[non_exhaustive]pub struct ControlInsightsMetadataByAssessmentItem {
pub name: Option<String>,
pub id: Option<String>,
pub evidence_insights: Option<EvidenceInsights>,
pub control_set_name: Option<String>,
pub last_updated: Option<DateTime>,
}Expand description
A summary of the latest analytics data for a specific control in a specific active assessment.
Control insights are grouped by control domain, and ranked by the highest total count of non-compliant evidence.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the assessment control.
id: Option<String>The unique identifier for the assessment control.
evidence_insights: Option<EvidenceInsights>A breakdown of the compliance check status for the evidence that’s associated with the assessment control.
control_set_name: Option<String>The name of the control set that the assessment control belongs to.
last_updated: Option<DateTime>The time when the assessment control insights were last updated.
Implementations§
source§impl ControlInsightsMetadataByAssessmentItem
impl ControlInsightsMetadataByAssessmentItem
sourcepub fn evidence_insights(&self) -> Option<&EvidenceInsights>
pub fn evidence_insights(&self) -> Option<&EvidenceInsights>
A breakdown of the compliance check status for the evidence that’s associated with the assessment control.
sourcepub fn control_set_name(&self) -> Option<&str>
pub fn control_set_name(&self) -> Option<&str>
The name of the control set that the assessment control belongs to.
sourcepub fn last_updated(&self) -> Option<&DateTime>
pub fn last_updated(&self) -> Option<&DateTime>
The time when the assessment control insights were last updated.
source§impl ControlInsightsMetadataByAssessmentItem
impl ControlInsightsMetadataByAssessmentItem
sourcepub fn builder() -> ControlInsightsMetadataByAssessmentItemBuilder
pub fn builder() -> ControlInsightsMetadataByAssessmentItemBuilder
Creates a new builder-style object to manufacture ControlInsightsMetadataByAssessmentItem.
Trait Implementations§
source§impl Clone for ControlInsightsMetadataByAssessmentItem
impl Clone for ControlInsightsMetadataByAssessmentItem
source§fn clone(&self) -> ControlInsightsMetadataByAssessmentItem
fn clone(&self) -> ControlInsightsMetadataByAssessmentItem
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ControlInsightsMetadataByAssessmentItem
impl PartialEq for ControlInsightsMetadataByAssessmentItem
source§fn eq(&self, other: &ControlInsightsMetadataByAssessmentItem) -> bool
fn eq(&self, other: &ControlInsightsMetadataByAssessmentItem) -> bool
self and other values to be equal, and is used
by ==.