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