pub struct LoginAccountParams {
pub login_type: String,
pub api_key: Option<String>,
pub id_token: Option<String>,
pub access_token: Option<String>,
pub extra: Map<String, Value>,
}Fields§
§login_type: String§api_key: Option<String>§id_token: Option<String>§access_token: Option<String>§extra: Map<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for LoginAccountParams
impl Clone for LoginAccountParams
Source§fn clone(&self) -> LoginAccountParams
fn clone(&self) -> LoginAccountParams
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 LoginAccountParams
impl Debug for LoginAccountParams
Source§impl<'de> Deserialize<'de> for LoginAccountParams
impl<'de> Deserialize<'de> for LoginAccountParams
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 LoginAccountParams
impl RefUnwindSafe for LoginAccountParams
impl Send for LoginAccountParams
impl Sync for LoginAccountParams
impl Unpin for LoginAccountParams
impl UnsafeUnpin for LoginAccountParams
impl UnwindSafe for LoginAccountParams
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