[][src]Struct gcp_client::google::cloud::automl::v1::AnnotationPayload

pub struct AnnotationPayload {
    pub annotation_spec_id: String,
    pub display_name: String,
    pub detail: Option<Detail>,
}

Contains annotation information that is relevant to AutoML.

Fields

annotation_spec_id: String

Output only . The resource ID of the annotation spec that this annotation pertains to. The annotation spec comes from either an ancestor dataset, or the dataset that was used to train the model in use.

display_name: String

Output only. The value of [display_name][google.cloud.automl.v1.AnnotationSpec.display_name] when the model was trained. Because this field returns a value at model training time, for different models trained using the same dataset, the returned value could be different as model owner could update the display_name between any two model training.

detail: Option<Detail>

Output only . Additional information about the annotation specific to the AutoML domain.

Trait Implementations

impl Clone for AnnotationPayload[src]

impl Debug for AnnotationPayload[src]

impl Default for AnnotationPayload[src]

impl Message for AnnotationPayload[src]

impl PartialEq<AnnotationPayload> for AnnotationPayload[src]

impl StructuralPartialEq for AnnotationPayload[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]