pub struct NewAuditLog {
pub id: Uuid,
pub user_id: Option<Uuid>,
pub event_type: String,
pub metadata: Option<Value>,
pub ip_address: Option<String>,
pub created_at: NaiveDateTime,
}Fields§
§id: Uuid§user_id: Option<Uuid>§event_type: String§metadata: Option<Value>§ip_address: Option<String>§created_at: NaiveDateTimeTrait Implementations§
Source§impl Clone for NewAuditLog
impl Clone for NewAuditLog
Source§fn clone(&self) -> NewAuditLog
fn clone(&self) -> NewAuditLog
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 NewAuditLog
impl Debug for NewAuditLog
Source§impl<'de> Deserialize<'de> for NewAuditLog
impl<'de> Deserialize<'de> for NewAuditLog
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 NewAuditLog
impl RefUnwindSafe for NewAuditLog
impl Send for NewAuditLog
impl Sync for NewAuditLog
impl Unpin for NewAuditLog
impl UnsafeUnpin for NewAuditLog
impl UnwindSafe for NewAuditLog
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