pub enum GraphicalConnectTypesSupported {
Kvmip,
Oem,
UnsupportedValue,
}Variants§
Kvmip
The controller supports a graphical console connection through a KVM-IP (redirection of Keyboard, Video, Mouse over IP) protocol.
Oem
The controller supports a graphical 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 GraphicalConnectTypesSupported
impl Clone for GraphicalConnectTypesSupported
Source§fn clone(&self) -> GraphicalConnectTypesSupported
fn clone(&self) -> GraphicalConnectTypesSupported
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<'de> Deserialize<'de> for GraphicalConnectTypesSupported
impl<'de> Deserialize<'de> for GraphicalConnectTypesSupported
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 GraphicalConnectTypesSupported
impl PartialEq for GraphicalConnectTypesSupported
Source§fn eq(&self, other: &GraphicalConnectTypesSupported) -> bool
fn eq(&self, other: &GraphicalConnectTypesSupported) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl ToSnakeCase for GraphicalConnectTypesSupported
impl ToSnakeCase for GraphicalConnectTypesSupported
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 GraphicalConnectTypesSupported
impl Eq for GraphicalConnectTypesSupported
impl StructuralPartialEq for GraphicalConnectTypesSupported
Auto Trait Implementations§
impl Freeze for GraphicalConnectTypesSupported
impl RefUnwindSafe for GraphicalConnectTypesSupported
impl Send for GraphicalConnectTypesSupported
impl Sync for GraphicalConnectTypesSupported
impl Unpin for GraphicalConnectTypesSupported
impl UnsafeUnpin for GraphicalConnectTypesSupported
impl UnwindSafe for GraphicalConnectTypesSupported
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