pub struct CollectionInfo {
pub name: String,
pub dimension: usize,
pub metric: String,
pub vector_count: usize,
pub document_count: usize,
pub created_at: String,
pub updated_at: String,
pub indexing_status: IndexingStatus,
}
Expand description
Collection information
Fields§
§name: String
Collection name
dimension: usize
Vector dimension
metric: String
Similarity metric used for search
vector_count: usize
Number of vectors in the collection
document_count: usize
Number of documents in the collection
created_at: String
Creation timestamp
updated_at: String
Last update timestamp
indexing_status: IndexingStatus
Indexing status
Trait Implementations§
Source§impl Clone for CollectionInfo
impl Clone for CollectionInfo
Source§fn clone(&self) -> CollectionInfo
fn clone(&self) -> CollectionInfo
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 CollectionInfo
impl Debug for CollectionInfo
Source§impl<'de> Deserialize<'de> for CollectionInfo
impl<'de> Deserialize<'de> for CollectionInfo
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 CollectionInfo
impl RefUnwindSafe for CollectionInfo
impl Send for CollectionInfo
impl Sync for CollectionInfo
impl Unpin for CollectionInfo
impl UnwindSafe for CollectionInfo
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