pub struct AuditEventRow {
pub id: String,
pub timestamp_ms: u64,
pub audit_type: String,
pub pid: Option<u32>,
pub comm: Option<String>,
pub subject: Option<String>,
pub action: Option<String>,
pub target: Option<String>,
pub status: Option<String>,
pub summary: Option<String>,
pub details: Value,
}Fields§
§id: String§timestamp_ms: u64§audit_type: String§pid: Option<u32>§comm: Option<String>§subject: Option<String>§action: Option<String>§target: Option<String>§status: Option<String>§summary: Option<String>§details: ValueTrait Implementations§
Source§impl Clone for AuditEventRow
impl Clone for AuditEventRow
Source§fn clone(&self) -> AuditEventRow
fn clone(&self) -> AuditEventRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuditEventRow
impl Debug for AuditEventRow
Source§impl<'de> Deserialize<'de> for AuditEventRow
impl<'de> Deserialize<'de> for AuditEventRow
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
Auto Trait Implementations§
impl Freeze for AuditEventRow
impl RefUnwindSafe for AuditEventRow
impl Send for AuditEventRow
impl Sync for AuditEventRow
impl Unpin for AuditEventRow
impl UnsafeUnpin for AuditEventRow
impl UnwindSafe for AuditEventRow
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