pub struct OtpLoginIntentV2 {
pub verification_token: String,
pub public_key: String,
pub client_signature: Option<ClientSignature>,
pub expiration_seconds: Option<String>,
pub invalidate_existing: Option<bool>,
pub session_profile_id: Option<String>,
}Fields§
§verification_token: String§public_key: String@inject_tag: validate:“omitempty,hexadecimal”
client_signature: Option<ClientSignature>§expiration_seconds: Option<String>§invalidate_existing: Option<bool>§session_profile_id: Option<String>Trait Implementations§
Source§impl Clone for OtpLoginIntentV2
impl Clone for OtpLoginIntentV2
Source§fn clone(&self) -> OtpLoginIntentV2
fn clone(&self) -> OtpLoginIntentV2
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OtpLoginIntentV2
impl Debug for OtpLoginIntentV2
Source§impl<'de> Deserialize<'de> for OtpLoginIntentV2
impl<'de> Deserialize<'de> for OtpLoginIntentV2
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 OtpLoginIntentV2
impl PartialEq for OtpLoginIntentV2
Source§impl Serialize for OtpLoginIntentV2
impl Serialize for OtpLoginIntentV2
impl StructuralPartialEq for OtpLoginIntentV2
Auto Trait Implementations§
impl Freeze for OtpLoginIntentV2
impl RefUnwindSafe for OtpLoginIntentV2
impl Send for OtpLoginIntentV2
impl Sync for OtpLoginIntentV2
impl Unpin for OtpLoginIntentV2
impl UnsafeUnpin for OtpLoginIntentV2
impl UnwindSafe for OtpLoginIntentV2
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