Struct gapi_grpc::google::api::servicecontrol::v1::ReportResponse[][src]

pub struct ReportResponse {
    pub report_errors: Vec<ReportError>,
    pub service_config_id: String,
    pub service_rollout_id: String,
}

Response message for the Report method.

Fields

report_errors: Vec<ReportError>

Partial failures, one for each Operation in the request that failed processing. There are three possible combinations of the RPC status:

  1. The combination of a successful RPC status and an empty report_errors list indicates a complete success where all Operations in the request are processed successfully.
  2. The combination of a successful RPC status and a non-empty report_errors list indicates a partial success where some Operations in the request succeeded. Each Operation that failed processing has a corresponding item in this list.
  3. A failed RPC status indicates a general non-deterministic failure. When this happens, it’s impossible to know which of the ‘Operations’ in the request succeeded or failed.
service_config_id: String

The actual config id used to process the request.

service_rollout_id: String

The current service rollout id used to process the request.

Trait Implementations

impl Clone for ReportResponse[src]

impl Debug for ReportResponse[src]

impl Default for ReportResponse[src]

impl Message for ReportResponse[src]

impl PartialEq<ReportResponse> for ReportResponse[src]

impl StructuralPartialEq for ReportResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for ReportResponse

impl Send for ReportResponse

impl Sync for ReportResponse

impl Unpin for ReportResponse

impl UnwindSafe for ReportResponse

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]