[][src]Struct gcp_client::google::cloud::recommendationengine::v1beta1::ImportMetadata

pub struct ImportMetadata {
    pub operation_name: String,
    pub request_id: String,
    pub create_time: Option<Timestamp>,
    pub success_count: i64,
    pub failure_count: i64,
    pub update_time: Option<Timestamp>,
}

Metadata related to the progress of the Import operation. This will be returned by the google.longrunning.Operation.metadata field.

Fields

operation_name: String

Name of the operation.

request_id: String

Id of the request / operation. This is parroting back the requestId that was passed in the request.

create_time: Option<Timestamp>

Operation create time.

success_count: i64

Count of entries that were processed successfully.

failure_count: i64

Count of entries that encountered errors while processing.

update_time: Option<Timestamp>

Operation last update time. If the operation is done, this is also the finish time.

Trait Implementations

impl Clone for ImportMetadata[src]

impl Debug for ImportMetadata[src]

impl Default for ImportMetadata[src]

impl Message for ImportMetadata[src]

impl PartialEq<ImportMetadata> for ImportMetadata[src]

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