pub struct AuthResponse {
pub session_data: BTreeMap<String, String>,
pub verifier_type: Option<u32>,
pub capabilities: Option<ClientCapabilities>,
}Fields§
§session_data: BTreeMap<String, String>§verifier_type: Option<u32>§capabilities: Option<ClientCapabilities>Trait Implementations§
Source§impl Clone for AuthResponse
impl Clone for AuthResponse
Source§fn clone(&self) -> AuthResponse
fn clone(&self) -> AuthResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AuthResponse
impl Debug for AuthResponse
Source§impl Default for AuthResponse
impl Default for AuthResponse
Source§fn default() -> AuthResponse
fn default() -> AuthResponse
Returns the “default value” for a type. Read more
impl Eq for AuthResponse
Source§impl PartialEq for AuthResponse
impl PartialEq for AuthResponse
Source§fn eq(&self, other: &AuthResponse) -> bool
fn eq(&self, other: &AuthResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AuthResponse
Auto Trait Implementations§
impl Freeze for AuthResponse
impl RefUnwindSafe for AuthResponse
impl Send for AuthResponse
impl Sync for AuthResponse
impl Unpin for AuthResponse
impl UnsafeUnpin for AuthResponse
impl UnwindSafe for AuthResponse
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