pub struct AuditRef {
pub id: String,
pub timestamp: u64,
pub hash: String,
}Expand description
Reference to an audit log entry
Fields§
§id: StringAudit log entry ID
timestamp: u64Timestamp of the audit entry
hash: StringAudit trail hash for integrity verification
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AuditRef
impl<'de> Deserialize<'de> for AuditRef
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
impl StructuralPartialEq for AuditRef
Auto Trait Implementations§
impl Freeze for AuditRef
impl RefUnwindSafe for AuditRef
impl Send for AuditRef
impl Sync for AuditRef
impl Unpin for AuditRef
impl UnwindSafe for AuditRef
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