Struct gapi_grpc::google::cloud::automl::v1beta1::OperationMetadata[][src]

pub struct OperationMetadata {
    pub progress_percent: i32,
    pub partial_failures: Vec<Status>,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub details: Option<Details>,
}

Metadata used across all long running operations returned by AutoML API.

Fields

progress_percent: i32

Output only. Progress of operation. Range: [0, 100]. Not used currently.

partial_failures: Vec<Status>

Output only. Partial failures encountered. E.g. single files that couldn’t be read. This field should never exceed 20 entries. Status details field will contain standard GCP error details.

create_time: Option<Timestamp>

Output only. Time when the operation was created.

update_time: Option<Timestamp>

Output only. Time when the operation was updated for the last time.

details: Option<Details>

Ouptut only. Details of specific operation. Even if this field is empty, the presence allows to distinguish different types of operations.

Trait Implementations

impl Clone for OperationMetadata[src]

impl Debug for OperationMetadata[src]

impl Default for OperationMetadata[src]

impl Message for OperationMetadata[src]

impl PartialEq<OperationMetadata> for OperationMetadata[src]

impl StructuralPartialEq for OperationMetadata[src]

Auto Trait Implementations

impl RefUnwindSafe for OperationMetadata

impl Send for OperationMetadata

impl Sync for OperationMetadata

impl Unpin for OperationMetadata

impl UnwindSafe for OperationMetadata

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]