pub struct MemoryQuery {
pub tenant_id: Option<String>,
pub scope: Option<String>,
pub memory_type: Option<MemoryType>,
pub status: Option<MemoryStatus>,
pub source_agent: Option<AgentId>,
pub min_confidence: Option<f64>,
}Expand description
Filter for querying memories.
Fields§
§tenant_id: Option<String>§scope: Option<String>§memory_type: Option<MemoryType>§status: Option<MemoryStatus>§source_agent: Option<AgentId>§min_confidence: Option<f64>Trait Implementations§
Source§impl Debug for MemoryQuery
impl Debug for MemoryQuery
Source§impl Default for MemoryQuery
impl Default for MemoryQuery
Source§fn default() -> MemoryQuery
fn default() -> MemoryQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MemoryQuery
impl RefUnwindSafe for MemoryQuery
impl Send for MemoryQuery
impl Sync for MemoryQuery
impl Unpin for MemoryQuery
impl UnsafeUnpin for MemoryQuery
impl UnwindSafe for MemoryQuery
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