[][src]Struct gcp_client::google::cloud::datalabeling::v1beta1::Dataset

pub struct Dataset {
    pub name: String,
    pub display_name: String,
    pub description: String,
    pub create_time: Option<Timestamp>,
    pub input_configs: Vec<InputConfig>,
    pub blocking_resources: Vec<String>,
    pub data_item_count: i64,
}

Dataset is the resource to hold your data. You can request multiple labeling tasks for a dataset while each one will generate an AnnotatedDataset.

Fields

name: String

Output only. Dataset resource name, format is: projects/{project_id}/datasets/{dataset_id}

display_name: String

Required. The display name of the dataset. Maximum of 64 characters.

description: String

Optional. User-provided description of the annotation specification set. The description can be up to 10000 characters long.

create_time: Option<Timestamp>

Output only. Time the dataset is created.

input_configs: Vec<InputConfig>

Output only. This is populated with the original input configs where ImportData is called. It is available only after the clients import data to this dataset.

blocking_resources: Vec<String>

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

data_item_count: i64

Output only. The number of data items in the dataset.

Trait Implementations

impl Clone for Dataset[src]

impl Debug for Dataset[src]

impl Default for Dataset[src]

impl Message for Dataset[src]

impl PartialEq<Dataset> for Dataset[src]

impl StructuralPartialEq for Dataset[src]

Auto Trait Implementations

impl RefUnwindSafe for Dataset

impl Send for Dataset

impl Sync for Dataset

impl Unpin for Dataset

impl UnwindSafe for Dataset

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]