pub struct IncludedFact {
pub source_note_id: Id,
pub summary: FactSummary,
}Expand description
Included fact used by the daily update workflow; it packages operational changes into reviewable staff updates instead of free-form agent output.
Fields§
§source_note_id: IdSource note id copied from reviewed source input for audit, reviewer explanation, or agent context; callers must not invent or mutate it.
summary: FactSummarySummary copied from reviewed source input for audit, reviewer explanation, or agent context; callers must not invent or mutate it.
Trait Implementations§
Source§impl Clone for IncludedFact
impl Clone for IncludedFact
Source§fn clone(&self) -> IncludedFact
fn clone(&self) -> IncludedFact
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 IncludedFact
impl Debug for IncludedFact
Source§impl<'de> Deserialize<'de> for IncludedFact
impl<'de> Deserialize<'de> for IncludedFact
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
Source§impl PartialEq for IncludedFact
impl PartialEq for IncludedFact
Source§impl Serialize for IncludedFact
impl Serialize for IncludedFact
impl Eq for IncludedFact
impl StructuralPartialEq for IncludedFact
Auto Trait Implementations§
impl Freeze for IncludedFact
impl RefUnwindSafe for IncludedFact
impl Send for IncludedFact
impl Sync for IncludedFact
impl Unpin for IncludedFact
impl UnsafeUnpin for IncludedFact
impl UnwindSafe for IncludedFact
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