pub struct ParsedObservation {
pub obs_type: String,
pub title: Option<String>,
pub subtitle: Option<String>,
pub facts: Vec<String>,
pub narrative: Option<String>,
pub concepts: Vec<String>,
pub files_read: Vec<String>,
pub files_modified: Vec<String>,
pub confidence: Option<f64>,
}Fields§
§obs_type: String§title: Option<String>§subtitle: Option<String>§facts: Vec<String>§narrative: Option<String>§concepts: Vec<String>§files_read: Vec<String>§files_modified: Vec<String>§confidence: Option<f64>Model-provided confidence clamped to [0.0, 1.0]; None when missing or unparseable.
Trait Implementations§
Source§impl Clone for ParsedObservation
impl Clone for ParsedObservation
Source§fn clone(&self) -> ParsedObservation
fn clone(&self) -> ParsedObservation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ParsedObservation
impl Debug for ParsedObservation
Source§impl PartialEq for ParsedObservation
impl PartialEq for ParsedObservation
impl StructuralPartialEq for ParsedObservation
Auto Trait Implementations§
impl Freeze for ParsedObservation
impl RefUnwindSafe for ParsedObservation
impl Send for ParsedObservation
impl Sync for ParsedObservation
impl Unpin for ParsedObservation
impl UnsafeUnpin for ParsedObservation
impl UnwindSafe for ParsedObservation
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more