Struct fusionauth_rust_client::models::audit_log::AuditLog
source · pub struct AuditLog {
pub data: Option<HashMap<String, Value>>,
pub id: Option<i64>,
pub insert_instant: Option<i64>,
pub insert_user: Option<String>,
pub message: Option<String>,
pub new_value: Option<Value>,
pub old_value: Option<Value>,
pub reason: Option<String>,
}
Expand description
AuditLog : An audit log.
Fields§
§data: Option<HashMap<String, Value>>
§id: Option<i64>
§insert_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
insert_user: Option<String>
§message: Option<String>
§new_value: Option<Value>
§old_value: Option<Value>
§reason: Option<String>
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for AuditLog
impl<'de> Deserialize<'de> for AuditLog
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 AuditLog
impl PartialEq for AuditLog
impl StructuralPartialEq for AuditLog
Auto Trait Implementations§
impl RefUnwindSafe for AuditLog
impl Send for AuditLog
impl Sync for AuditLog
impl Unpin for AuditLog
impl UnwindSafe for AuditLog
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