pub struct AuditLogEntry {
pub timestamp: u64,
pub actor: [u8; 32],
pub action: AuditAction,
pub target: Option<[u8; 32]>,
pub details: Option<String>,
}Expand description
Audit log entry for group operations
Fieldsยง
ยงtimestamp: u64Timestamp of the action
actor: [u8; 32]Member who performed the action
action: AuditActionType of action performed
target: Option<[u8; 32]>Target of the action (if applicable)
details: Option<String>Additional context or details
Trait Implementationsยง
Sourceยงimpl Clone for AuditLogEntry
impl Clone for AuditLogEntry
Sourceยงfn clone(&self) -> AuditLogEntry
fn clone(&self) -> AuditLogEntry
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 AuditLogEntry
impl Debug for AuditLogEntry
Sourceยงimpl<'de> Deserialize<'de> for AuditLogEntry
impl<'de> Deserialize<'de> for AuditLogEntry
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 AuditLogEntry
impl RefUnwindSafe for AuditLogEntry
impl Send for AuditLogEntry
impl Sync for AuditLogEntry
impl Unpin for AuditLogEntry
impl UnsafeUnpin for AuditLogEntry
impl UnwindSafe for AuditLogEntry
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