pub struct AuditEntryExport {
pub id: i64,
pub timestamp: String,
pub operation: String,
pub environment: String,
pub key_name: Option<String>,
pub details: Option<String>,
pub user: Option<String>,
pub pid: Option<i64>,
}Expand description
Serializable audit entry for JSON/CSV export.
Fields§
§id: i64§timestamp: String§operation: String§environment: String§key_name: Option<String>§details: Option<String>§user: Option<String>§pid: Option<i64>Trait Implementations§
Source§impl Clone for AuditEntryExport
impl Clone for AuditEntryExport
Source§fn clone(&self) -> AuditEntryExport
fn clone(&self) -> AuditEntryExport
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 AuditEntryExport
impl Debug for AuditEntryExport
Source§impl<'de> Deserialize<'de> for AuditEntryExport
impl<'de> Deserialize<'de> for AuditEntryExport
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 From<&AuditEntry> for AuditEntryExport
impl From<&AuditEntry> for AuditEntryExport
Source§fn from(e: &AuditEntry) -> Self
fn from(e: &AuditEntry) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuditEntryExport
impl RefUnwindSafe for AuditEntryExport
impl Send for AuditEntryExport
impl Sync for AuditEntryExport
impl Unpin for AuditEntryExport
impl UnsafeUnpin for AuditEntryExport
impl UnwindSafe for AuditEntryExport
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