pub enum SoftFallbackBranch {
Vector,
Text,
}Expand description
Which retrieval branch could not contribute to a hybrid search.
Vector means the vector branch could not contribute; Text means the
text branch could not contribute. Owned by dev/design/retrieval.md;
the 0.6.0 enum is exactly these two members.
Variants§
Trait Implementations§
Source§impl Clone for SoftFallbackBranch
impl Clone for SoftFallbackBranch
Source§fn clone(&self) -> SoftFallbackBranch
fn clone(&self) -> SoftFallbackBranch
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 SoftFallbackBranch
impl Debug for SoftFallbackBranch
Source§impl PartialEq for SoftFallbackBranch
impl PartialEq for SoftFallbackBranch
Source§fn eq(&self, other: &SoftFallbackBranch) -> bool
fn eq(&self, other: &SoftFallbackBranch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SoftFallbackBranch
impl Eq for SoftFallbackBranch
impl StructuralPartialEq for SoftFallbackBranch
Auto Trait Implementations§
impl Freeze for SoftFallbackBranch
impl RefUnwindSafe for SoftFallbackBranch
impl Send for SoftFallbackBranch
impl Sync for SoftFallbackBranch
impl Unpin for SoftFallbackBranch
impl UnsafeUnpin for SoftFallbackBranch
impl UnwindSafe for SoftFallbackBranch
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