[][src]Struct google_datacatalog1_beta1::GoogleCloudDatacatalogV1beta1TagTemplateField

pub struct GoogleCloudDatacatalogV1beta1TagTemplateField {
    pub is_required: Option<bool>,
    pub type_: Option<GoogleCloudDatacatalogV1beta1FieldType>,
    pub order: Option<i32>,
    pub display_name: Option<String>,
    pub name: Option<String>,
}

The template for an individual field within a tag template.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

is_required: Option<bool>

Whether this is a required field. Defaults to false.

type_: Option<GoogleCloudDatacatalogV1beta1FieldType>

Required. The type of value this tag field can contain.

order: Option<i32>

The order of this field with respect to other fields in this tag template. A higher value indicates a more important field. The value can be negative. Multiple fields can have the same order, and field orders within a tag do not have to be sequential.

display_name: Option<String>

The display name for this field. Defaults to an empty string.

name: Option<String>

Output only. The resource name of the tag template field in URL format. Example:

  • projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field}

Note that this TagTemplateField may not actually be stored in the location in this name.

Trait Implementations

impl Clone for GoogleCloudDatacatalogV1beta1TagTemplateField[src]

impl Debug for GoogleCloudDatacatalogV1beta1TagTemplateField[src]

impl Default for GoogleCloudDatacatalogV1beta1TagTemplateField[src]

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

impl RequestValue for GoogleCloudDatacatalogV1beta1TagTemplateField[src]

impl ResponseResult for GoogleCloudDatacatalogV1beta1TagTemplateField[src]

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