pub struct AuditLogServiceAccountCreatedData {
pub role: Option<String>,
}
Expand description
The payload used to create the service account.
Fields§
§role: Option<String>
The role of the service account. Is either owner
or member
.
Implementations§
Trait Implementations§
Source§impl Clone for AuditLogServiceAccountCreatedData
impl Clone for AuditLogServiceAccountCreatedData
Source§fn clone(&self) -> AuditLogServiceAccountCreatedData
fn clone(&self) -> AuditLogServiceAccountCreatedData
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 AuditLogServiceAccountCreatedData
impl Default for AuditLogServiceAccountCreatedData
Source§fn default() -> AuditLogServiceAccountCreatedData
fn default() -> AuditLogServiceAccountCreatedData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogServiceAccountCreatedData
impl<'de> Deserialize<'de> for AuditLogServiceAccountCreatedData
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 AuditLogServiceAccountCreatedData
impl PartialEq for AuditLogServiceAccountCreatedData
Source§fn eq(&self, other: &AuditLogServiceAccountCreatedData) -> bool
fn eq(&self, other: &AuditLogServiceAccountCreatedData) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AuditLogServiceAccountCreatedData
Auto Trait Implementations§
impl Freeze for AuditLogServiceAccountCreatedData
impl RefUnwindSafe for AuditLogServiceAccountCreatedData
impl Send for AuditLogServiceAccountCreatedData
impl Sync for AuditLogServiceAccountCreatedData
impl Unpin for AuditLogServiceAccountCreatedData
impl UnwindSafe for AuditLogServiceAccountCreatedData
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