pub struct Problem {
pub statement: Option<String>,
pub observations: Vec<String>,
pub gaps: Vec<String>,
pub insights: Vec<String>,
}Expand description
Problem framing, parsed from logic/problem.md.
Fields§
§statement: Option<String>Intro prose before the first ## section.
observations: Vec<String>O# observation items, full text including the id, in source order.
gaps: Vec<String>G# gap items, full text including the id, in source order.
insights: Vec<String>Key-insight / I# items, in source order.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Problem
impl<'de> Deserialize<'de> for Problem
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
impl StructuralPartialEq for Problem
Auto Trait Implementations§
impl Freeze for Problem
impl RefUnwindSafe for Problem
impl Send for Problem
impl Sync for Problem
impl Unpin for Problem
impl UnsafeUnpin for Problem
impl UnwindSafe for Problem
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