pub enum AuthenticationType {
Multiple,
Single,
None,
}Expand description
Authentication
Variants§
Multiple
requires multiple instances of authentication: 0.45
Single
requires single instance of authentication: 0.56
None
requires no authentication: 0.704
Implementations§
Source§impl AuthenticationType
impl AuthenticationType
pub fn metric_help(&self) -> Help
Trait Implementations§
Source§impl Clone for AuthenticationType
impl Clone for AuthenticationType
Source§fn clone(&self) -> AuthenticationType
fn clone(&self) -> AuthenticationType
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 Debug for AuthenticationType
impl Debug for AuthenticationType
Source§impl<'de> Deserialize<'de> for AuthenticationType
impl<'de> Deserialize<'de> for AuthenticationType
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 Display for AuthenticationType
impl Display for AuthenticationType
Source§impl FromStr for AuthenticationType
impl FromStr for AuthenticationType
Source§impl Metric for AuthenticationType
impl Metric for AuthenticationType
Source§impl PartialEq for AuthenticationType
impl PartialEq for AuthenticationType
Source§impl Serialize for AuthenticationType
impl Serialize for AuthenticationType
impl StructuralPartialEq for AuthenticationType
Auto Trait Implementations§
impl Freeze for AuthenticationType
impl RefUnwindSafe for AuthenticationType
impl Send for AuthenticationType
impl Sync for AuthenticationType
impl Unpin for AuthenticationType
impl UnwindSafe for AuthenticationType
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