pub enum TextSearchAlgorithm {
Exhaustive,
Wand,
BlockMaxWand,
}Expand description
Algorithm that actually produced a text-search result.
Variants§
Trait Implementations§
Source§impl Clone for TextSearchAlgorithm
impl Clone for TextSearchAlgorithm
Source§fn clone(&self) -> TextSearchAlgorithm
fn clone(&self) -> TextSearchAlgorithm
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 TextSearchAlgorithm
Source§impl Debug for TextSearchAlgorithm
impl Debug for TextSearchAlgorithm
impl Eq for TextSearchAlgorithm
Source§impl PartialEq for TextSearchAlgorithm
impl PartialEq for TextSearchAlgorithm
impl StructuralPartialEq for TextSearchAlgorithm
Auto Trait Implementations§
impl Freeze for TextSearchAlgorithm
impl RefUnwindSafe for TextSearchAlgorithm
impl Send for TextSearchAlgorithm
impl Sync for TextSearchAlgorithm
impl Unpin for TextSearchAlgorithm
impl UnsafeUnpin for TextSearchAlgorithm
impl UnwindSafe for TextSearchAlgorithm
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