pub enum AuthenticationMode {
AuthNone,
BasicAuth,
RedfishSessionAuth,
OemAuth,
}
Variants§
AuthNone
Requests without any sort of authentication are allowed.
BasicAuth
Requests using HTTP Basic Authentication are allowed.
RedfishSessionAuth
Requests using Redfish Session Authentication are allowed.
OemAuth
Requests using OEM authentication mechanisms are allowed.
Trait Implementations§
source§impl Clone for AuthenticationMode
impl Clone for AuthenticationMode
source§fn clone(&self) -> AuthenticationMode
fn clone(&self) -> AuthenticationMode
Returns a copy 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 AuthenticationMode
impl Debug for AuthenticationMode
source§impl Default for AuthenticationMode
impl Default for AuthenticationMode
source§fn default() -> AuthenticationMode
fn default() -> AuthenticationMode
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AuthenticationMode
impl<'de> Deserialize<'de> for AuthenticationMode
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