Struct elastic::types::string::prelude::FieldDataFrequencyFilter [] [src]

pub struct FieldDataFrequencyFilter {
    pub min: Option<f32>,
    pub max: Option<f32>,
    pub min_segment_size: Option<i32>,
}

Fielddata for term frequency as a percentage range.

Fields

The min frequency percentage.

The max frequency percentage.

The minimum number of docs a segment should contain.

Trait Implementations

impl Copy for FieldDataFrequencyFilter
[src]

impl PartialEq<FieldDataFrequencyFilter> for FieldDataFrequencyFilter
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Clone for FieldDataFrequencyFilter
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for FieldDataFrequencyFilter
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for FieldDataFrequencyFilter
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for FieldDataFrequencyFilter
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations