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