pub struct AuditLogApiKeyUpdated {
pub id: Option<String>,
pub changes_requested: Option<AuditLogApiKeyUpdatedChangesRequested>,
}
Expand description
The details for events with this type
.
Fields§
§id: Option<String>
The tracking ID of the API key.
changes_requested: Option<AuditLogApiKeyUpdatedChangesRequested>
The payload used to update the API key.
Implementations§
Trait Implementations§
Source§impl Clone for AuditLogApiKeyUpdated
impl Clone for AuditLogApiKeyUpdated
Source§fn clone(&self) -> AuditLogApiKeyUpdated
fn clone(&self) -> AuditLogApiKeyUpdated
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 AuditLogApiKeyUpdated
impl Debug for AuditLogApiKeyUpdated
Source§impl Default for AuditLogApiKeyUpdated
impl Default for AuditLogApiKeyUpdated
Source§fn default() -> AuditLogApiKeyUpdated
fn default() -> AuditLogApiKeyUpdated
Returns the “default value” for a type. Read more
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
Source§impl PartialEq for AuditLogApiKeyUpdated
impl PartialEq for AuditLogApiKeyUpdated
Source§impl Serialize for AuditLogApiKeyUpdated
impl Serialize for AuditLogApiKeyUpdated
impl StructuralPartialEq for AuditLogApiKeyUpdated
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