pub struct IndexStatsResponse {
pub namespaces: HashMap<String, IndexStats>,
pub total_indexed_vectors: u64,
pub total_size_bytes: u64,
}Expand description
Index statistics for all namespaces
Fields§
§namespaces: HashMap<String, IndexStats>§total_indexed_vectors: u64§total_size_bytes: u64Trait Implementations§
Source§impl Clone for IndexStatsResponse
impl Clone for IndexStatsResponse
Source§fn clone(&self) -> IndexStatsResponse
fn clone(&self) -> IndexStatsResponse
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 IndexStatsResponse
impl Debug for IndexStatsResponse
Source§impl<'de> Deserialize<'de> for IndexStatsResponse
impl<'de> Deserialize<'de> for IndexStatsResponse
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 IndexStatsResponse
impl RefUnwindSafe for IndexStatsResponse
impl Send for IndexStatsResponse
impl Sync for IndexStatsResponse
impl Unpin for IndexStatsResponse
impl UnsafeUnpin for IndexStatsResponse
impl UnwindSafe for IndexStatsResponse
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