pub struct AuditLogOrganizationUpdated {
pub id: Option<String>,
pub changes_requested: Option<AuditLogOrganizationUpdatedChangesRequested>,
}
Expand description
The details for events with this type
.
Fields§
§id: Option<String>
The organization ID.
changes_requested: Option<AuditLogOrganizationUpdatedChangesRequested>
The payload used to update the organization settings.
Implementations§
Source§impl AuditLogOrganizationUpdated
impl AuditLogOrganizationUpdated
Sourcepub fn builder() -> AuditLogOrganizationUpdatedBuilder<((), ())>
pub fn builder() -> AuditLogOrganizationUpdatedBuilder<((), ())>
Create a builder for building AuditLogOrganizationUpdated
.
On the builder, call .id(...)
(optional), .changes_requested(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of AuditLogOrganizationUpdated
.
Trait Implementations§
Source§impl Clone for AuditLogOrganizationUpdated
impl Clone for AuditLogOrganizationUpdated
Source§fn clone(&self) -> AuditLogOrganizationUpdated
fn clone(&self) -> AuditLogOrganizationUpdated
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 AuditLogOrganizationUpdated
impl Debug for AuditLogOrganizationUpdated
Source§impl Default for AuditLogOrganizationUpdated
impl Default for AuditLogOrganizationUpdated
Source§fn default() -> AuditLogOrganizationUpdated
fn default() -> AuditLogOrganizationUpdated
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogOrganizationUpdated
impl<'de> Deserialize<'de> for AuditLogOrganizationUpdated
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
impl StructuralPartialEq for AuditLogOrganizationUpdated
Auto Trait Implementations§
impl Freeze for AuditLogOrganizationUpdated
impl RefUnwindSafe for AuditLogOrganizationUpdated
impl Send for AuditLogOrganizationUpdated
impl Sync for AuditLogOrganizationUpdated
impl Unpin for AuditLogOrganizationUpdated
impl UnwindSafe for AuditLogOrganizationUpdated
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