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