pub struct LocalAuditEvent {
pub timestamp: String,
pub kind: LocalAuditKind,
pub vm_name: Option<String>,
pub detail: Option<String>,
}Expand description
A single local audit log entry.
Fields§
§timestamp: String§kind: LocalAuditKind§vm_name: Option<String>§detail: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for LocalAuditEvent
impl Clone for LocalAuditEvent
Source§fn clone(&self) -> LocalAuditEvent
fn clone(&self) -> LocalAuditEvent
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 LocalAuditEvent
impl Debug for LocalAuditEvent
Source§impl<'de> Deserialize<'de> for LocalAuditEvent
impl<'de> Deserialize<'de> for LocalAuditEvent
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 LocalAuditEvent
impl RefUnwindSafe for LocalAuditEvent
impl Send for LocalAuditEvent
impl Sync for LocalAuditEvent
impl Unpin for LocalAuditEvent
impl UnsafeUnpin for LocalAuditEvent
impl UnwindSafe for LocalAuditEvent
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