pub struct KeyboardInteractiveAuthenticationRequest {
pub name: String,
pub instruction: String,
pub prompts: Vec<KeyboardInteractiveAuthenticationPrompt>,
}Fields§
§name: String§instruction: String§prompts: Vec<KeyboardInteractiveAuthenticationPrompt>Trait Implementations§
Source§impl Clone for KeyboardInteractiveAuthenticationRequest
impl Clone for KeyboardInteractiveAuthenticationRequest
Source§fn clone(&self) -> KeyboardInteractiveAuthenticationRequest
fn clone(&self) -> KeyboardInteractiveAuthenticationRequest
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<'de> Deserialize<'de> for KeyboardInteractiveAuthenticationRequest
impl<'de> Deserialize<'de> for KeyboardInteractiveAuthenticationRequest
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 Ord for KeyboardInteractiveAuthenticationRequest
impl Ord for KeyboardInteractiveAuthenticationRequest
Source§fn cmp(&self, other: &KeyboardInteractiveAuthenticationRequest) -> Ordering
fn cmp(&self, other: &KeyboardInteractiveAuthenticationRequest) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for KeyboardInteractiveAuthenticationRequest
impl PartialEq for KeyboardInteractiveAuthenticationRequest
Source§fn eq(&self, other: &KeyboardInteractiveAuthenticationRequest) -> bool
fn eq(&self, other: &KeyboardInteractiveAuthenticationRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for KeyboardInteractiveAuthenticationRequest
impl PartialOrd for KeyboardInteractiveAuthenticationRequest
impl Eq for KeyboardInteractiveAuthenticationRequest
impl StructuralPartialEq for KeyboardInteractiveAuthenticationRequest
Auto Trait Implementations§
impl Freeze for KeyboardInteractiveAuthenticationRequest
impl RefUnwindSafe for KeyboardInteractiveAuthenticationRequest
impl Send for KeyboardInteractiveAuthenticationRequest
impl Sync for KeyboardInteractiveAuthenticationRequest
impl Unpin for KeyboardInteractiveAuthenticationRequest
impl UnwindSafe for KeyboardInteractiveAuthenticationRequest
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