pub struct AccessLogsResponseLogin {
pub count: Option<i32>,
pub country: Option<String>,
pub date_first: Option<f32>,
pub date_last: Option<f32>,
pub ip: Option<String>,
pub isp: Option<String>,
pub region: Option<String>,
pub user_agent: Option<String>,
pub user_id: Option<String>,
pub username: Option<String>,
}Fields§
§count: Option<i32>§country: Option<String>§date_first: Option<f32>§date_last: Option<f32>§ip: Option<String>§isp: Option<String>§region: Option<String>§user_agent: Option<String>§user_id: Option<String>§username: Option<String>Trait Implementations§
Source§impl Clone for AccessLogsResponseLogin
impl Clone for AccessLogsResponseLogin
Source§fn clone(&self) -> AccessLogsResponseLogin
fn clone(&self) -> AccessLogsResponseLogin
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 AccessLogsResponseLogin
impl Debug for AccessLogsResponseLogin
Source§impl<'de> Deserialize<'de> for AccessLogsResponseLogin
impl<'de> Deserialize<'de> for AccessLogsResponseLogin
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 AccessLogsResponseLogin
impl RefUnwindSafe for AccessLogsResponseLogin
impl Send for AccessLogsResponseLogin
impl Sync for AccessLogsResponseLogin
impl Unpin for AccessLogsResponseLogin
impl UnwindSafe for AccessLogsResponseLogin
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