pub struct StateAuditCheck {
pub category: &'static str,
pub code: &'static str,
pub status: StateAuditStatus,
pub severity: StateAuditSeverity,
pub subject: String,
pub detail: String,
pub next: Option<String>,
pub source: &'static str,
}Expand description
StateAuditCheck
Stable check row emitted by canic state audit.
Fields§
§category: &'static str§code: &'static str§status: StateAuditStatus§severity: StateAuditSeverity§subject: String§detail: String§next: Option<String>§source: &'static strTrait Implementations§
Source§impl Clone for StateAuditCheck
impl Clone for StateAuditCheck
Source§fn clone(&self) -> StateAuditCheck
fn clone(&self) -> StateAuditCheck
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StateAuditCheck
impl Debug for StateAuditCheck
impl Eq for StateAuditCheck
Source§impl PartialEq for StateAuditCheck
impl PartialEq for StateAuditCheck
Source§fn eq(&self, other: &StateAuditCheck) -> bool
fn eq(&self, other: &StateAuditCheck) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StateAuditCheck
impl Serialize for StateAuditCheck
impl StructuralPartialEq for StateAuditCheck
Auto Trait Implementations§
impl Freeze for StateAuditCheck
impl RefUnwindSafe for StateAuditCheck
impl Send for StateAuditCheck
impl Sync for StateAuditCheck
impl Unpin for StateAuditCheck
impl UnsafeUnpin for StateAuditCheck
impl UnwindSafe for StateAuditCheck
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.