Enum dhcp_protocol::OptionCode

source ·
#[repr(u8)]
pub enum OptionCode {
Show 76 variants Pad = 0, SubnetMask = 1, TimeOffset = 2, Router = 3, TimeServer = 4, NameServer = 5, DomainNameServer = 6, LogServer = 7, CookieServer = 8, LprServer = 9, ImpressServer = 10, ResourceLocationServer = 11, HostName = 12, BootFileSize = 13, MeritDumpFile = 14, DomainName = 15, SwapServer = 16, RootPath = 17, ExtensionsPath = 18, IpForwarding = 19, NonLocalSourceRouting = 20, PolicyFilter = 21, MaxDatagramReassemblySize = 22, DefaultIpTtl = 23, PathMtuAgingTimeout = 24, PathMtuPlateauTable = 25, InterfaceMtu = 26, AllSubnetsLocal = 27, BroadcastAddress = 28, PerformMaskDiscovery = 29, MaskSupplier = 30, PerformRouterDiscovery = 31, RouterSolicitationAddress = 32, StaticRoute = 33, TrailerEncapsulation = 34, ArpCacheTimeout = 35, EthernetEncapsulation = 36, TcpDefaultTtl = 37, TcpKeepaliveInterval = 38, TcpKeepaliveGarbage = 39, NetworkInformationServiceDomain = 40, NetworkInformationServers = 41, NetworkTimeProtocolServers = 42, VendorSpecificInformation = 43, NetBiosOverTcpipNameServer = 44, NetBiosOverTcpipDatagramDistributionServer = 45, NetBiosOverTcpipNodeType = 46, NetBiosOverTcpipScope = 47, XWindowSystemFontServer = 48, XWindowSystemDisplayManager = 49, RequestedIpAddress = 50, IpAddressLeaseTime = 51, OptionOverload = 52, DhcpMessageType = 53, ServerIdentifier = 54, ParameterRequestList = 55, Message = 56, MaxDhcpMessageSize = 57, RenewalTimeValue = 58, RebindingTimeValue = 59, VendorClassIdentifier = 60, ClientIdentifier = 61, NetworkInformationServicePlusDomain = 64, NetworkInformationServicePlusServers = 65, TftpServerName = 66, BootfileName = 67, MobileIpHomeAgent = 68, SmtpServer = 69, Pop3Server = 70, NntpServer = 71, DefaultWwwServer = 72, DefaultFingerServer = 73, DefaultIrcServer = 74, StreetTalkServer = 75, StreetTalkDirectoryAssistanceServer = 76, End = 255,
}
Expand description

A DHCP option code.

This enum corresponds to the codes for DHCP options as defined in RFC 1533. Note that not all options defined in the RFC are represented here; options which are not in this type are not currently supported. Supported options appear in this type in the order in which they are defined in the RFC.

Variants§

§

Pad = 0

§

SubnetMask = 1

§

TimeOffset = 2

§

Router = 3

§

TimeServer = 4

§

NameServer = 5

§

DomainNameServer = 6

§

LogServer = 7

§

CookieServer = 8

§

LprServer = 9

§

ImpressServer = 10

§

ResourceLocationServer = 11

§

HostName = 12

§

BootFileSize = 13

§

MeritDumpFile = 14

§

DomainName = 15

§

SwapServer = 16

§

RootPath = 17

§

ExtensionsPath = 18

§

IpForwarding = 19

§

NonLocalSourceRouting = 20

§

PolicyFilter = 21

§

MaxDatagramReassemblySize = 22

§

DefaultIpTtl = 23

§

PathMtuAgingTimeout = 24

§

PathMtuPlateauTable = 25

§

InterfaceMtu = 26

§

AllSubnetsLocal = 27

§

BroadcastAddress = 28

§

PerformMaskDiscovery = 29

§

MaskSupplier = 30

§

PerformRouterDiscovery = 31

§

RouterSolicitationAddress = 32

§

StaticRoute = 33

§

TrailerEncapsulation = 34

§

ArpCacheTimeout = 35

§

EthernetEncapsulation = 36

§

TcpDefaultTtl = 37

§

TcpKeepaliveInterval = 38

§

TcpKeepaliveGarbage = 39

§

NetworkInformationServiceDomain = 40

§

NetworkInformationServers = 41

§

NetworkTimeProtocolServers = 42

§

VendorSpecificInformation = 43

§

NetBiosOverTcpipNameServer = 44

§

NetBiosOverTcpipDatagramDistributionServer = 45

§

NetBiosOverTcpipNodeType = 46

§

NetBiosOverTcpipScope = 47

§

XWindowSystemFontServer = 48

§

XWindowSystemDisplayManager = 49

§

RequestedIpAddress = 50

§

IpAddressLeaseTime = 51

§

OptionOverload = 52

§

DhcpMessageType = 53

§

ServerIdentifier = 54

§

ParameterRequestList = 55

§

Message = 56

§

MaxDhcpMessageSize = 57

§

RenewalTimeValue = 58

§

RebindingTimeValue = 59

§

VendorClassIdentifier = 60

§

ClientIdentifier = 61

§

NetworkInformationServicePlusDomain = 64

§

NetworkInformationServicePlusServers = 65

§

TftpServerName = 66

§

BootfileName = 67

§

MobileIpHomeAgent = 68

§

SmtpServer = 69

§

Pop3Server = 70

§

NntpServer = 71

§

DefaultWwwServer = 72

§

DefaultFingerServer = 73

§

DefaultIrcServer = 74

§

StreetTalkServer = 75

§

StreetTalkDirectoryAssistanceServer = 76

§

End = 255

Trait Implementations§

source§

impl Clone for OptionCode

source§

fn clone(&self) -> OptionCode

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for OptionCode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for OptionCode

source§

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 Display for OptionCode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<OptionCode> for u8

source§

fn from(code: OptionCode) -> u8

Converts to this type from the input type.
source§

impl FromPrimitive for OptionCode

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl Hash for OptionCode

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for OptionCode

source§

fn cmp(&self, other: &OptionCode) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for OptionCode

source§

fn eq(&self, other: &OptionCode) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for OptionCode

source§

fn partial_cmp(&self, other: &OptionCode) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for OptionCode

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl TryFrom<u8> for OptionCode

§

type Error = ProtocolError

The type returned in the event of a conversion error.
source§

fn try_from(n: u8) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for OptionCode

source§

impl Eq for OptionCode

source§

impl StructuralPartialEq for OptionCode

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T, D> Encode<Ambiguous1, D> for T
where D: ResourceDialect,

§

unsafe fn encode( self, _encoder: &mut Encoder<'_, D>, _offset: usize, _depth: Depth, ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
§

impl<T, D> Encode<Ambiguous2, D> for T
where D: ResourceDialect,

§

unsafe fn encode( self, _encoder: &mut Encoder<'_, D>, _offset: usize, _depth: Depth, ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,