pub struct AuditLogApiKeyCreated {
pub id: String,
pub data: Option<AuditLogApiKeyCreatedData>,
}
Expand description
The details for events with the type api_key.created
.
Fields§
§id: String
The tracking ID of the API key.
data: Option<AuditLogApiKeyCreatedData>
The payload used to create the API key.
Trait Implementations§
Source§impl Debug for AuditLogApiKeyCreated
impl Debug for AuditLogApiKeyCreated
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
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