pub struct AccessLogEntry {
pub user_id: UserId,
pub action: AccessAction,
pub timestamp: SystemTime,
pub ip_address: Option<String>,
pub device_id: Option<String>,
}Expand description
Access log entry
Fields§
§user_id: UserId§action: AccessAction§timestamp: SystemTime§ip_address: Option<String>§device_id: Option<String>Trait Implementations§
Source§impl Clone for AccessLogEntry
impl Clone for AccessLogEntry
Source§fn clone(&self) -> AccessLogEntry
fn clone(&self) -> AccessLogEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AccessLogEntry
impl Debug for AccessLogEntry
Source§impl<'de> Deserialize<'de> for AccessLogEntry
impl<'de> Deserialize<'de> for AccessLogEntry
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 AccessLogEntry
impl RefUnwindSafe for AccessLogEntry
impl Send for AccessLogEntry
impl Sync for AccessLogEntry
impl Unpin for AccessLogEntry
impl UnwindSafe for AccessLogEntry
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