pub struct ExtensionAuditLogEntry {
pub audit_action: Option<String>,
pub audit_date: Option<OffsetDateTime>,
pub comment: Option<String>,
pub updated_by: Option<IdentityRef>,
}
Expand description
An audit log entry for an extension
Fields§
§audit_action: Option<String>
Change that was made to extension
audit_date: Option<OffsetDateTime>
Date at which the change was made
comment: Option<String>
Extra information about the change
updated_by: Option<IdentityRef>
Implementations§
Trait Implementations§
source§impl Clone for ExtensionAuditLogEntry
impl Clone for ExtensionAuditLogEntry
source§fn clone(&self) -> ExtensionAuditLogEntry
fn clone(&self) -> ExtensionAuditLogEntry
Returns a copy 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 ExtensionAuditLogEntry
impl Debug for ExtensionAuditLogEntry
source§impl Default for ExtensionAuditLogEntry
impl Default for ExtensionAuditLogEntry
source§fn default() -> ExtensionAuditLogEntry
fn default() -> ExtensionAuditLogEntry
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ExtensionAuditLogEntry
impl<'de> Deserialize<'de> for ExtensionAuditLogEntry
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 ExtensionAuditLogEntry
impl PartialEq for ExtensionAuditLogEntry
source§fn eq(&self, other: &ExtensionAuditLogEntry) -> bool
fn eq(&self, other: &ExtensionAuditLogEntry) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ExtensionAuditLogEntry
impl Serialize for ExtensionAuditLogEntry
impl StructuralPartialEq for ExtensionAuditLogEntry
Auto Trait Implementations§
impl RefUnwindSafe for ExtensionAuditLogEntry
impl Send for ExtensionAuditLogEntry
impl Sync for ExtensionAuditLogEntry
impl Unpin for ExtensionAuditLogEntry
impl UnwindSafe for ExtensionAuditLogEntry
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