pub struct IndexStatistics {
pub vector_count: u64,
pub dimension: usize,
pub memory_bytes: u64,
pub build_time_ms: Option<u64>,
pub last_updated: Option<u64>,
}Expand description
Index statistics
Fields§
§vector_count: u64Total vectors in index
dimension: usizeVector dimension
memory_bytes: u64Index memory usage (estimated)
build_time_ms: Option<u64>Index build time (if available)
last_updated: Option<u64>Last updated timestamp
Trait Implementations§
Source§impl Clone for IndexStatistics
impl Clone for IndexStatistics
Source§fn clone(&self) -> IndexStatistics
fn clone(&self) -> IndexStatistics
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 IndexStatistics
impl Debug for IndexStatistics
Source§impl<'de> Deserialize<'de> for IndexStatistics
impl<'de> Deserialize<'de> for IndexStatistics
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 IndexStatistics
impl RefUnwindSafe for IndexStatistics
impl Send for IndexStatistics
impl Sync for IndexStatistics
impl Unpin for IndexStatistics
impl UnsafeUnpin for IndexStatistics
impl UnwindSafe for IndexStatistics
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