pub struct EvidenceRef {
pub source: String,
pub id: String,
pub summary: String,
}Expand description
Reference to evidence that explains why selection picked something.
Lets a planner trace a memory or fact back to its source record without inflating the view itself.
Fields§
§source: StringWhere this evidence came from: “memory”, “knowledge”, “transcript”, “adapter_fact”.
id: StringStable id within that source.
summary: StringOne-line description suitable for inclusion in prompts.
Trait Implementations§
Source§impl Clone for EvidenceRef
impl Clone for EvidenceRef
Source§fn clone(&self) -> EvidenceRef
fn clone(&self) -> EvidenceRef
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 EvidenceRef
impl Debug for EvidenceRef
Source§impl<'de> Deserialize<'de> for EvidenceRef
impl<'de> Deserialize<'de> for EvidenceRef
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
impl Eq for EvidenceRef
Source§impl PartialEq for EvidenceRef
impl PartialEq for EvidenceRef
Source§fn eq(&self, other: &EvidenceRef) -> bool
fn eq(&self, other: &EvidenceRef) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EvidenceRef
impl Serialize for EvidenceRef
impl StructuralPartialEq for EvidenceRef
Auto Trait Implementations§
impl Freeze for EvidenceRef
impl RefUnwindSafe for EvidenceRef
impl Send for EvidenceRef
impl Sync for EvidenceRef
impl Unpin for EvidenceRef
impl UnsafeUnpin for EvidenceRef
impl UnwindSafe for EvidenceRef
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