pub struct ComplianceHistoryRow {
pub id: i64,
pub timestamp: String,
pub compliant: i64,
pub warning: i64,
pub violation: i64,
}Expand description
A compliance snapshot summary row from the state store.
Fields§
§id: i64§timestamp: String§compliant: i64§warning: i64§violation: i64Trait Implementations§
Source§impl Clone for ComplianceHistoryRow
impl Clone for ComplianceHistoryRow
Source§fn clone(&self) -> ComplianceHistoryRow
fn clone(&self) -> ComplianceHistoryRow
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 ComplianceHistoryRow
impl Debug for ComplianceHistoryRow
Auto Trait Implementations§
impl Freeze for ComplianceHistoryRow
impl RefUnwindSafe for ComplianceHistoryRow
impl Send for ComplianceHistoryRow
impl Sync for ComplianceHistoryRow
impl Unpin for ComplianceHistoryRow
impl UnsafeUnpin for ComplianceHistoryRow
impl UnwindSafe for ComplianceHistoryRow
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