pub struct LinearScanStats {
pub num_vectors: usize,
pub dimension: usize,
pub bytes_per_vector: usize,
}Expand description
Statistics about a LinearScan index
Fields§
§num_vectors: usize§dimension: usize§bytes_per_vector: usizeTrait Implementations§
Source§impl Clone for LinearScanStats
impl Clone for LinearScanStats
Source§fn clone(&self) -> LinearScanStats
fn clone(&self) -> LinearScanStats
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 LinearScanStats
impl RefUnwindSafe for LinearScanStats
impl Send for LinearScanStats
impl Sync for LinearScanStats
impl Unpin for LinearScanStats
impl UnsafeUnpin for LinearScanStats
impl UnwindSafe for LinearScanStats
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