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§
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§fn eq(&self, other: &Fragmenter) -> bool
fn eq(&self, other: &Fragmenter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for Fragmenter
impl PartialOrd for Fragmenter
source§fn partial_cmp(&self, other: &Fragmenter) -> Option<Ordering>
fn partial_cmp(&self, other: &Fragmenter) -> Option<Ordering>
1.0.0 · source§fn 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 moresource§impl 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§
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