pub struct AccessLogEntry {
pub timestamp: u64,
pub ip: String,
pub action: Option<String>,
pub result: Option<String>,
pub country: Option<String>,
pub city: Option<String>,
pub id: Option<u64>,
pub data: Option<Value>,
}Expand description
Access log entry representing a single access event
Fields§
§timestamp: u64Timestamp of the access event in milliseconds
ip: StringIP address from which the access occurred
action: Option<String>Action performed (e.g., “login”, “api_call”)
result: Option<String>Result of the action (e.g., “success”, “failure”)
country: Option<String>Country code derived from IP address
city: Option<String>City derived from IP address
id: Option<u64>Log entry ID
data: Option<Value>Additional data associated with the access event
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§fn clone_from(&mut self, source: &Self)
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
Source§impl PartialEq for AccessLogEntry
impl PartialEq for AccessLogEntry
Source§impl Serialize for AccessLogEntry
impl Serialize for AccessLogEntry
impl StructuralPartialEq for AccessLogEntry
Auto Trait Implementations§
impl Freeze for AccessLogEntry
impl RefUnwindSafe for AccessLogEntry
impl Send for AccessLogEntry
impl Sync for AccessLogEntry
impl Unpin for AccessLogEntry
impl UnsafeUnpin 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