pub struct VectorStats {
pub store_count: u32,
pub vector_count: u64,
pub total_dimensions: u32,
pub memory_bytes: u64,
pub reads: u64,
pub writes: u64,
}Expand description
Vector store statistics.
Fields§
§store_count: u32Number of vector stores.
vector_count: u64Total vectors stored.
total_dimensions: u32Total dimensions across all stores.
memory_bytes: u64Total memory used by vectors in bytes.
reads: u64Total vector reads.
writes: u64Total vector writes.
Trait Implementations§
Source§impl Clone for VectorStats
impl Clone for VectorStats
Source§fn clone(&self) -> VectorStats
fn clone(&self) -> VectorStats
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 VectorStats
impl Debug for VectorStats
Source§impl Default for VectorStats
impl Default for VectorStats
Source§fn default() -> VectorStats
fn default() -> VectorStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VectorStats
impl RefUnwindSafe for VectorStats
impl Send for VectorStats
impl Sync for VectorStats
impl Unpin for VectorStats
impl UnsafeUnpin for VectorStats
impl UnwindSafe for VectorStats
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