pub struct VectorStats {
pub count: usize,
pub dimensions: usize,
pub metric: String,
pub memory_bytes: usize,
}Expand description
Statistics about the vector index.
Fields§
§count: usize§dimensions: usize§metric: String§memory_bytes: usizeTrait 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
Source§impl<'de> Deserialize<'de> for VectorStats
impl<'de> Deserialize<'de> for VectorStats
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 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