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