Struct google_servicecontrol1::CheckResponse[][src]

pub struct CheckResponse {
    pub operation_id: Option<String>,
    pub service_config_id: Option<String>,
    pub check_info: Option<CheckInfo>,
    pub check_errors: Option<Vec<CheckError>>,
    pub quota_info: Option<QuotaInfo>,
}

Response message for the Check method.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The same operation_id value used in the CheckRequest. Used for logging and diagnostics purposes.

The actual config id used to process the request.

Feedback data returned from the server during processing a Check request.

Indicate the decision of the check.

If no check errors are present, the service should process the operation. Otherwise the service should use the list of errors to determine the appropriate action.

Quota information for the check request associated with this response.

Trait Implementations

impl Default for CheckResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for CheckResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CheckResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for CheckResponse
[src]

Auto Trait Implementations