Struct gapi_grpc::google::cloud::aiplatform::v1::CompletionStats[][src]

pub struct CompletionStats {
    pub successful_count: i64,
    pub failed_count: i64,
    pub incomplete_count: i64,
}

Success and error statistics of processing multiple entities (for example, DataItems or structured data rows) in batch.

Fields

successful_count: i64

Output only. The number of entities that had been processed successfully.

failed_count: i64

Output only. The number of entities for which any error was encountered.

incomplete_count: i64

Output only. In cases when enough errors are encountered a job, pipeline, or operation may be failed as a whole. Below is the number of entities for which the processing had not been finished (either in successful or failed state). Set to -1 if the number is unknown (for example, the operation failed before the total entity number could be collected).

Trait Implementations

impl Clone for CompletionStats[src]

impl Debug for CompletionStats[src]

impl Default for CompletionStats[src]

impl Message for CompletionStats[src]

impl PartialEq<CompletionStats> for CompletionStats[src]

impl StructuralPartialEq for CompletionStats[src]

Auto Trait Implementations

impl RefUnwindSafe for CompletionStats

impl Send for CompletionStats

impl Sync for CompletionStats

impl Unpin for CompletionStats

impl UnwindSafe for CompletionStats

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]