pub enum DeleteAPIKeyError {
APIErrorResponse(APIErrorResponse),
UnknownValue(Value),
}
Expand description
DeleteAPIKeyError is a struct for typed errors of method KeyManagementAPI::delete_api_key
Variants§
APIErrorResponse(APIErrorResponse)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for DeleteAPIKeyError
impl Clone for DeleteAPIKeyError
Source§fn clone(&self) -> DeleteAPIKeyError
fn clone(&self) -> DeleteAPIKeyError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeleteAPIKeyError
impl Debug for DeleteAPIKeyError
Source§impl<'de> Deserialize<'de> for DeleteAPIKeyError
impl<'de> Deserialize<'de> for DeleteAPIKeyError
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 DeleteAPIKeyError
impl RefUnwindSafe for DeleteAPIKeyError
impl Send for DeleteAPIKeyError
impl Sync for DeleteAPIKeyError
impl Unpin for DeleteAPIKeyError
impl UnwindSafe for DeleteAPIKeyError
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