pub struct CheckResponse {
pub check_errors: Option<Vec<CheckError>>,
pub check_info: Option<CheckInfo>,
pub operation_id: Option<String>,
pub quota_info: Option<QuotaInfo>,
pub service_config_id: Option<String>,
pub service_rollout_id: Option<String>,
}
Expand description
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).
- check services (response)
Fields§
§check_errors: Option<Vec<CheckError>>
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.
check_info: Option<CheckInfo>
Feedback data returned from the server during processing a Check request.
operation_id: Option<String>
The same operation_id value used in the CheckRequest. Used for logging and diagnostics purposes.
quota_info: Option<QuotaInfo>
Quota information for the check request associated with this response.
service_config_id: Option<String>
The actual config id used to process the request.
service_rollout_id: Option<String>
The current service rollout id used to process the request.
Trait Implementations§
Source§impl Clone for CheckResponse
impl Clone for CheckResponse
Source§fn clone(&self) -> CheckResponse
fn clone(&self) -> CheckResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CheckResponse
impl Debug for CheckResponse
Source§impl Default for CheckResponse
impl Default for CheckResponse
Source§fn default() -> CheckResponse
fn default() -> CheckResponse
Source§impl<'de> Deserialize<'de> for CheckResponse
impl<'de> Deserialize<'de> for CheckResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for CheckResponse
impl Serialize for CheckResponse
impl ResponseResult for CheckResponse
Auto Trait Implementations§
impl Freeze for CheckResponse
impl RefUnwindSafe for CheckResponse
impl Send for CheckResponse
impl Sync for CheckResponse
impl Unpin for CheckResponse
impl UnwindSafe for CheckResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more