pub struct TruthInvalidation {
pub invalidated_at: u64,
pub change: String,
pub new_truth: Option<String>,
}Expand description
Details about how a truth was invalidated.
Fields§
§invalidated_at: u64When it was invalidated (unix timestamp).
change: StringWhat change invalidated it.
new_truth: Option<String>What’s true now.
Trait Implementations§
Source§impl Clone for TruthInvalidation
impl Clone for TruthInvalidation
Source§fn clone(&self) -> TruthInvalidation
fn clone(&self) -> TruthInvalidation
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 TruthInvalidation
impl Debug for TruthInvalidation
Source§impl<'de> Deserialize<'de> for TruthInvalidation
impl<'de> Deserialize<'de> for TruthInvalidation
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 TruthInvalidation
impl RefUnwindSafe for TruthInvalidation
impl Send for TruthInvalidation
impl Sync for TruthInvalidation
impl Unpin for TruthInvalidation
impl UnsafeUnpin for TruthInvalidation
impl UnwindSafe for TruthInvalidation
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