Enum elasticsearch_dsl::search::highlight::Fragmenter
source · [−]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
sourceimpl Clone for Fragmenter
impl Clone for Fragmenter
sourcefn clone(&self) -> Fragmenter
fn clone(&self) -> Fragmenter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Fragmenter
impl Debug for Fragmenter
sourceimpl Ord for Fragmenter
impl Ord for Fragmenter
sourceimpl PartialEq<Fragmenter> for Fragmenter
impl PartialEq<Fragmenter> for Fragmenter
sourceimpl PartialOrd<Fragmenter> for Fragmenter
impl PartialOrd<Fragmenter> for Fragmenter
sourcefn partial_cmp(&self, other: &Fragmenter) -> Option<Ordering>
fn partial_cmp(&self, other: &Fragmenter) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Serialize for Fragmenter
impl Serialize for Fragmenter
impl Copy for Fragmenter
impl Eq for Fragmenter
impl StructuralEq for Fragmenter
impl StructuralPartialEq for Fragmenter
Auto Trait Implementations
impl RefUnwindSafe for Fragmenter
impl Send for Fragmenter
impl Sync for Fragmenter
impl Unpin for Fragmenter
impl UnwindSafe for Fragmenter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more