pub struct SymbolicAnswer {
pub intent: String,
pub answer: String,
pub confidence: f32,
pub evidence_links: Vec<String>,
pub thinking_steps: Vec<ThinkingStep>,
pub links_notation: String,
pub execution_recipe: Option<Box<ExecutionRecipe>>,
}Fields§
§intent: String§answer: String§confidence: f32§evidence_links: Vec<String>§thinking_steps: Vec<ThinkingStep>§links_notation: String§execution_recipe: Option<Box<ExecutionRecipe>>Trait Implementations§
Source§impl Clone for SymbolicAnswer
impl Clone for SymbolicAnswer
Source§fn clone(&self) -> SymbolicAnswer
fn clone(&self) -> SymbolicAnswer
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 SymbolicAnswer
impl Debug for SymbolicAnswer
Source§impl<'de> Deserialize<'de> for SymbolicAnswer
impl<'de> Deserialize<'de> for SymbolicAnswer
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
Source§impl PartialEq for SymbolicAnswer
impl PartialEq for SymbolicAnswer
Source§impl Serialize for SymbolicAnswer
impl Serialize for SymbolicAnswer
impl StructuralPartialEq for SymbolicAnswer
Auto Trait Implementations§
impl Freeze for SymbolicAnswer
impl RefUnwindSafe for SymbolicAnswer
impl Send for SymbolicAnswer
impl Sync for SymbolicAnswer
impl Unpin for SymbolicAnswer
impl UnsafeUnpin for SymbolicAnswer
impl UnwindSafe for SymbolicAnswer
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