pub struct DagDbSelectedContextRef {
pub memory_id: String,
pub catalog_id: Option<String>,
pub title: SafeMetadata,
pub summary: SafeMetadata,
pub catalog_path: Vec<String>,
pub document_type: String,
pub selection_reason: String,
pub token_estimate: u32,
pub validation_status: ValidationStatus,
pub citation_ref: String,
pub boundary_flags: Vec<String>,
}Expand description
Selected memory reference returned by graph context selection.
Fields§
§memory_id: String§catalog_id: Option<String>§title: SafeMetadata§summary: SafeMetadata§catalog_path: Vec<String>§document_type: String§selection_reason: String§token_estimate: u32§validation_status: ValidationStatus§citation_ref: String§boundary_flags: Vec<String>Trait Implementations§
Source§impl Clone for DagDbSelectedContextRef
impl Clone for DagDbSelectedContextRef
Source§fn clone(&self) -> DagDbSelectedContextRef
fn clone(&self) -> DagDbSelectedContextRef
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 DagDbSelectedContextRef
impl Debug for DagDbSelectedContextRef
Source§impl<'de> Deserialize<'de> for DagDbSelectedContextRef
impl<'de> Deserialize<'de> for DagDbSelectedContextRef
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 DagDbSelectedContextRef
Source§impl PartialEq for DagDbSelectedContextRef
impl PartialEq for DagDbSelectedContextRef
Source§fn eq(&self, other: &DagDbSelectedContextRef) -> bool
fn eq(&self, other: &DagDbSelectedContextRef) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DagDbSelectedContextRef
impl Serialize for DagDbSelectedContextRef
impl StructuralPartialEq for DagDbSelectedContextRef
Auto Trait Implementations§
impl Freeze for DagDbSelectedContextRef
impl RefUnwindSafe for DagDbSelectedContextRef
impl Send for DagDbSelectedContextRef
impl Sync for DagDbSelectedContextRef
impl Unpin for DagDbSelectedContextRef
impl UnsafeUnpin for DagDbSelectedContextRef
impl UnwindSafe for DagDbSelectedContextRef
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