pub enum RecallViewConfig {
Head,
ZoomIn,
ZoomOut,
}Expand description
Recall view variant exposed in config.
Maps 1-to-1 to zeph_memory::RecallView.
Variants§
Head
Standard retrieval — no enrichment. Byte-identical to legacy behaviour.
ZoomIn
Adds source-message provenance to each returned fact.
ZoomOut
Expands 1-hop neighbor facts per returned fact.
Trait Implementations§
Source§impl Clone for RecallViewConfig
impl Clone for RecallViewConfig
Source§fn clone(&self) -> RecallViewConfig
fn clone(&self) -> RecallViewConfig
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 RecallViewConfig
impl Debug for RecallViewConfig
Source§impl Default for RecallViewConfig
impl Default for RecallViewConfig
Source§fn default() -> RecallViewConfig
fn default() -> RecallViewConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecallViewConfig
impl<'de> Deserialize<'de> for RecallViewConfig
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 RecallViewConfig
impl PartialEq for RecallViewConfig
Source§fn eq(&self, other: &RecallViewConfig) -> bool
fn eq(&self, other: &RecallViewConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecallViewConfig
impl Serialize for RecallViewConfig
impl Copy for RecallViewConfig
impl Eq for RecallViewConfig
impl StructuralPartialEq for RecallViewConfig
Auto Trait Implementations§
impl Freeze for RecallViewConfig
impl RefUnwindSafe for RecallViewConfig
impl Send for RecallViewConfig
impl Sync for RecallViewConfig
impl Unpin for RecallViewConfig
impl UnsafeUnpin for RecallViewConfig
impl UnwindSafe for RecallViewConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.