pub struct PasswordChallengeResponseRequest {
pub component: Option<String>,
pub password: String,
}
Expand description
PasswordChallengeResponseRequest : Password challenge response
Fields§
§component: Option<String>
§password: String
Implementations§
Source§impl PasswordChallengeResponseRequest
impl PasswordChallengeResponseRequest
Sourcepub fn new(password: String) -> PasswordChallengeResponseRequest
pub fn new(password: String) -> PasswordChallengeResponseRequest
Password challenge response
Trait Implementations§
Source§impl Clone for PasswordChallengeResponseRequest
impl Clone for PasswordChallengeResponseRequest
Source§fn clone(&self) -> PasswordChallengeResponseRequest
fn clone(&self) -> PasswordChallengeResponseRequest
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 Default for PasswordChallengeResponseRequest
impl Default for PasswordChallengeResponseRequest
Source§fn default() -> PasswordChallengeResponseRequest
fn default() -> PasswordChallengeResponseRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PasswordChallengeResponseRequest
impl<'de> Deserialize<'de> for PasswordChallengeResponseRequest
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 PasswordChallengeResponseRequest
impl PartialEq for PasswordChallengeResponseRequest
Source§fn eq(&self, other: &PasswordChallengeResponseRequest) -> bool
fn eq(&self, other: &PasswordChallengeResponseRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PasswordChallengeResponseRequest
Auto Trait Implementations§
impl Freeze for PasswordChallengeResponseRequest
impl RefUnwindSafe for PasswordChallengeResponseRequest
impl Send for PasswordChallengeResponseRequest
impl Sync for PasswordChallengeResponseRequest
impl Unpin for PasswordChallengeResponseRequest
impl UnwindSafe for PasswordChallengeResponseRequest
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