pub struct CreatedApiKey {
pub api_key_id: String,
pub api_key: String,
pub prefix: Option<String>,
pub name: Option<String>,
pub created_at: Option<String>,
}Expand description
The response to create_api_key. The full api_key secret is
returned exactly once, here; store it now, as it cannot be retrieved again.
Fields§
§api_key_id: StringUnique key id.
api_key: StringThe full secret key. Shown only on creation.
prefix: Option<String>The key’s non-secret prefix.
name: Option<String>Human-readable name.
created_at: Option<String>When the key was created (RFC 3339).
Trait Implementations§
Source§impl Clone for CreatedApiKey
impl Clone for CreatedApiKey
Source§fn clone(&self) -> CreatedApiKey
fn clone(&self) -> CreatedApiKey
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 CreatedApiKey
impl Debug for CreatedApiKey
Source§impl<'de> Deserialize<'de> for CreatedApiKey
impl<'de> Deserialize<'de> for CreatedApiKey
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 CreatedApiKey
impl RefUnwindSafe for CreatedApiKey
impl Send for CreatedApiKey
impl Sync for CreatedApiKey
impl Unpin for CreatedApiKey
impl UnsafeUnpin for CreatedApiKey
impl UnwindSafe for CreatedApiKey
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