pub struct NoteLine {Show 15 fields
pub id: String,
pub ts: String,
pub area_id: String,
pub area: Option<String>,
pub kind: String,
pub severity: Option<String>,
pub title: Option<String>,
pub file: Option<String>,
pub line: Option<u64>,
pub line_end: Option<u64>,
pub claim: Option<String>,
pub evidence: Option<String>,
pub status: String,
pub source: Option<String>,
pub supersedes: Option<String>,
}Expand description
Parsed notes.jsonl line (Phase A fields optional).
Fields§
§id: String§ts: String§area_id: String§area: Option<String>§kind: String§severity: Option<String>§title: Option<String>§file: Option<String>§line: Option<u64>§line_end: Option<u64>§claim: Option<String>§evidence: Option<String>§status: String§source: Option<String>§supersedes: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for NoteLine
impl<'de> Deserialize<'de> for NoteLine
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 NoteLine
impl RefUnwindSafe for NoteLine
impl Send for NoteLine
impl Sync for NoteLine
impl Unpin for NoteLine
impl UnsafeUnpin for NoteLine
impl UnwindSafe for NoteLine
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