pub enum Fragmenter {
Simple,
Span,
}
Expand description
Specifies how text should be broken up in highlight snippets.
Variants§
Simple
Breaks up text into same-sized fragments.
Span
Breaks up text into same-sized fragments, but tries to avoid breaking up text between highlighted terms. This is helpful when you’re querying for phrases. Default.
Trait Implementations§
Source§impl Clone for Fragmenter
impl Clone for Fragmenter
Source§fn clone(&self) -> Fragmenter
fn clone(&self) -> Fragmenter
Returns a copy 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 moreSource§impl Debug for Fragmenter
impl Debug for Fragmenter
Source§impl Ord for Fragmenter
impl Ord for Fragmenter
Source§fn cmp(&self, other: &Fragmenter) -> Ordering
fn cmp(&self, other: &Fragmenter) -> Ordering
1.21.0 · 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 Fragmenter
impl PartialEq for Fragmenter
Source§impl PartialOrd for Fragmenter
impl PartialOrd for Fragmenter
Source§impl Serialize for Fragmenter
impl Serialize for Fragmenter
impl Copy for Fragmenter
impl Eq for Fragmenter
impl StructuralPartialEq for Fragmenter
Auto Trait Implementations§
impl Freeze for Fragmenter
impl RefUnwindSafe for Fragmenter
impl Send for Fragmenter
impl Sync for Fragmenter
impl Unpin for Fragmenter
impl UnwindSafe for Fragmenter
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