pub struct SignUpWithPasswordOptions {
pub email_redirect_to: Option<String>,
pub data: Option<Value>,
pub captcha_token: Option<String>,
}
Fields§
§email_redirect_to: Option<String>
The redirect url embedded in the email link
data: Option<Value>
A custom data object to store the user’s metadata. This maps to the auth.users.raw_user_meta_data
column.
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 SignUpWithPasswordOptions
impl Clone for SignUpWithPasswordOptions
Source§fn clone(&self) -> SignUpWithPasswordOptions
fn clone(&self) -> SignUpWithPasswordOptions
Returns a copy 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 SignUpWithPasswordOptions
impl Debug for SignUpWithPasswordOptions
Source§impl Default for SignUpWithPasswordOptions
impl Default for SignUpWithPasswordOptions
Source§fn default() -> SignUpWithPasswordOptions
fn default() -> SignUpWithPasswordOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignUpWithPasswordOptions
impl<'de> Deserialize<'de> for SignUpWithPasswordOptions
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
impl StructuralPartialEq for SignUpWithPasswordOptions
Auto Trait Implementations§
impl Freeze for SignUpWithPasswordOptions
impl RefUnwindSafe for SignUpWithPasswordOptions
impl Send for SignUpWithPasswordOptions
impl Sync for SignUpWithPasswordOptions
impl Unpin for SignUpWithPasswordOptions
impl UnwindSafe for SignUpWithPasswordOptions
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