Skip to main content

LinkLayerType

Enum LinkLayerType 

Source
#[non_exhaustive]
#[repr(u16)]
pub enum LinkLayerType {
Show 66 variants Netrom = 0, Ether = 1, Eether = 2, Ax25 = 3, Pronet = 4, Chaos = 5, Ieee802 = 6, Arcnet = 7, Appletlk = 8, Dlci = 15, Atm = 19, Metricom = 23, Ieee1394 = 24, Eui64 = 27, Infiniband = 32, Slip = 256, Cslip = 257, Slip6 = 258, Cslip6 = 259, Rsrvd = 260, Adapt = 264, Rose = 270, X25 = 271, Hwx25 = 272, Can = 280, Ppp = 512, Hdlc = 513, Lapb = 516, Ddcmp = 517, Rawhdlc = 518, Rawip = 519, Tunnel = 768, Tunnel6 = 769, Frad = 770, Skip = 771, Loopback = 772, Localtlk = 773, Fddi = 774, Bif = 775, Sit = 776, Ipddp = 777, Ipgre = 778, Pimreg = 779, Hippi = 780, Ash = 781, Econet = 782, Irda = 783, Fcpp = 784, Fcal = 785, Fcpl = 786, Fcfabric = 787, Ieee802Tr = 800, Ieee80211 = 801, Ieee80211Prism = 802, Ieee80211Radiotap = 803, Ieee802154 = 804, Ieee802154Monitor = 805, Phonet = 820, PhonetPipe = 821, Caif = 822, Ip6gre = 823, Netlink = 824, Sixlowpan = 825, Vsockmon = 826, Void = 65_535, None = 65_534,
}

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Netrom = 0

§

Ether = 1

§

Eether = 2

§

Ax25 = 3

§

Pronet = 4

§

Chaos = 5

§

Ieee802 = 6

§

Arcnet = 7

§

Appletlk = 8

§

Dlci = 15

§

Atm = 19

§

Metricom = 23

§

Ieee1394 = 24

§

Eui64 = 27

§

Infiniband = 32

§

Slip = 256

§

Cslip = 257

§

Slip6 = 258

§

Cslip6 = 259

§

Rsrvd = 260

§

Adapt = 264

§

Rose = 270

§

X25 = 271

§

Hwx25 = 272

§

Can = 280

§

Ppp = 512

§

Hdlc = 513

§

Lapb = 516

§

Ddcmp = 517

§

Rawhdlc = 518

§

Rawip = 519

§

Tunnel = 768

§

Tunnel6 = 769

§

Frad = 770

§

Skip = 771

§

Loopback = 772

§

Localtlk = 773

§

Fddi = 774

§

Bif = 775

§

Sit = 776

§

Ipddp = 777

§

Ipgre = 778

§

Pimreg = 779

§

Hippi = 780

§

Ash = 781

§

Econet = 782

§

Irda = 783

§

Fcpp = 784

§

Fcal = 785

§

Fcpl = 786

§

Fcfabric = 787

§

Ieee802Tr = 800

§

Ieee80211 = 801

§

Ieee80211Prism = 802

§

Ieee80211Radiotap = 803

§

Ieee802154 = 804

§

Ieee802154Monitor = 805

§

Phonet = 820

§

PhonetPipe = 821

§

Caif = 822

§

Ip6gre = 823

§

Sixlowpan = 825

§

Vsockmon = 826

§

Void = 65_535

Void type, nothing is known

§

None = 65_534

zero header length

Implementations§

Source§

impl LinkLayerType

Source

pub const Cisco: LinkLayerType = LinkLayerType::Hdlc

Trait Implementations§

Source§

impl Clone for LinkLayerType

Source§

fn clone(&self) -> LinkLayerType

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for LinkLayerType

Source§

impl Debug for LinkLayerType

Source§

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

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

impl Default for LinkLayerType

Source§

fn default() -> LinkLayerType

Returns the “default value” for a type. Read more
Source§

impl Display for LinkLayerType

Source§

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

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

impl Eq for LinkLayerType

Source§

impl From<LinkLayerType> for u16

Source§

fn from(v: LinkLayerType) -> u16

Converts to this type from the input type.
Source§

impl From<u16> for LinkLayerType

Source§

fn from(d: u16) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for LinkLayerType

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for LinkLayerType

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§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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.

Source§

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

Source§

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§

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>,

Source§

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>,

Source§

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.