pub struct AuthenticatorEmailChallenge {
pub flow_info: Option<ContextualFlowInfo>,
pub component: Option<String>,
pub response_errors: Option<HashMap<String, Vec<ErrorDetail>>>,
pub pending_user: String,
pub pending_user_avatar: String,
pub email: Option<Option<String>>,
pub email_required: Option<bool>,
}Expand description
AuthenticatorEmailChallenge : Authenticator Email Setup challenge
Fields§
§flow_info: Option<ContextualFlowInfo>§component: Option<String>§response_errors: Option<HashMap<String, Vec<ErrorDetail>>>§pending_user: String§pending_user_avatar: String§email: Option<Option<String>>§email_required: Option<bool>Implementations§
Source§impl AuthenticatorEmailChallenge
impl AuthenticatorEmailChallenge
Sourcepub fn new(
pending_user: String,
pending_user_avatar: String,
) -> AuthenticatorEmailChallenge
pub fn new( pending_user: String, pending_user_avatar: String, ) -> AuthenticatorEmailChallenge
Authenticator Email Setup challenge
Trait Implementations§
Source§impl Clone for AuthenticatorEmailChallenge
impl Clone for AuthenticatorEmailChallenge
Source§fn clone(&self) -> AuthenticatorEmailChallenge
fn clone(&self) -> AuthenticatorEmailChallenge
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 AuthenticatorEmailChallenge
impl Debug for AuthenticatorEmailChallenge
Source§impl Default for AuthenticatorEmailChallenge
impl Default for AuthenticatorEmailChallenge
Source§fn default() -> AuthenticatorEmailChallenge
fn default() -> AuthenticatorEmailChallenge
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthenticatorEmailChallenge
impl<'de> Deserialize<'de> for AuthenticatorEmailChallenge
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 AuthenticatorEmailChallenge
Auto Trait Implementations§
impl Freeze for AuthenticatorEmailChallenge
impl RefUnwindSafe for AuthenticatorEmailChallenge
impl Send for AuthenticatorEmailChallenge
impl Sync for AuthenticatorEmailChallenge
impl Unpin for AuthenticatorEmailChallenge
impl UnwindSafe for AuthenticatorEmailChallenge
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