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