pub struct Narrative {
pub headline: Option<String>,
pub summary: Option<String>,
pub review: Option<String>,
}Expand description
Structured narrative for the session summary.
Fields§
§headline: Option<String>One-line headline: “Verifier refactor completed.”
summary: Option<String>Multi-sentence summary of what happened.
review: Option<String>What should be reviewed before trusting the output.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Narrative
impl<'de> Deserialize<'de> for Narrative
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 Narrative
impl RefUnwindSafe for Narrative
impl Send for Narrative
impl Sync for Narrative
impl Unpin for Narrative
impl UnsafeUnpin for Narrative
impl UnwindSafe for Narrative
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