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