pub struct ApiKeyRequest {
pub api_key_id: String,
pub credentials: Option<Credentials>,
}
Expand description
Request parameters for getting a specific API key.
Fields§
§api_key_id: String
API key identifier
credentials: Option<Credentials>
Credentials for authentication (not serialized)
Trait Implementations§
Source§impl Clone for ApiKeyRequest
impl Clone for ApiKeyRequest
Source§fn clone(&self) -> ApiKeyRequest
fn clone(&self) -> ApiKeyRequest
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 ApiKeyRequest
impl Debug for ApiKeyRequest
Auto Trait Implementations§
impl Freeze for ApiKeyRequest
impl RefUnwindSafe for ApiKeyRequest
impl Send for ApiKeyRequest
impl Sync for ApiKeyRequest
impl Unpin for ApiKeyRequest
impl UnwindSafe for ApiKeyRequest
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