pub struct KnowledgeState {
pub known_facts: Vec<KnownFact>,
pub unknown_gaps: Vec<KnowledgeGap>,
pub assumptions: Vec<Assumption>,
pub confidence_score: f32,
pub summary: String,
}Expand description
Complete knowledge state analysis
Fields§
§known_facts: Vec<KnownFact>Facts we know
unknown_gaps: Vec<KnowledgeGap>Gaps in knowledge
assumptions: Vec<Assumption>Assumptions we’re making
confidence_score: f32Overall confidence score (0.0 - 1.0)
summary: StringSummary of knowledge state
Trait Implementations§
Source§impl Clone for KnowledgeState
impl Clone for KnowledgeState
Source§fn clone(&self) -> KnowledgeState
fn clone(&self) -> KnowledgeState
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 KnowledgeState
impl Debug for KnowledgeState
Source§impl<'de> Deserialize<'de> for KnowledgeState
impl<'de> Deserialize<'de> for KnowledgeState
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 KnowledgeState
impl RefUnwindSafe for KnowledgeState
impl Send for KnowledgeState
impl Sync for KnowledgeState
impl Unpin for KnowledgeState
impl UnwindSafe for KnowledgeState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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