pub struct TokenUserAccountAuthInput {
pub email: Option<String>,
pub token: Option<String>,
pub timezone: Option<String>,
pub invite_link: Option<String>,
}Fields§
§email: Option<String>The email which to login via the magic login code.
token: Option<String>The magic login code.
timezone: Option<String>The timezone of the user’s browser.
invite_link: Option<String>An optional invite link for an organization.
Trait Implementations§
Source§impl Clone for TokenUserAccountAuthInput
impl Clone for TokenUserAccountAuthInput
Source§fn clone(&self) -> TokenUserAccountAuthInput
fn clone(&self) -> TokenUserAccountAuthInput
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 TokenUserAccountAuthInput
impl Debug for TokenUserAccountAuthInput
Source§impl Default for TokenUserAccountAuthInput
impl Default for TokenUserAccountAuthInput
Source§fn default() -> TokenUserAccountAuthInput
fn default() -> TokenUserAccountAuthInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TokenUserAccountAuthInput
impl<'de> Deserialize<'de> for TokenUserAccountAuthInput
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 TokenUserAccountAuthInput
impl RefUnwindSafe for TokenUserAccountAuthInput
impl Send for TokenUserAccountAuthInput
impl Sync for TokenUserAccountAuthInput
impl Unpin for TokenUserAccountAuthInput
impl UnwindSafe for TokenUserAccountAuthInput
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