pub struct CheckResponse {
pub dynamic_metadata: Option<HashMap<String, Value>>,
pub headers: Option<HashMap<String, String>>,
pub status: Option<Status>,
}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§
§dynamic_metadata: Option<HashMap<String, Value>>Optional response metadata that will be emitted as dynamic metadata to be consumed by the caller of ServiceController. For compatibility with the ext_authz interface.
headers: Option<HashMap<String, String>>Returns a set of request contexts generated from the CheckRequest.
status: Option<Status>Operation is allowed when this field is not set. Any non-‘OK’ status indicates a denial; google.rpc.Status.details would contain additional details about the denial.
Trait Implementations§
Source§impl Clone for CheckResponse
impl Clone for CheckResponse
Source§fn clone(&self) -> CheckResponse
fn clone(&self) -> CheckResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
Returns the “default value” for a type. Read more
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>,
Deserialize this value from the given Serde deserializer. Read more
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
Mutably borrows from an owned value. Read more