[][src]Struct gcp_client::google::cloud::datacatalog::v1beta1::TagField

pub struct TagField {
    pub display_name: String,
    pub order: i32,
    pub kind: Option<Kind>,
}

Contains the value and supporting information for a field within a [Tag][google.cloud.datacatalog.v1beta1.Tag].

Fields

display_name: String

Output only. The display name of this field.

order: i32

Output only. The order of this field with respect to other fields in this tag. It can be set in [Tag][google.cloud.datacatalog.v1beta1.TagTemplateField.order]. For example, a higher value can indicate 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.

kind: Option<Kind>

Required. The value of this field.

Trait Implementations

impl Clone for TagField[src]

impl Debug for TagField[src]

impl Default for TagField[src]

impl Message for TagField[src]

impl PartialEq<TagField> for TagField[src]

impl StructuralPartialEq for TagField[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> From<T> 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>, 

impl<T> WithSubscriber for T[src]