Struct google_datalabeling1_beta1::api::GoogleCloudDatalabelingV1beta1AnnotatedDataset[][src]

pub struct GoogleCloudDatalabelingV1beta1AnnotatedDataset {
    pub annotation_source: Option<String>,
    pub annotation_type: Option<String>,
    pub blocking_resources: Option<Vec<String>>,
    pub completed_example_count: Option<String>,
    pub create_time: Option<String>,
    pub description: Option<String>,
    pub display_name: Option<String>,
    pub example_count: Option<String>,
    pub label_stats: Option<GoogleCloudDatalabelingV1beta1LabelStats>,
    pub metadata: Option<GoogleCloudDatalabelingV1beta1AnnotatedDatasetMetadata>,
    pub name: Option<String>,
}

AnnotatedDataset is a set holding annotations for data in a Dataset. Each labeling task will generate an AnnotatedDataset under the Dataset that the task is requested for.

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

annotation_source: Option<String>

Output only. Source of the annotation.

annotation_type: Option<String>

Output only. Type of the annotation. It is specified when starting labeling task.

blocking_resources: Option<Vec<String>>

Output only. The names of any related resources that are blocking changes to the annotated dataset.

completed_example_count: Option<String>

Output only. Number of examples that have annotation in the annotated dataset.

create_time: Option<String>

Output only. Time the AnnotatedDataset was created.

description: Option<String>

Output only. The description of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 10000 characters.

display_name: Option<String>

Output only. The display name of the AnnotatedDataset. It is specified in HumanAnnotationConfig when user starts a labeling task. Maximum of 64 characters.

example_count: Option<String>

Output only. Number of examples in the annotated dataset.

label_stats: Option<GoogleCloudDatalabelingV1beta1LabelStats>

Output only. Per label statistics.

metadata: Option<GoogleCloudDatalabelingV1beta1AnnotatedDatasetMetadata>

Output only. Additional information about AnnotatedDataset.

name: Option<String>

Output only. AnnotatedDataset resource name in format of: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}

Trait Implementations

impl Clone for GoogleCloudDatalabelingV1beta1AnnotatedDataset[src]

impl Debug for GoogleCloudDatalabelingV1beta1AnnotatedDataset[src]

impl Default for GoogleCloudDatalabelingV1beta1AnnotatedDataset[src]

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

impl ResponseResult for GoogleCloudDatalabelingV1beta1AnnotatedDataset[src]

impl Serialize for GoogleCloudDatalabelingV1beta1AnnotatedDataset[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> Instrument 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.