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