pub struct AccountSessionLogEntry {
pub id: Option<String>,
pub time: Option<String>,
pub user: Option<String>,
pub user_agent: Option<String>,
pub ip_address: Option<String>,
pub user_role: Option<String>,
pub type: Option<String>,
pub action: Option<String>,
pub extra: Value,
}
Expand description
Account session log entry
Fields§
§id: Option<String>
§time: Option<String>
§user: Option<String>
§user_agent: Option<String>
§ip_address: Option<String>
§user_role: Option<String>
§type: Option<String>
§action: Option<String>
§extra: Value
Additional fields from the API
Trait Implementations§
Source§impl Clone for AccountSessionLogEntry
impl Clone for AccountSessionLogEntry
Source§fn clone(&self) -> AccountSessionLogEntry
fn clone(&self) -> AccountSessionLogEntry
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 AccountSessionLogEntry
impl Debug for AccountSessionLogEntry
Source§impl<'de> Deserialize<'de> for AccountSessionLogEntry
impl<'de> Deserialize<'de> for AccountSessionLogEntry
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 AccountSessionLogEntry
impl RefUnwindSafe for AccountSessionLogEntry
impl Send for AccountSessionLogEntry
impl Sync for AccountSessionLogEntry
impl Unpin for AccountSessionLogEntry
impl UnwindSafe for AccountSessionLogEntry
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