pub struct SanityCheckStatus {
pub status: Health,
pub last_run: Option<DateTime<Utc>>,
}Expand description
Sanity check status information.
Fields§
§status: HealthHealth status of the sanity check.
last_run: Option<DateTime<Utc>>When the sanity check was last run.
Trait Implementations§
Source§impl Clone for SanityCheckStatus
impl Clone for SanityCheckStatus
Source§fn clone(&self) -> SanityCheckStatus
fn clone(&self) -> SanityCheckStatus
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 SanityCheckStatus
impl Debug for SanityCheckStatus
Source§impl<'de> Deserialize<'de> for SanityCheckStatus
impl<'de> Deserialize<'de> for SanityCheckStatus
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
Auto Trait Implementations§
impl Freeze for SanityCheckStatus
impl RefUnwindSafe for SanityCheckStatus
impl Send for SanityCheckStatus
impl Sync for SanityCheckStatus
impl Unpin for SanityCheckStatus
impl UnsafeUnpin for SanityCheckStatus
impl UnwindSafe for SanityCheckStatus
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