pub struct ValidationEvent {
pub event: String,
pub date: i64,
pub source: Option<String>,
}Expand description
A dated validation (or falsification) event.
Fields§
§event: StringWhat validated the claim (e.g. “Anthropic Claude Memory, Apr 23 2026”).
date: i64Epoch day (days since Unix epoch) of the validation event.
source: Option<String>Optional source URL / identifier.
Trait Implementations§
Source§impl Clone for ValidationEvent
impl Clone for ValidationEvent
Source§fn clone(&self) -> ValidationEvent
fn clone(&self) -> ValidationEvent
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 ValidationEvent
impl Debug for ValidationEvent
Source§impl<'de> Deserialize<'de> for ValidationEvent
impl<'de> Deserialize<'de> for ValidationEvent
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 ValidationEvent
impl RefUnwindSafe for ValidationEvent
impl Send for ValidationEvent
impl Sync for ValidationEvent
impl Unpin for ValidationEvent
impl UnsafeUnpin for ValidationEvent
impl UnwindSafe for ValidationEvent
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