Struct gapi_grpc::google::firestore::admin::v1::field::IndexConfig[][src]

pub struct IndexConfig {
    pub indexes: Vec<Index>,
    pub uses_ancestor_config: bool,
    pub ancestor_field: String,
    pub reverting: bool,
}

The index configuration for this field.

Fields

indexes: Vec<Index>

The indexes supported for this field.

uses_ancestor_config: bool

Output only. When true, the Field’s index configuration is set from the configuration specified by the ancestor_field. When false, the Field’s index configuration is defined explicitly.

ancestor_field: String

Output only. Specifies the resource name of the Field from which this field’s index configuration is set (when uses_ancestor_config is true), or from which it would be set if this field had no index configuration (when uses_ancestor_config is false).

reverting: bool

Output only When true, the Field’s index configuration is in the process of being reverted. Once complete, the index config will transition to the same state as the field specified by ancestor_field, at which point uses_ancestor_config will be true and reverting will be false.

Trait Implementations

impl Clone for IndexConfig[src]

impl Debug for IndexConfig[src]

impl Default for IndexConfig[src]

impl Message for IndexConfig[src]

impl PartialEq<IndexConfig> for IndexConfig[src]

impl StructuralPartialEq for IndexConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for IndexConfig

impl Send for IndexConfig

impl Sync for IndexConfig

impl Unpin for IndexConfig

impl UnwindSafe for IndexConfig

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]