pub struct DeleteClientRequest {
pub client_id: Uuid,
}
Expand description
Request message to delete a client and all associated authority keys.
Requires the client:revoke
scope.
Response is an DeleteClientResponse.
Fields§
§client_id: Uuid
Trait Implementations§
Source§impl Debug for DeleteClientRequest
impl Debug for DeleteClientRequest
Source§impl<'de> Deserialize<'de> for DeleteClientRequest
impl<'de> Deserialize<'de> for DeleteClientRequest
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 DeleteClientRequest
impl Serialize for DeleteClientRequest
Auto Trait Implementations§
impl Freeze for DeleteClientRequest
impl RefUnwindSafe for DeleteClientRequest
impl Send for DeleteClientRequest
impl Sync for DeleteClientRequest
impl Unpin for DeleteClientRequest
impl UnwindSafe for DeleteClientRequest
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