Struct aws_sdk_cloudsearch::model::DocumentSuggesterOptions [−][src]
#[non_exhaustive]pub struct DocumentSuggesterOptions {
pub source_field: Option<String>,
pub fuzzy_matching: Option<SuggesterFuzzyMatching>,
pub sort_expression: Option<String>,
}Expand description
Options for a search suggester.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.source_field: Option<String>The name of the index field you want to use for suggestions.
fuzzy_matching: Option<SuggesterFuzzyMatching>The level of fuzziness allowed when suggesting matches for a string: none, low, or high. With none, the specified string is treated as an exact prefix. With low, suggestions must differ from the specified string by no more than one character. With high, suggestions can differ by up to two characters. The default is none.
sort_expression: Option<String>An expression that computes a score for each suggestion to control how they are sorted. The scores are rounded to the nearest
integer, with a floor of 0 and a ceiling of 2^31-1. A document's relevance score is not computed
for suggestions, so sort expressions cannot reference the _score value.
To sort suggestions using a numeric field or existing expression, simply specify
the name of the field or expression. If no expression is configured for the suggester, the
suggestions are sorted with the closest matches listed first.
Implementations
The name of the index field you want to use for suggestions.
The level of fuzziness allowed when suggesting matches for a string: none, low, or high. With none, the specified string is treated as an exact prefix. With low, suggestions must differ from the specified string by no more than one character. With high, suggestions can differ by up to two characters. The default is none.
An expression that computes a score for each suggestion to control how they are sorted. The scores are rounded to the nearest
integer, with a floor of 0 and a ceiling of 2^31-1. A document's relevance score is not computed
for suggestions, so sort expressions cannot reference the _score value.
To sort suggestions using a numeric field or existing expression, simply specify
the name of the field or expression. If no expression is configured for the suggester, the
suggestions are sorted with the closest matches listed first.
Creates a new builder-style object to manufacture DocumentSuggesterOptions
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for DocumentSuggesterOptions
impl Send for DocumentSuggesterOptions
impl Sync for DocumentSuggesterOptions
impl Unpin for DocumentSuggesterOptions
impl UnwindSafe for DocumentSuggesterOptions
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
