pub enum CommandConnectTypesSupported {
Ssh,
Telnet,
Ipmi,
Oem,
UnsupportedValue,
}Variants§
Ssh
The controller supports a command shell connection through the SSH protocol.
Telnet
The controller supports a command shell connection through the Telnet protocol.
Ipmi
The controller supports a command shell connection through the IPMI Serial Over LAN (SOL) protocol.
Oem
The controller supports a command shell connection through an OEM-specific protocol.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for CommandConnectTypesSupported
impl Clone for CommandConnectTypesSupported
Source§fn clone(&self) -> CommandConnectTypesSupported
fn clone(&self) -> CommandConnectTypesSupported
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 CommandConnectTypesSupported
impl Debug for CommandConnectTypesSupported
Source§impl<'de> Deserialize<'de> for CommandConnectTypesSupported
impl<'de> Deserialize<'de> for CommandConnectTypesSupported
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 CommandConnectTypesSupported
impl PartialEq for CommandConnectTypesSupported
Source§fn eq(&self, other: &CommandConnectTypesSupported) -> bool
fn eq(&self, other: &CommandConnectTypesSupported) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl ToSnakeCase for CommandConnectTypesSupported
impl ToSnakeCase for CommandConnectTypesSupported
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 CommandConnectTypesSupported
impl Eq for CommandConnectTypesSupported
impl StructuralPartialEq for CommandConnectTypesSupported
Auto Trait Implementations§
impl Freeze for CommandConnectTypesSupported
impl RefUnwindSafe for CommandConnectTypesSupported
impl Send for CommandConnectTypesSupported
impl Sync for CommandConnectTypesSupported
impl Unpin for CommandConnectTypesSupported
impl UnsafeUnpin for CommandConnectTypesSupported
impl UnwindSafe for CommandConnectTypesSupported
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