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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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
Source§impl Metadata<'static> for NetworkDeviceTechnology
impl Metadata<'static> for NetworkDeviceTechnology
Source§const JSON_SCHEMA: &'static str = "NetworkDeviceFunction.v1_9_0.json"
const JSON_SCHEMA: &'static str = "NetworkDeviceFunction.v1_9_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for NetworkDeviceTechnology
impl RefUnwindSafe for NetworkDeviceTechnology
impl Send for NetworkDeviceTechnology
impl Sync for NetworkDeviceTechnology
impl Unpin 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