pub struct HealthFlagRecord {
pub ts: DateTime<Utc>,
pub node_id: String,
pub step: usize,
pub flag: String,
pub detail: String,
}Expand description
One HealthFlag event with its wall time.
Fields§
§ts: DateTime<Utc>Wall time the flag was raised.
node_id: StringNode the flag fired on — hierarchical (node/module.path) when it
came from an intra-node audit hook.
step: usizeTraining step at which the flag fired.
flag: StringFlag family name, as emitted by the audit.
detail: StringHuman-readable description of what was detected.
Trait Implementations§
Source§impl Clone for HealthFlagRecord
impl Clone for HealthFlagRecord
Source§fn clone(&self) -> HealthFlagRecord
fn clone(&self) -> HealthFlagRecord
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 HealthFlagRecord
impl Debug for HealthFlagRecord
Source§impl<'de> Deserialize<'de> for HealthFlagRecord
impl<'de> Deserialize<'de> for HealthFlagRecord
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 HealthFlagRecord
impl RefUnwindSafe for HealthFlagRecord
impl Send for HealthFlagRecord
impl Sync for HealthFlagRecord
impl Unpin for HealthFlagRecord
impl UnsafeUnpin for HealthFlagRecord
impl UnwindSafe for HealthFlagRecord
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