pub struct UnknownFact {
pub fact: String,
pub discovered_at: DateTime<Utc>,
pub impact: String,
pub missed_signals: Vec<String>,
}Expand description
A fact that was NOT known at a given point (discovered later).
Fields§
§fact: StringWhat wasn’t known.
discovered_at: DateTime<Utc>When it became known.
impact: StringImpact of not knowing.
missed_signals: Vec<String>Signals that could have revealed it.
Trait Implementations§
Source§impl Clone for UnknownFact
impl Clone for UnknownFact
Source§fn clone(&self) -> UnknownFact
fn clone(&self) -> UnknownFact
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 UnknownFact
impl Debug for UnknownFact
Source§impl<'de> Deserialize<'de> for UnknownFact
impl<'de> Deserialize<'de> for UnknownFact
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 UnknownFact
impl RefUnwindSafe for UnknownFact
impl Send for UnknownFact
impl Sync for UnknownFact
impl Unpin for UnknownFact
impl UnsafeUnpin for UnknownFact
impl UnwindSafe for UnknownFact
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