pub enum AuthenticationTypes {
Token,
KerberosKeytab,
UsernameAndPassword,
Oem,
UnsupportedValue,
}Variants§
Token
An opaque authentication token.
KerberosKeytab
A Kerberos keytab.
UsernameAndPassword
A username and password combination.
Oem
An OEM-specific authentication mechanism.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for AuthenticationTypes
impl Clone for AuthenticationTypes
Source§fn clone(&self) -> AuthenticationTypes
fn clone(&self) -> AuthenticationTypes
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 moreimpl Copy for AuthenticationTypes
Source§impl Debug for AuthenticationTypes
impl Debug for AuthenticationTypes
Source§impl<'de> Deserialize<'de> for AuthenticationTypes
impl<'de> Deserialize<'de> for AuthenticationTypes
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
impl Eq for AuthenticationTypes
Source§impl PartialEq for AuthenticationTypes
impl PartialEq for AuthenticationTypes
Source§fn eq(&self, other: &AuthenticationTypes) -> bool
fn eq(&self, other: &AuthenticationTypes) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuthenticationTypes
impl Serialize for AuthenticationTypes
impl StructuralPartialEq for AuthenticationTypes
Source§impl ToSnakeCase for AuthenticationTypes
impl ToSnakeCase for AuthenticationTypes
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringAuto Trait Implementations§
impl Freeze for AuthenticationTypes
impl RefUnwindSafe for AuthenticationTypes
impl Send for AuthenticationTypes
impl Sync for AuthenticationTypes
impl Unpin for AuthenticationTypes
impl UnsafeUnpin for AuthenticationTypes
impl UnwindSafe for AuthenticationTypes
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