pub enum NetworkDeviceTechnology {
Disabled,
Ethernet,
FibreChannel,
Iscsi,
FibreChannelOverEthernet,
InfiniBand,
UnsupportedValue,
}Variants§
Disabled
Neither enumerated nor visible to the operating system.
Ethernet
Appears to the operating system as an Ethernet device.
FibreChannel
Appears to the operating system as a Fibre Channel device.
Iscsi
Appears to the operating system as an iSCSI device.
FibreChannelOverEthernet
Appears to the operating system as an FCoE device.
InfiniBand
Appears to the operating system as an InfiniBand device.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for NetworkDeviceTechnology
impl Clone for NetworkDeviceTechnology
Source§fn clone(&self) -> NetworkDeviceTechnology
fn clone(&self) -> NetworkDeviceTechnology
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 NetworkDeviceTechnology
impl Debug for NetworkDeviceTechnology
Source§impl<'de> Deserialize<'de> for NetworkDeviceTechnology
impl<'de> Deserialize<'de> for NetworkDeviceTechnology
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 NetworkDeviceTechnology
impl PartialEq for NetworkDeviceTechnology
Source§impl Serialize for NetworkDeviceTechnology
impl Serialize for NetworkDeviceTechnology
Source§impl ToSnakeCase for NetworkDeviceTechnology
impl ToSnakeCase for NetworkDeviceTechnology
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 NetworkDeviceTechnology
impl Eq for NetworkDeviceTechnology
impl StructuralPartialEq for NetworkDeviceTechnology
Auto Trait Implementations§
impl Freeze for NetworkDeviceTechnology
impl RefUnwindSafe for NetworkDeviceTechnology
impl Send for NetworkDeviceTechnology
impl Sync for NetworkDeviceTechnology
impl Unpin for NetworkDeviceTechnology
impl UnsafeUnpin for NetworkDeviceTechnology
impl UnwindSafe for NetworkDeviceTechnology
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