pub enum NetworkDeviceTechnology {
Disabled,
Ethernet,
FibreChannel,
Iscsi,
FibreChannelOverEthernet,
InfiniBand,
}
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. Added in version v1_5_0.
Trait Implementations§
source§impl Clone for NetworkDeviceTechnology
impl Clone for NetworkDeviceTechnology
source§fn clone(&self) -> NetworkDeviceTechnology
fn clone(&self) -> NetworkDeviceTechnology
Returns a copy 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 Default for NetworkDeviceTechnology
impl Default for NetworkDeviceTechnology
source§fn default() -> NetworkDeviceTechnology
fn default() -> NetworkDeviceTechnology
Returns the “default value” for a type. Read more
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