pub struct StoreStats {
pub records: u64,
pub chunks: u64,
pub jobs_pending: u64,
pub jobs_failed: u64,
pub sources: u64,
}Expand description
Coarse counters for anamnesis status.
Fields§
§records: u64Records in records table.
chunks: u64Chunks in record_chunks.
jobs_pending: u64Pending or in-progress embedding jobs.
jobs_failed: u64Failed embedding jobs (terminal state).
sources: u64Distinct (adapter, instance) source rows.
Trait Implementations§
Source§impl Clone for StoreStats
impl Clone for StoreStats
Source§fn clone(&self) -> StoreStats
fn clone(&self) -> StoreStats
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 StoreStats
impl Debug for StoreStats
Source§impl PartialEq for StoreStats
impl PartialEq for StoreStats
Source§fn eq(&self, other: &StoreStats) -> bool
fn eq(&self, other: &StoreStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StoreStats
impl StructuralPartialEq for StoreStats
Auto Trait Implementations§
impl Freeze for StoreStats
impl RefUnwindSafe for StoreStats
impl Send for StoreStats
impl Sync for StoreStats
impl Unpin for StoreStats
impl UnsafeUnpin for StoreStats
impl UnwindSafe for StoreStats
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.