pub struct RecallQueryRequest {
pub header: Option<CMPHeader>,
pub cue: RecallCue,
pub stores: Option<Vec<StoreType>>,
pub limit: u32,
pub min_fidelity: Option<f64>,
pub include_decayed: bool,
pub reconsolidate: bool,
pub activation_depth: u32,
pub recall_mode: RecallMode,
}Expand description
recall.query request (CMP Spec §4.1).
Fields§
§header: Option<CMPHeader>§cue: RecallCue§stores: Option<Vec<StoreType>>§limit: u32§min_fidelity: Option<f64>§include_decayed: bool§reconsolidate: bool§activation_depth: u32§recall_mode: RecallModeTrait Implementations§
Source§impl Clone for RecallQueryRequest
impl Clone for RecallQueryRequest
Source§fn clone(&self) -> RecallQueryRequest
fn clone(&self) -> RecallQueryRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 RecallQueryRequest
impl Debug for RecallQueryRequest
Source§impl<'de> Deserialize<'de> for RecallQueryRequest
impl<'de> Deserialize<'de> for RecallQueryRequest
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
Auto Trait Implementations§
impl Freeze for RecallQueryRequest
impl RefUnwindSafe for RecallQueryRequest
impl Send for RecallQueryRequest
impl Sync for RecallQueryRequest
impl Unpin for RecallQueryRequest
impl UnsafeUnpin for RecallQueryRequest
impl UnwindSafe for RecallQueryRequest
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