pub struct CognitoEventUserPoolsVerifyAuthChallengeRequest<T1 = Value>where
T1: DeserializeOwned + Serialize,{
pub user_attributes: HashMap<String, String>,
pub private_challenge_parameters: HashMap<String, String>,
pub challenge_answer: Option<T1>,
pub client_metadata: HashMap<String, String>,
pub user_not_found: bool,
}Expand description
CognitoEventUserPoolsVerifyAuthChallengeRequest defines verify auth challenge request parameters
Fields§
§user_attributes: HashMap<String, String>§private_challenge_parameters: HashMap<String, String>§challenge_answer: Option<T1>§client_metadata: HashMap<String, String>§user_not_found: boolTrait Implementations§
Source§impl<T1> Clone for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
impl<T1> Clone for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
Source§fn clone(&self) -> CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
fn clone(&self) -> CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
Returns a copy 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<T1> Debug for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
impl<T1> Debug for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
Source§impl<T1> Default for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
impl<T1> Default for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
Source§fn default() -> CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
fn default() -> CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
Returns the “default value” for a type. Read more
Source§impl<'de, T1> Deserialize<'de> for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>where
T1: DeserializeOwned + Serialize,
impl<'de, T1> Deserialize<'de> for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>where
T1: DeserializeOwned + Serialize,
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<T1> PartialEq for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
impl<T1> PartialEq for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
Source§fn eq(
&self,
other: &CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>,
) -> bool
fn eq( &self, other: &CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>, ) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<T1> Serialize for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>where
T1: DeserializeOwned + Serialize,
impl<T1> Serialize for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>where
T1: DeserializeOwned + Serialize,
impl<T1> Eq for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>
impl<T1> StructuralPartialEq for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>where
T1: DeserializeOwned + Serialize,
Auto Trait Implementations§
impl<T1> Freeze for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>where
T1: Freeze,
impl<T1> RefUnwindSafe for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>where
T1: RefUnwindSafe,
impl<T1> Send for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>where
T1: Send,
impl<T1> Sync for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>where
T1: Sync,
impl<T1> Unpin for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>where
T1: Unpin,
impl<T1> UnwindSafe for CognitoEventUserPoolsVerifyAuthChallengeRequest<T1>where
T1: UnwindSafe,
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