Struct google_admin1_directory::SchemaFieldSpecNumericIndexingSpec [] [src]

pub struct SchemaFieldSpecNumericIndexingSpec {
    pub max_value: Option<f64>,
    pub min_value: Option<f64>,
}

Indexing spec for a numeric field. By default, only exact match queries will be supported for numeric fields. Setting the numericIndexingSpec allows range queries to be supported.

This type is not used in any activity, and only used as part of another schema.

Fields

Maximum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.

Minimum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.

Trait Implementations

impl Default for SchemaFieldSpecNumericIndexingSpec
[src]

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

impl Clone for SchemaFieldSpecNumericIndexingSpec
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SchemaFieldSpecNumericIndexingSpec
[src]

Formats the value using the given formatter.

impl NestedType for SchemaFieldSpecNumericIndexingSpec
[src]

impl Part for SchemaFieldSpecNumericIndexingSpec
[src]