[][src]Struct google_admin1_directory::SchemaFieldSpec

pub struct SchemaFieldSpec {
    pub kind: Option<String>,
    pub display_name: Option<String>,
    pub etag: Option<String>,
    pub field_name: Option<String>,
    pub field_type: Option<String>,
    pub indexed: Option<bool>,
    pub read_access_type: Option<String>,
    pub numeric_indexing_spec: Option<SchemaFieldSpecNumericIndexingSpec>,
    pub field_id: Option<String>,
    pub multi_valued: Option<bool>,
}

JSON template for FieldSpec resource for Schemas in Directory API.

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

Fields

kind: Option<String>

Kind of resource this is.

display_name: Option<String>

Display Name of the field.

etag: Option<String>

ETag of the resource.

field_name: Option<String>

Name of the field.

field_type: Option<String>

Type of the field.

indexed: Option<bool>

Boolean specifying whether the field is indexed or not.

read_access_type: Option<String>

Read ACLs on the field specifying who can view values of this field. Valid values are "ALL_DOMAIN_USERS" and "ADMINS_AND_SELF".

numeric_indexing_spec: Option<SchemaFieldSpecNumericIndexingSpec>

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.

field_id: Option<String>

Unique identifier of Field (Read-only)

multi_valued: Option<bool>

Boolean specifying whether this is a multi-valued field or not.

Trait Implementations

impl Clone for SchemaFieldSpec[src]

impl Debug for SchemaFieldSpec[src]

impl Default for SchemaFieldSpec[src]

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

impl Part for SchemaFieldSpec[src]

impl Serialize for SchemaFieldSpec[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