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