[][src]Struct google_admin1_directory::SchemaFieldSpecNumericIndexingSpec

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

max_value: Option<f64>

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.

min_value: Option<f64>

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 Clone for SchemaFieldSpecNumericIndexingSpec[src]

impl Debug for SchemaFieldSpecNumericIndexingSpec[src]

impl Default for SchemaFieldSpecNumericIndexingSpec[src]

impl<'de> Deserialize<'de> for SchemaFieldSpecNumericIndexingSpec[src]

impl NestedType for SchemaFieldSpecNumericIndexingSpec[src]

impl Part for SchemaFieldSpecNumericIndexingSpec[src]

impl Serialize for SchemaFieldSpecNumericIndexingSpec[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> 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, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Typeable for T where
    T: Any