Enum elasticsearch_dsl::search::highlight::FvhBoundaryScanner [−][src]
Expand description
Specifies how to break the highlighted fragments. Defaults to
sentence.
Variants
Use the characters specified by boundary_chars as highlighting boundaries. The
boundary_max_scan setting controls how far to scan for boundary characters.
Break highlighted fragments at the next sentence boundary, as determined by Java’s
BreakIterator.
You can specify the locale to use with boundary_scanner_locale.
Break highlighted fragments at the next word boundary, as determined by Java’s
BreakIterator.
You can specify the locale to use with boundary_scanner_locale.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for FvhBoundaryScanner
impl Send for FvhBoundaryScanner
impl Sync for FvhBoundaryScanner
impl Unpin for FvhBoundaryScanner
impl UnwindSafe for FvhBoundaryScanner
Blanket Implementations
Mutably borrows from an owned value. Read more