pub struct Partition<T> { /* private fields */ }Expand description
Partition.
Bears the centroid element type T, but the centroid is not retained
because the database manages centroids.
Implementations§
source§impl<T> Partition<T>
impl<T> Partition<T>
sourcepub fn num_vectors(&self) -> usize
pub fn num_vectors(&self) -> usize
Returns the number of vectors in the partition.
sourcepub fn get_encoded_vector(&self, index: usize) -> Option<&[u32]>
pub fn get_encoded_vector(&self, index: usize) -> Option<&[u32]>
Returns a specified encoded vector.
None if idnex ≥ num_vectors.
sourcepub fn get_vector_id(&self, index: usize) -> Option<&Uuid>
pub fn get_vector_id(&self, index: usize) -> Option<&Uuid>
Returns the ID of a specified vector.
None if index ≥ num_vectors.
Trait Implementations§
Auto Trait Implementations§
impl<T> RefUnwindSafe for Partition<T>where T: RefUnwindSafe,
impl<T> Send for Partition<T>where T: Send,
impl<T> Sync for Partition<T>where T: Sync,
impl<T> Unpin for Partition<T>where T: Unpin,
impl<T> UnwindSafe for Partition<T>where T: UnwindSafe,
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