pub struct AuditLogData {
pub id: Option<String>,
pub timestamp: Option<f64>,
pub created_at: Option<f64>,
pub user: Option<String>,
pub subject: Option<String>,
pub event: Option<String>,
pub tenant_id: Option<String>,
pub user_id: Option<String>,
}
Fields§
§id: Option<String>
The unique identifier of the audit log
timestamp: Option<f64>
The timestamp of the audit log
created_at: Option<f64>
The timestamp of the audit log creation
user: Option<String>
The user who performed the action
subject: Option<String>
The subject of the action
event: Option<String>
The event that was performed
tenant_id: Option<String>
The tenant ID of the audit log
user_id: Option<String>
The user ID of the audit log
Implementations§
Source§impl AuditLogData
impl AuditLogData
pub fn new() -> AuditLogData
Trait Implementations§
Source§impl Clone for AuditLogData
impl Clone for AuditLogData
Source§fn clone(&self) -> AuditLogData
fn clone(&self) -> AuditLogData
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 AuditLogData
impl Debug for AuditLogData
Source§impl Default for AuditLogData
impl Default for AuditLogData
Source§fn default() -> AuditLogData
fn default() -> AuditLogData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogData
impl<'de> Deserialize<'de> for AuditLogData
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
Source§impl PartialEq for AuditLogData
impl PartialEq for AuditLogData
Source§impl Serialize for AuditLogData
impl Serialize for AuditLogData
impl StructuralPartialEq for AuditLogData
Auto Trait Implementations§
impl Freeze for AuditLogData
impl RefUnwindSafe for AuditLogData
impl Send for AuditLogData
impl Sync for AuditLogData
impl Unpin for AuditLogData
impl UnwindSafe for AuditLogData
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