pub struct AccessLog {
pub city: String,
pub country: String,
pub data: Option<Value>,
pub id: i64,
pub ip: String,
pub log: String,
pub timestamp: i64,
}Fields§
§city: String§country: String§data: Option<Value>§id: i64§ip: String§log: String§timestamp: i64Trait Implementations§
Source§impl<'de> Deserialize<'de> for AccessLog
impl<'de> Deserialize<'de> for AccessLog
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
impl StructuralPartialEq for AccessLog
Auto Trait Implementations§
impl Freeze for AccessLog
impl RefUnwindSafe for AccessLog
impl Send for AccessLog
impl Sync for AccessLog
impl Unpin for AccessLog
impl UnwindSafe for AccessLog
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