pub enum IndexBackend {
BruteForce,
}Expand description
Supported ANN index backends.
Variants§
BruteForce
Exact search via linear scan.
Trait Implementations§
Source§impl Clone for IndexBackend
impl Clone for IndexBackend
Source§fn clone(&self) -> IndexBackend
fn clone(&self) -> IndexBackend
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 moreSource§impl Debug for IndexBackend
impl Debug for IndexBackend
Source§impl Default for IndexBackend
impl Default for IndexBackend
Source§fn default() -> IndexBackend
fn default() -> IndexBackend
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IndexBackend
impl<'de> Deserialize<'de> for IndexBackend
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
impl Eq for IndexBackend
Source§impl PartialEq for IndexBackend
impl PartialEq for IndexBackend
Source§impl Serialize for IndexBackend
impl Serialize for IndexBackend
impl StructuralPartialEq for IndexBackend
Auto Trait Implementations§
impl Freeze for IndexBackend
impl RefUnwindSafe for IndexBackend
impl Send for IndexBackend
impl Sync for IndexBackend
impl Unpin for IndexBackend
impl UnsafeUnpin for IndexBackend
impl UnwindSafe for IndexBackend
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