pub enum DhcpHardwareType {
Show 61 variants
Ethernet = 1,
ExperimentalEthernet = 2,
AmateurRadioAX25 = 3,
ProteonProNETTokenRing = 4,
Chaos = 5,
IEEE802Networks = 6,
ARCNET = 7,
Hyperchannel = 8,
Lanstar = 9,
AutonetShortAddress = 10,
LocalTalk = 11,
LocalNet = 12,
UltraLink = 13,
SMDS = 14,
FrameRelay = 15,
AsynchronousTransmissionMode = 16,
HDLC = 17,
FibreChannel = 18,
AsynchronousTransmissionMode1 = 19,
PropPointToPointSerial = 20,
PPP = 21,
SoftwareLoopback = 24,
EON = 25,
Ethernet3MB = 26,
NSIP = 27,
Slip = 28,
ULTRALink = 29,
DS3 = 30,
SIP = 31,
FrameRelayInterconnect = 32,
AsynchronousTransmissionMode2 = 33,
MILSTD188220 = 34,
Metricom = 35,
IEEE1394 = 37,
MAPOS = 39,
Twinaxial = 40,
EUI64 = 41,
HIPARP = 42,
IPandARPoverISO7816_3 = 43,
ARPSec = 44,
IPsecTunnel = 45,
InfiniBand = 47,
TIA102Project25CommonAirInterface = 48,
WiegandInterface = 49,
PureIP = 50,
HWExp1 = 51,
HFI = 52,
HWExp2 = 53,
AEthernet = 54,
HWExp3 = 55,
IPsecTransport = 56,
SDLCRadio = 57,
SDLCMultipoint = 58,
IWARP = 59,
SixLoWPAN = 61,
VLAN = 62,
ProviderBridging = 63,
IEEE802154 = 64,
MAPOSinIPv4 = 65,
MAPOSinIPv6 = 66,
IEEE802154NonASKPHY = 70,
}
Expand description
Represents the Dhcp hardware types.
Variants§
Ethernet = 1
ExperimentalEthernet = 2
AmateurRadioAX25 = 3
ProteonProNETTokenRing = 4
Chaos = 5
IEEE802Networks = 6
ARCNET = 7
Hyperchannel = 8
Lanstar = 9
AutonetShortAddress = 10
LocalTalk = 11
LocalNet = 12
UltraLink = 13
SMDS = 14
FrameRelay = 15
AsynchronousTransmissionMode = 16
HDLC = 17
FibreChannel = 18
AsynchronousTransmissionMode1 = 19
PropPointToPointSerial = 20
PPP = 21
SoftwareLoopback = 24
EON = 25
Ethernet3MB = 26
NSIP = 27
Slip = 28
ULTRALink = 29
DS3 = 30
SIP = 31
FrameRelayInterconnect = 32
AsynchronousTransmissionMode2 = 33
MILSTD188220 = 34
Metricom = 35
IEEE1394 = 37
MAPOS = 39
Twinaxial = 40
EUI64 = 41
HIPARP = 42
IPandARPoverISO7816_3 = 43
ARPSec = 44
IPsecTunnel = 45
InfiniBand = 47
TIA102Project25CommonAirInterface = 48
WiegandInterface = 49
PureIP = 50
HWExp1 = 51
HFI = 52
HWExp2 = 53
AEthernet = 54
HWExp3 = 55
IPsecTransport = 56
SDLCRadio = 57
SDLCMultipoint = 58
IWARP = 59
SixLoWPAN = 61
VLAN = 62
ProviderBridging = 63
IEEE802154 = 64
MAPOSinIPv4 = 65
MAPOSinIPv6 = 66
IEEE802154NonASKPHY = 70
Implementations§
Source§impl DhcpHardwareType
impl DhcpHardwareType
Sourcepub fn from_u8(n: u8) -> Option<DhcpHardwareType>
pub fn from_u8(n: u8) -> Option<DhcpHardwareType>
Constructs a new DhcpHardwareType from u8
Trait Implementations§
Source§impl Clone for DhcpHardwareType
impl Clone for DhcpHardwareType
Source§fn clone(&self) -> DhcpHardwareType
fn clone(&self) -> DhcpHardwareType
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 DhcpHardwareType
impl Debug for DhcpHardwareType
Source§impl Hash for DhcpHardwareType
impl Hash for DhcpHardwareType
Source§impl Ord for DhcpHardwareType
impl Ord for DhcpHardwareType
Source§fn cmp(&self, other: &DhcpHardwareType) -> Ordering
fn cmp(&self, other: &DhcpHardwareType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DhcpHardwareType
impl PartialEq for DhcpHardwareType
Source§impl PartialOrd for DhcpHardwareType
impl PartialOrd for DhcpHardwareType
impl Copy for DhcpHardwareType
impl Eq for DhcpHardwareType
impl StructuralPartialEq for DhcpHardwareType
Auto Trait Implementations§
impl Freeze for DhcpHardwareType
impl RefUnwindSafe for DhcpHardwareType
impl Send for DhcpHardwareType
impl Sync for DhcpHardwareType
impl Unpin for DhcpHardwareType
impl UnwindSafe for DhcpHardwareType
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