[][src]Struct elastic::types::prelude::DefaultStringMapping

pub struct DefaultStringMapping;

Default mapping for String.

Trait Implementations

impl Clone for DefaultStringMapping[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl TextMapping for DefaultStringMapping[src]

fn analyzer() -> Option<&'static str>[src]

The analyzer which should be used for analyzed string fields, both at index-time and at search-time (unless overridden by the search_analyzer). Defaults to the default index analyzer, or the standard analyzer. Read more

fn boost() -> Option<f32>[src]

Field-level index time boosting. Accepts a floating point number, defaults to 1.0.

fn eager_global_ordinals() -> Option<bool>[src]

Should global ordinals be loaded eagerly on refresh? Accepts true or false (default). Enabling this is a good idea on fields that are frequently used for (significant) terms aggregations. Read more

fn fielddata() -> Option<bool>[src]

Can the field use in-memory fielddata for sorting, aggregations, or scripting? Accepts true or false (default). Read more

fn fielddata_frequency_filter() -> Option<FieldDataFrequencyFilter>[src]

Expert settings which allow to decide which values to load in memory when fielddata is enabled. By default all values are loaded. Read more

fn include_in_all() -> Option<bool>[src]

Whether or not the field value should be included in the _all field? Accepts true or false. Defaults to false if index is set to no, or if a parent object field sets include_in_all to false. Otherwise defaults to true. Read more

fn ignore_above() -> Option<u32>[src]

The maximum number of characters to index. Any characters over this length will be ignored. Read more

fn index() -> Option<bool>[src]

Should the field be searchable? Accepts true (default) or false.

fn index_options() -> Option<IndexOptions>[src]

What information should be stored in the index, for search and highlighting purposes. Defaults to Positions.

fn norms() -> Option<bool>[src]

Whether field-length should be taken into account when scoring queries. Accepts true (default) or false.

fn position_increment_gap() -> Option<u32>[src]

The number of fake term position which should be inserted between each element of an array of strings. Defaults to the position_increment_gap configured on the analyzer which defaults to 100. 100 was chosen because it prevents phrase queries with reasonably large slops (less than 100) from matching terms across field values. Read more

fn store() -> Option<bool>[src]

Whether the field value should be stored and retrievable separately from the _source field. Accepts true or false (default). Read more

fn search_analyzer() -> Option<&'static str>[src]

The analyzer that should be used at search time on analyzed fields. Defaults to the analyzer setting. Read more

fn search_quote_analyzer() -> Option<&'static str>[src]

The analyzer that should be used at search time when a phrase is encountered. Defaults to the search_analyzer setting. Read more

fn similarity() -> Option<&'static str>[src]

Which scoring algorithm or similarity should be used. Defaults to "classic", which uses TF/IDF. Read more

fn term_vector() -> Option<TermVector>[src]

Whether term vectors should be stored for an analyzed field. Defaults to No. Read more

impl Default for DefaultStringMapping[src]

impl Copy for DefaultStringMapping[src]

impl TextFieldType<DefaultStringMapping> for String[src]

impl<'a> TextFieldType<DefaultStringMapping> for &'a str[src]

impl PartialEq<DefaultStringMapping> for DefaultStringMapping[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Debug for DefaultStringMapping[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Any + Debug
[src]

fn is<T>() -> bool where
    T: Scalar
[src]

Tests if Self the same as the type T Read more

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 

impl<T> Erased for T

impl<T, U> TryInto for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err