pub struct ApiKeyCreated {
pub id: Option<String>,
pub data: Option<Data>,
}
Expand description
The details for events with this type
.
Fields§
§id: Option<String>
The tracking ID of the API key.
data: Option<Data>
The payload used to create the API key.
Implementations§
Trait Implementations§
Source§impl Clone for ApiKeyCreated
impl Clone for ApiKeyCreated
Source§fn clone(&self) -> ApiKeyCreated
fn clone(&self) -> ApiKeyCreated
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 ApiKeyCreated
impl Debug for ApiKeyCreated
Source§impl Default for ApiKeyCreated
impl Default for ApiKeyCreated
Source§fn default() -> ApiKeyCreated
fn default() -> ApiKeyCreated
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiKeyCreated
impl<'de> Deserialize<'de> for ApiKeyCreated
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 PartialEq for ApiKeyCreated
impl PartialEq for ApiKeyCreated
Source§impl Serialize for ApiKeyCreated
impl Serialize for ApiKeyCreated
impl StructuralPartialEq for ApiKeyCreated
Auto Trait Implementations§
impl Freeze for ApiKeyCreated
impl RefUnwindSafe for ApiKeyCreated
impl Send for ApiKeyCreated
impl Sync for ApiKeyCreated
impl Unpin for ApiKeyCreated
impl UnwindSafe for ApiKeyCreated
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