Struct gapi_grpc::google::cloud::aiplatform::logging::OnlinePredictionLogEntry[][src]

pub struct OnlinePredictionLogEntry {
    pub endpoint: String,
    pub deployed_model_id: String,
    pub instance_count: i64,
    pub prediction_count: i64,
    pub error: Option<Status>,
}

The access log entry definition of online prediction.

Fields

endpoint: String

The resource name of the endpoint as referred to in the original request. For example, projects/12323/locations/us-central1/endpoints/123.

deployed_model_id: String

The ID of the deployed model used to serve this predict request.

instance_count: i64

The number of instances in the prediction request.

prediction_count: i64

The number of successfully predicted instances in the response. Populated when prediction succeeds.

error: Option<Status>

The error code and message. Populated when prediction fails.

Trait Implementations

impl Clone for OnlinePredictionLogEntry[src]

impl Debug for OnlinePredictionLogEntry[src]

impl Default for OnlinePredictionLogEntry[src]

impl Message for OnlinePredictionLogEntry[src]

impl PartialEq<OnlinePredictionLogEntry> for OnlinePredictionLogEntry[src]

impl StructuralPartialEq for OnlinePredictionLogEntry[src]

Auto Trait Implementations

impl RefUnwindSafe for OnlinePredictionLogEntry

impl Send for OnlinePredictionLogEntry

impl Sync for OnlinePredictionLogEntry

impl Unpin for OnlinePredictionLogEntry

impl UnwindSafe for OnlinePredictionLogEntry

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]