pub struct TaskStatistics {
pub canceled_checks: Option<i64>,
pub compliant_checks: Option<i64>,
pub failed_checks: Option<i64>,
pub in_progress_checks: Option<i64>,
pub non_compliant_checks: Option<i64>,
pub total_checks: Option<i64>,
pub waiting_for_data_collection_checks: Option<i64>,
}
Expand description
Statistics for the checks performed during the audit.
Fields§
§canceled_checks: Option<i64>
The number of checks that did not run because the audit was canceled.
compliant_checks: Option<i64>
The number of checks that found compliant resources.
failed_checks: Option<i64>
The number of checks.
in_progress_checks: Option<i64>
The number of checks in progress.
non_compliant_checks: Option<i64>
The number of checks that found noncompliant resources.
total_checks: Option<i64>
The number of checks in this audit.
waiting_for_data_collection_checks: Option<i64>
The number of checks waiting for data collection.
Trait Implementations§
Source§impl Clone for TaskStatistics
impl Clone for TaskStatistics
Source§fn clone(&self) -> TaskStatistics
fn clone(&self) -> TaskStatistics
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 TaskStatistics
impl Debug for TaskStatistics
Source§impl Default for TaskStatistics
impl Default for TaskStatistics
Source§fn default() -> TaskStatistics
fn default() -> TaskStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskStatistics
impl<'de> Deserialize<'de> for TaskStatistics
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 TaskStatistics
impl PartialEq for TaskStatistics
impl StructuralPartialEq for TaskStatistics
Auto Trait Implementations§
impl Freeze for TaskStatistics
impl RefUnwindSafe for TaskStatistics
impl Send for TaskStatistics
impl Sync for TaskStatistics
impl Unpin for TaskStatistics
impl UnwindSafe for TaskStatistics
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