pub struct AuditRow {
pub ts: String,
pub actor: Option<String>,
pub action: String,
pub target: Option<String>,
pub key_fingerprint: Option<String>,
pub metadata: Value,
}Fields§
§ts: String§actor: Option<String>§action: String§target: Option<String>§key_fingerprint: Option<String>§metadata: ValueTrait Implementations§
Source§impl<'de> Deserialize<'de> for AuditRow
impl<'de> Deserialize<'de> for AuditRow
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 AuditRow
impl RefUnwindSafe for AuditRow
impl Send for AuditRow
impl Sync for AuditRow
impl Unpin for AuditRow
impl UnsafeUnpin for AuditRow
impl UnwindSafe for AuditRow
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