pub struct AuditLogApiKeyUpdated {
pub id: String,
pub changes_requested: Option<AuditLogApiKeyUpdatedChangesRequested>,
}
Expand description
The details for events with the type api_key.updated
.
Fields§
§id: String
The tracking ID of the API key.
changes_requested: Option<AuditLogApiKeyUpdatedChangesRequested>
The payload used to update the API key.
Trait Implementations§
Source§impl Debug for AuditLogApiKeyUpdated
impl Debug for AuditLogApiKeyUpdated
Source§impl<'de> Deserialize<'de> for AuditLogApiKeyUpdated
impl<'de> Deserialize<'de> for AuditLogApiKeyUpdated
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 AuditLogApiKeyUpdated
impl RefUnwindSafe for AuditLogApiKeyUpdated
impl Send for AuditLogApiKeyUpdated
impl Sync for AuditLogApiKeyUpdated
impl Unpin for AuditLogApiKeyUpdated
impl UnwindSafe for AuditLogApiKeyUpdated
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