Struct supabase_auth::models::VerifyEmailOtpParams
source · pub struct VerifyEmailOtpParams {
pub email: String,
pub token: String,
pub otp_type: EmailOtpType,
pub options: Option<VerifyOtpOptions>,
}
Fields§
§email: String
The user’s phone number.
token: String
The otp sent to the user’s phone number.
otp_type: EmailOtpType
The user’s verification type.
options: Option<VerifyOtpOptions>
Optional parameters
Trait Implementations§
source§impl Debug for VerifyEmailOtpParams
impl Debug for VerifyEmailOtpParams
source§impl<'de> Deserialize<'de> for VerifyEmailOtpParams
impl<'de> Deserialize<'de> for VerifyEmailOtpParams
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 VerifyEmailOtpParams
impl RefUnwindSafe for VerifyEmailOtpParams
impl Send for VerifyEmailOtpParams
impl Sync for VerifyEmailOtpParams
impl Unpin for VerifyEmailOtpParams
impl UnwindSafe for VerifyEmailOtpParams
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