pub struct LoginActivity {
pub created_at: String,
pub ip: String,
pub browser: String,
pub device: String,
pub os: String,
pub login_with: String,
pub open_id_provider: i32,
pub passkey: Option<String>,
pub success: bool,
pub webdav: bool,
}Expand description
Login activity
Fields§
§created_at: String§ip: String§browser: String§device: String§os: String§login_with: String§open_id_provider: i32§passkey: Option<String>§success: bool§webdav: boolTrait Implementations§
Source§impl Clone for LoginActivity
impl Clone for LoginActivity
Source§fn clone(&self) -> LoginActivity
fn clone(&self) -> LoginActivity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LoginActivity
impl Debug for LoginActivity
Source§impl<'de> Deserialize<'de> for LoginActivity
impl<'de> Deserialize<'de> for LoginActivity
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 LoginActivity
impl RefUnwindSafe for LoginActivity
impl Send for LoginActivity
impl Sync for LoginActivity
impl Unpin for LoginActivity
impl UnsafeUnpin for LoginActivity
impl UnwindSafe for LoginActivity
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