pub struct ApiKeyDoesNotExistResponse {
pub apikey_id: Box<ApikeyId>,
pub error: String,
pub exception_id: Option<Box<ExceptionId>>,
pub message: String,
}Expand description
ApiKeyDoesNotExistResponse : Action: Attempt to fetch an API key. Error: No matching API key was found.
Fields§
§apikey_id: Box<ApikeyId>§error: String§exception_id: Option<Box<ExceptionId>>§message: StringImplementations§
Trait Implementations§
Source§impl Clone for ApiKeyDoesNotExistResponse
impl Clone for ApiKeyDoesNotExistResponse
Source§fn clone(&self) -> ApiKeyDoesNotExistResponse
fn clone(&self) -> ApiKeyDoesNotExistResponse
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 ApiKeyDoesNotExistResponse
impl Debug for ApiKeyDoesNotExistResponse
Source§impl Default for ApiKeyDoesNotExistResponse
impl Default for ApiKeyDoesNotExistResponse
Source§fn default() -> ApiKeyDoesNotExistResponse
fn default() -> ApiKeyDoesNotExistResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiKeyDoesNotExistResponse
impl<'de> Deserialize<'de> for ApiKeyDoesNotExistResponse
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
impl StructuralPartialEq for ApiKeyDoesNotExistResponse
Auto Trait Implementations§
impl Freeze for ApiKeyDoesNotExistResponse
impl RefUnwindSafe for ApiKeyDoesNotExistResponse
impl Send for ApiKeyDoesNotExistResponse
impl Sync for ApiKeyDoesNotExistResponse
impl Unpin for ApiKeyDoesNotExistResponse
impl UnwindSafe for ApiKeyDoesNotExistResponse
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