pub enum TACACSplusPasswordExchangeProtocol {
ASCII,
PAP,
CHAP,
MSCHAPv1,
MSCHAPv2,
}
Variants§
ASCII
This value shall indicate the ASCII Login flow as described under section 5.4.2 of RFC8907.
PAP
This value shall indicate the PAP Login flow as described under section 5.4.2 of RFC8907.
CHAP
This value shall indicate the CHAP Login flow as described under section 5.4.2 of RFC8907.
MSCHAPv1
This value shall indicate the MS-CHAP v1 Login flow as described under section 5.4.2 of RFC8907.
MSCHAPv2
This value shall indicate the MS-CHAP v2 Login flow as described under section 5.4.2 of RFC8907.
Trait Implementations§
Source§impl Clone for TACACSplusPasswordExchangeProtocol
impl Clone for TACACSplusPasswordExchangeProtocol
Source§fn clone(&self) -> TACACSplusPasswordExchangeProtocol
fn clone(&self) -> TACACSplusPasswordExchangeProtocol
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for TACACSplusPasswordExchangeProtocol
impl Default for TACACSplusPasswordExchangeProtocol
Source§fn default() -> TACACSplusPasswordExchangeProtocol
fn default() -> TACACSplusPasswordExchangeProtocol
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TACACSplusPasswordExchangeProtocol
impl<'de> Deserialize<'de> for TACACSplusPasswordExchangeProtocol
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 Metadata<'static> for TACACSplusPasswordExchangeProtocol
impl Metadata<'static> for TACACSplusPasswordExchangeProtocol
Source§const JSON_SCHEMA: &'static str = "AccountService.v1_13_0.json"
const JSON_SCHEMA: &'static str = "AccountService.v1_13_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for TACACSplusPasswordExchangeProtocol
impl RefUnwindSafe for TACACSplusPasswordExchangeProtocol
impl Send for TACACSplusPasswordExchangeProtocol
impl Sync for TACACSplusPasswordExchangeProtocol
impl Unpin for TACACSplusPasswordExchangeProtocol
impl UnwindSafe for TACACSplusPasswordExchangeProtocol
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