pub struct AuditLogServiceAccountCreated {
pub id: Option<String>,
pub data: Option<AuditLogServiceAccountCreatedData>,
}
Expand description
The details for events with this type
.
Fields§
§id: Option<String>
The service account ID.
data: Option<AuditLogServiceAccountCreatedData>
The payload used to create the service account.
Implementations§
Source§impl AuditLogServiceAccountCreated
impl AuditLogServiceAccountCreated
Sourcepub fn builder() -> AuditLogServiceAccountCreatedBuilder<((), ())>
pub fn builder() -> AuditLogServiceAccountCreatedBuilder<((), ())>
Create a builder for building AuditLogServiceAccountCreated
.
On the builder, call .id(...)
(optional), .data(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of AuditLogServiceAccountCreated
.
Trait Implementations§
Source§impl Clone for AuditLogServiceAccountCreated
impl Clone for AuditLogServiceAccountCreated
Source§fn clone(&self) -> AuditLogServiceAccountCreated
fn clone(&self) -> AuditLogServiceAccountCreated
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 Default for AuditLogServiceAccountCreated
impl Default for AuditLogServiceAccountCreated
Source§fn default() -> AuditLogServiceAccountCreated
fn default() -> AuditLogServiceAccountCreated
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogServiceAccountCreated
impl<'de> Deserialize<'de> for AuditLogServiceAccountCreated
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 AuditLogServiceAccountCreated
impl PartialEq for AuditLogServiceAccountCreated
Source§fn eq(&self, other: &AuditLogServiceAccountCreated) -> bool
fn eq(&self, other: &AuditLogServiceAccountCreated) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AuditLogServiceAccountCreated
Auto Trait Implementations§
impl Freeze for AuditLogServiceAccountCreated
impl RefUnwindSafe for AuditLogServiceAccountCreated
impl Send for AuditLogServiceAccountCreated
impl Sync for AuditLogServiceAccountCreated
impl Unpin for AuditLogServiceAccountCreated
impl UnwindSafe for AuditLogServiceAccountCreated
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