pub struct MemoryTypeStatsResponse {
pub total: u64,
pub working: u64,
pub episodic: u64,
pub semantic: u64,
pub procedural: u64,
pub agent_namespaces: u64,
}Expand description
Per-type memory statistics from GET /admin/memory-type-stats.
Fields§
§total: u64Total number of memories.
working: u64Working memory count.
episodic: u64Episodic memory count.
semantic: u64Semantic memory count.
procedural: u64Procedural memory count.
agent_namespaces: u64Number of distinct agent namespaces.
Trait Implementations§
Source§impl Clone for MemoryTypeStatsResponse
impl Clone for MemoryTypeStatsResponse
Source§fn clone(&self) -> MemoryTypeStatsResponse
fn clone(&self) -> MemoryTypeStatsResponse
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 MemoryTypeStatsResponse
impl Debug for MemoryTypeStatsResponse
Source§impl<'de> Deserialize<'de> for MemoryTypeStatsResponse
impl<'de> Deserialize<'de> for MemoryTypeStatsResponse
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 MemoryTypeStatsResponse
impl RefUnwindSafe for MemoryTypeStatsResponse
impl Send for MemoryTypeStatsResponse
impl Sync for MemoryTypeStatsResponse
impl Unpin for MemoryTypeStatsResponse
impl UnsafeUnpin for MemoryTypeStatsResponse
impl UnwindSafe for MemoryTypeStatsResponse
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