pub struct VerifyStartRequest {
pub application_id: Option<Uuid>,
pub login_id: Option<String>,
pub login_id_type: Option<String>,
pub state: Option<HashMap<String, Value>>,
pub verification_strategy: Option<VerificationStrategy>,
}
Expand description
VerifyStartRequest :
Fields§
§application_id: Option<Uuid>
§login_id: Option<String>
§login_id_type: Option<String>
§state: Option<HashMap<String, Value>>
§verification_strategy: Option<VerificationStrategy>
Implementations§
Source§impl VerifyStartRequest
impl VerifyStartRequest
Sourcepub fn new() -> VerifyStartRequest
pub fn new() -> VerifyStartRequest
Trait Implementations§
Source§impl Clone for VerifyStartRequest
impl Clone for VerifyStartRequest
Source§fn clone(&self) -> VerifyStartRequest
fn clone(&self) -> VerifyStartRequest
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 VerifyStartRequest
impl Debug for VerifyStartRequest
Source§impl Default for VerifyStartRequest
impl Default for VerifyStartRequest
Source§fn default() -> VerifyStartRequest
fn default() -> VerifyStartRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VerifyStartRequest
impl<'de> Deserialize<'de> for VerifyStartRequest
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 VerifyStartRequest
impl PartialEq for VerifyStartRequest
Source§impl Serialize for VerifyStartRequest
impl Serialize for VerifyStartRequest
impl StructuralPartialEq for VerifyStartRequest
Auto Trait Implementations§
impl Freeze for VerifyStartRequest
impl RefUnwindSafe for VerifyStartRequest
impl Send for VerifyStartRequest
impl Sync for VerifyStartRequest
impl Unpin for VerifyStartRequest
impl UnwindSafe for VerifyStartRequest
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