pub struct NamespaceAdminInfo {
pub name: String,
pub vector_count: u64,
pub dimension: Option<usize>,
pub index_type: String,
pub storage_bytes: u64,
pub document_count: u64,
pub created_at: Option<u64>,
pub updated_at: Option<u64>,
pub index_stats: IndexStats,
}Expand description
Detailed namespace statistics
Fields§
§name: String§vector_count: u64§dimension: Option<usize>§index_type: String§storage_bytes: u64§document_count: u64§created_at: Option<u64>§updated_at: Option<u64>§index_stats: IndexStatsTrait Implementations§
Source§impl Clone for NamespaceAdminInfo
impl Clone for NamespaceAdminInfo
Source§fn clone(&self) -> NamespaceAdminInfo
fn clone(&self) -> NamespaceAdminInfo
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 NamespaceAdminInfo
impl Debug for NamespaceAdminInfo
Source§impl<'de> Deserialize<'de> for NamespaceAdminInfo
impl<'de> Deserialize<'de> for NamespaceAdminInfo
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 NamespaceAdminInfo
impl RefUnwindSafe for NamespaceAdminInfo
impl Send for NamespaceAdminInfo
impl Sync for NamespaceAdminInfo
impl Unpin for NamespaceAdminInfo
impl UnsafeUnpin for NamespaceAdminInfo
impl UnwindSafe for NamespaceAdminInfo
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