pub struct LoginAnonymouslyOptions {
pub data: Option<Value>,
pub captcha_token: Option<String>,
}Fields§
§data: Option<Value>The data should be a JSON object that includes user-specific info, such as their first and last name.
captcha_token: Option<String>Verification token received when the user completes the captcha on the site.
Trait Implementations§
Source§impl Clone for LoginAnonymouslyOptions
impl Clone for LoginAnonymouslyOptions
Source§fn clone(&self) -> LoginAnonymouslyOptions
fn clone(&self) -> LoginAnonymouslyOptions
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 LoginAnonymouslyOptions
impl Debug for LoginAnonymouslyOptions
Source§impl Default for LoginAnonymouslyOptions
impl Default for LoginAnonymouslyOptions
Source§fn default() -> LoginAnonymouslyOptions
fn default() -> LoginAnonymouslyOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoginAnonymouslyOptions
impl<'de> Deserialize<'de> for LoginAnonymouslyOptions
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
Source§impl PartialEq for LoginAnonymouslyOptions
impl PartialEq for LoginAnonymouslyOptions
Source§impl Serialize for LoginAnonymouslyOptions
impl Serialize for LoginAnonymouslyOptions
impl StructuralPartialEq for LoginAnonymouslyOptions
Auto Trait Implementations§
impl Freeze for LoginAnonymouslyOptions
impl RefUnwindSafe for LoginAnonymouslyOptions
impl Send for LoginAnonymouslyOptions
impl Sync for LoginAnonymouslyOptions
impl Unpin for LoginAnonymouslyOptions
impl UnwindSafe for LoginAnonymouslyOptions
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