pub struct RecallResult {
pub knowledge: Vec<Value>,
pub sparks: Vec<Value>,
pub trace_id: String,
pub empty: bool,
pub depth_skipped: Vec<String>,
pub skipped_reasons: HashMap<String, String>,
}Fields§
§knowledge: Vec<Value>§sparks: Vec<Value>§trace_id: String§empty: bool§depth_skipped: Vec<String>§skipped_reasons: HashMap<String, String>Trait Implementations§
Source§impl Clone for RecallResult
impl Clone for RecallResult
Source§fn clone(&self) -> RecallResult
fn clone(&self) -> RecallResult
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 RecallResult
impl Debug for RecallResult
Source§impl Default for RecallResult
impl Default for RecallResult
Source§fn default() -> RecallResult
fn default() -> RecallResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RecallResult
impl RefUnwindSafe for RecallResult
impl Send for RecallResult
impl Sync for RecallResult
impl Unpin for RecallResult
impl UnsafeUnpin for RecallResult
impl UnwindSafe for RecallResult
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