pub enum CatalogAcceleratorKind {
Hnsw,
ProductQuantized,
Composite,
}Variants§
Trait Implementations§
Source§impl Clone for CatalogAcceleratorKind
impl Clone for CatalogAcceleratorKind
Source§fn clone(&self) -> CatalogAcceleratorKind
fn clone(&self) -> CatalogAcceleratorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CatalogAcceleratorKind
Source§impl Debug for CatalogAcceleratorKind
impl Debug for CatalogAcceleratorKind
impl Eq for CatalogAcceleratorKind
Source§impl Hash for CatalogAcceleratorKind
impl Hash for CatalogAcceleratorKind
Source§impl Ord for CatalogAcceleratorKind
impl Ord for CatalogAcceleratorKind
Source§fn cmp(&self, other: &CatalogAcceleratorKind) -> Ordering
fn cmp(&self, other: &CatalogAcceleratorKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CatalogAcceleratorKind
impl PartialEq for CatalogAcceleratorKind
Source§impl PartialOrd for CatalogAcceleratorKind
impl PartialOrd for CatalogAcceleratorKind
impl StructuralPartialEq for CatalogAcceleratorKind
Auto Trait Implementations§
impl Freeze for CatalogAcceleratorKind
impl RefUnwindSafe for CatalogAcceleratorKind
impl Send for CatalogAcceleratorKind
impl Sync for CatalogAcceleratorKind
impl Unpin for CatalogAcceleratorKind
impl UnsafeUnpin for CatalogAcceleratorKind
impl UnwindSafe for CatalogAcceleratorKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more