pub enum SnmpEncryptionProtocols {
None,
CbcDes,
Cfb128Aes128,
Cfb128Aes192,
Cfb128Aes256,
UnsupportedValue,
}Variants§
None
No encryption.
This value shall indicate there is no encryption.
CbcDes
CBC-DES encryption.
This value shall indicate encryption conforms to the RFC3414-defined CBC-DES encryption protocol.
Cfb128Aes128
CFB128-AES-128 encryption.
This value shall indicate encryption conforms to the RFC3826-defined CFB128-AES-128 encryption protocol.
Cfb128Aes192
CFB128-AES-192 encryption.
This value shall indicate encryption conforms to the CFB128-AES-192 encryption protocol, extended from RFC3826.
Cfb128Aes256
CFB128-AES-256 encryption.
This value shall indicate encryption conforms to the CFB128-AES-256 encryption protocol, extended from RFC3826.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for SnmpEncryptionProtocols
impl Clone for SnmpEncryptionProtocols
Source§fn clone(&self) -> SnmpEncryptionProtocols
fn clone(&self) -> SnmpEncryptionProtocols
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 SnmpEncryptionProtocols
impl Debug for SnmpEncryptionProtocols
Source§impl<'de> Deserialize<'de> for SnmpEncryptionProtocols
impl<'de> Deserialize<'de> for SnmpEncryptionProtocols
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 PartialEq for SnmpEncryptionProtocols
impl PartialEq for SnmpEncryptionProtocols
Source§impl Serialize for SnmpEncryptionProtocols
impl Serialize for SnmpEncryptionProtocols
Source§impl ToSnakeCase for SnmpEncryptionProtocols
impl ToSnakeCase for SnmpEncryptionProtocols
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringimpl Copy for SnmpEncryptionProtocols
impl Eq for SnmpEncryptionProtocols
impl StructuralPartialEq for SnmpEncryptionProtocols
Auto Trait Implementations§
impl Freeze for SnmpEncryptionProtocols
impl RefUnwindSafe for SnmpEncryptionProtocols
impl Send for SnmpEncryptionProtocols
impl Sync for SnmpEncryptionProtocols
impl Unpin for SnmpEncryptionProtocols
impl UnsafeUnpin for SnmpEncryptionProtocols
impl UnwindSafe for SnmpEncryptionProtocols
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