pub struct VectorCollectionInfo {
pub name: String,
pub count: usize,
}Expand description
Slim info struct returned by Client::list_vector_collections.
Fields§
§name: StringCollection name.
count: usizeNumber of vectors in the collection.
Trait Implementations§
Source§impl Clone for VectorCollectionInfo
impl Clone for VectorCollectionInfo
Source§fn clone(&self) -> VectorCollectionInfo
fn clone(&self) -> VectorCollectionInfo
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 moreAuto Trait Implementations§
impl Freeze for VectorCollectionInfo
impl RefUnwindSafe for VectorCollectionInfo
impl Send for VectorCollectionInfo
impl Sync for VectorCollectionInfo
impl Unpin for VectorCollectionInfo
impl UnsafeUnpin for VectorCollectionInfo
impl UnwindSafe for VectorCollectionInfo
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