Enum rtnetlink::LinkLayerType[][src]

pub enum LinkLayerType {
    Netrom,
    Ether,
    Eether,
    Ax25,
    Pronet,
    Chaos,
    Ieee802,
    Arcnet,
    Appletlk,
    Dlci,
    Atm,
    Metricom,
    Ieee1394,
    Eui64,
    Infiniband,
    Slip,
    Cslip,
    Slip6,
    Cslip6,
    Rsrvd,
    Adapt,
    Rose,
    X25,
    Hwx25,
    Can,
    Ppp,
    Hdlc,
    Lapb,
    Ddcmp,
    Rawhdlc,
    Rawip,
    Tunnel,
    Tunnel6,
    Frad,
    Skip,
    Loopback,
    Localtlk,
    Fddi,
    Bif,
    Sit,
    Ipddp,
    IpGre,
    Pimreg,
    Hippi,
    Ash,
    Econet,
    Irda,
    Fcpp,
    Fcal,
    Fcpl,
    Fcfabric,
    Ieee802Tr,
    Ieee80211,
    Ieee80211Prism,
    Ieee80211Radiotap,
    Ieee802154,
    Ieee802154Monitor,
    Phonet,
    PhonetPipe,
    Caif,
    Ip6Gre,
    Netlink,
    SixLowpan,
    Vsockmon,
    Void,
    None,
    Other(u16),
}

Variants

Link type is ARPHRD_NETROM

Link type is ARPHRD_ETHER

Link type is ARPHRD_EETHER

Link type is ARPHRD_AX25

Link type is ARPHRD_PRONET

Link type is ARPHRD_CHAOS

Link type is ARPHRD_IEEE802

Link type is ARPHRD_ARCNET

Link type is ARPHRD_APPLETLK

Link type is ARPHRD_DLCI

Link type is ARPHRD_ATM

Link type is ARPHRD_METRICOM

Link type is ARPHRD_IEEE1394

Link type is ARPHRD_EUI64

Link type is ARPHRD_INFINIBAND

Link type is ARPHRD_SLIP

Link type is ARPHRD_CSLIP

Link type is ARPHRD_SLIP6

Link type is ARPHRD_CSLIP6

Link type is ARPHRD_RSRVD

Link type is ARPHRD_ADAPT

Link type is ARPHRD_ROSE

Link type is ARPHRD_X25

Link type is ARPHRD_HWX25

Link type is ARPHRD_CAN

Link type is ARPHRD_PPP

Link type is ARPHRD_CISCO or ARPHRD_HDLC

Link type is ARPHRD_LAPB

Link type is ARPHRD_DDCMP

Link type is ARPHRD_RAWHDLC

Link type is ARPHRD_RAWIP

Link type is ARPHRD_TUNNEL

Link type is ARPHRD_TUNNEL6

Link type is ARPHRD_FRAD

Link type is ARPHRD_SKIP

Link type is ARPHRD_LOOPBACK

Link type is ARPHRD_LOCALTLK

Link type is ARPHRD_FDDI

Link type is ARPHRD_BIF

Link type is ARPHRD_SIT

Link type is ARPHRD_IPDDP

Link type is ARPHRD_IPGRE

Link type is ARPHRD_PIMREG

Link type is ARPHRD_HIPPI

Link type is ARPHRD_ASH

Link type is ARPHRD_ECONET

Link type is ARPHRD_IRDA

Link type is ARPHRD_FCPP

Link type is ARPHRD_FCAL

Link type is ARPHRD_FCPL

Link type is ARPHRD_FCFABRIC

Link type is ARPHRD_IEEE802_TR

Link type is ARPHRD_IEEE80211

Link type is ARPHRD_IEEE80211_PRISM

Link type is ARPHRD_IEEE80211_RADIOTAP

Link type is ARPHRD_IEEE802154

Link type is ARPHRD_IEEE802154_MONITOR

Link type is ARPHRD_PHONET

Link type is ARPHRD_PHONET_PIPE

Link type is ARPHRD_CAIF

Link type is ARPHRD_IP6GRE

Link type is ARPHRD_NETLINK

Link type is ARPHRD_6LOWPAN

Link type is ARPHRD_VSOCKMON

Link type is ARPHRD_VOID

Link type is ARPHRD_NONE

Link type is unknown

Trait Implementations

impl Debug for LinkLayerType
[src]

Formats the value using the given formatter. Read more

impl PartialEq for LinkLayerType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for LinkLayerType
[src]

impl Hash for LinkLayerType
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Copy for LinkLayerType
[src]

impl Clone for LinkLayerType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<LinkLayerType> for u16
[src]

Performs the conversion.

impl From<u16> for LinkLayerType
[src]

Performs the conversion.

impl Default for LinkLayerType
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations