pub struct RevokeDelegatedAgentResponse {
pub status: Option<String>,
}Expand description
RevokeDelegatedAgentResponse
JSON schema
{
"type": "object",
"properties": {
"status": {
"description": "Revocation status",
"examples": [
"REVOKED"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§status: Option<String>Revocation status
Trait Implementations§
Source§impl Clone for RevokeDelegatedAgentResponse
impl Clone for RevokeDelegatedAgentResponse
Source§fn clone(&self) -> RevokeDelegatedAgentResponse
fn clone(&self) -> RevokeDelegatedAgentResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RevokeDelegatedAgentResponse
impl Debug for RevokeDelegatedAgentResponse
Source§impl<'de> Deserialize<'de> for RevokeDelegatedAgentResponse
impl<'de> Deserialize<'de> for RevokeDelegatedAgentResponse
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
Auto Trait Implementations§
impl Freeze for RevokeDelegatedAgentResponse
impl RefUnwindSafe for RevokeDelegatedAgentResponse
impl Send for RevokeDelegatedAgentResponse
impl Sync for RevokeDelegatedAgentResponse
impl Unpin for RevokeDelegatedAgentResponse
impl UnsafeUnpin for RevokeDelegatedAgentResponse
impl UnwindSafe for RevokeDelegatedAgentResponse
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