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