pub enum SerialConnectTypesSupported {
Ssh,
Telnet,
Ipmi,
Oem,
UnsupportedValue,
}Variants§
Ssh
The controller supports a serial console connection through the SSH protocol.
Telnet
The controller supports a serial console connection through the Telnet protocol.
Ipmi
The controller supports a serial console connection through the IPMI Serial Over LAN (SOL) protocol.
Oem
The controller supports a serial console 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 SerialConnectTypesSupported
impl Clone for SerialConnectTypesSupported
Source§fn clone(&self) -> SerialConnectTypesSupported
fn clone(&self) -> SerialConnectTypesSupported
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 SerialConnectTypesSupported
impl Debug for SerialConnectTypesSupported
Source§impl<'de> Deserialize<'de> for SerialConnectTypesSupported
impl<'de> Deserialize<'de> for SerialConnectTypesSupported
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 ToSnakeCase for SerialConnectTypesSupported
impl ToSnakeCase for SerialConnectTypesSupported
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 SerialConnectTypesSupported
impl Eq for SerialConnectTypesSupported
impl StructuralPartialEq for SerialConnectTypesSupported
Auto Trait Implementations§
impl Freeze for SerialConnectTypesSupported
impl RefUnwindSafe for SerialConnectTypesSupported
impl Send for SerialConnectTypesSupported
impl Sync for SerialConnectTypesSupported
impl Unpin for SerialConnectTypesSupported
impl UnsafeUnpin for SerialConnectTypesSupported
impl UnwindSafe for SerialConnectTypesSupported
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