pub struct UserLoginMethod {
pub id: String,
pub user_id: String,
pub login_type: String,
pub identifier: String,
pub verified: bool,
pub is_primary: bool,
pub created_at: String,
pub updated_at: String,
}Expand description
用户登录方式
Fields§
§id: String§user_id: String§login_type: String§identifier: String§verified: bool§is_primary: bool§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for UserLoginMethod
impl Clone for UserLoginMethod
Source§fn clone(&self) -> UserLoginMethod
fn clone(&self) -> UserLoginMethod
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 UserLoginMethod
impl Debug for UserLoginMethod
Source§impl<'de> Deserialize<'de> for UserLoginMethod
impl<'de> Deserialize<'de> for UserLoginMethod
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 UserLoginMethod
impl RefUnwindSafe for UserLoginMethod
impl Send for UserLoginMethod
impl Sync for UserLoginMethod
impl Unpin for UserLoginMethod
impl UnsafeUnpin for UserLoginMethod
impl UnwindSafe for UserLoginMethod
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