pub struct AuthenticatorInfo {
pub description: String,
pub version_maj: u32,
pub version_min: u32,
pub version_rev: u32,
pub id: AuthType,
}Expand description
Structure holding the basic information that defines the authenticators in the service for client discovery.
Fields
description: StringShort description of the authenticator.
version_maj: u32Authenticator implementation version major.
version_min: u32Authenticator implementation version minor.
version_rev: u32Authenticator implementation version revision number.
id: AuthTypeAuthenticator ID to use on the wire protocol to communicate with this authenticator.
Trait Implementations
sourceimpl Clone for AuthenticatorInfo
impl Clone for AuthenticatorInfo
sourcefn clone(&self) -> AuthenticatorInfo
fn clone(&self) -> AuthenticatorInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AuthenticatorInfo
impl Debug for AuthenticatorInfo
sourceimpl Hash for AuthenticatorInfo
impl Hash for AuthenticatorInfo
sourceimpl PartialEq<AuthenticatorInfo> for AuthenticatorInfo
impl PartialEq<AuthenticatorInfo> for AuthenticatorInfo
sourcefn eq(&self, other: &AuthenticatorInfo) -> bool
fn eq(&self, other: &AuthenticatorInfo) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl Eq for AuthenticatorInfo
impl StructuralEq for AuthenticatorInfo
impl StructuralPartialEq for AuthenticatorInfo
Auto Trait Implementations
impl RefUnwindSafe for AuthenticatorInfo
impl Send for AuthenticatorInfo
impl Sync for AuthenticatorInfo
impl Unpin for AuthenticatorInfo
impl UnwindSafe for AuthenticatorInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more