pub struct AskMemoryQuery {
pub about: String,
pub question: String,
pub answer_policy: MemoryAnswerPolicy,
pub dimensions: DimensionSelection,
pub token_budget: u32,
pub depth: u32,
pub max_tier: Option<ResolutionTier>,
pub max_entries: Option<usize>,
}Fields§
§about: String§question: String§answer_policy: MemoryAnswerPolicy§dimensions: DimensionSelection§token_budget: u32§depth: u32§max_tier: Option<ResolutionTier>§max_entries: Option<usize>Cap on answer evidence entries after relevance filtering.
Trait Implementations§
Source§impl Clone for AskMemoryQuery
impl Clone for AskMemoryQuery
Source§fn clone(&self) -> AskMemoryQuery
fn clone(&self) -> AskMemoryQuery
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 AskMemoryQuery
impl Debug for AskMemoryQuery
impl Eq for AskMemoryQuery
Source§impl PartialEq for AskMemoryQuery
impl PartialEq for AskMemoryQuery
impl StructuralPartialEq for AskMemoryQuery
Auto Trait Implementations§
impl Freeze for AskMemoryQuery
impl RefUnwindSafe for AskMemoryQuery
impl Send for AskMemoryQuery
impl Sync for AskMemoryQuery
impl Unpin for AskMemoryQuery
impl UnsafeUnpin for AskMemoryQuery
impl UnwindSafe for AskMemoryQuery
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