Enum iphlpapi::ip_adapter_info::AdaperKind[][src]

pub enum AdaperKind {
    Other,
    Ethernet,
    TokenRing,
    Ppp,
    Loopback,
    Atm,
    IEEE80211,
}

The kind of adapter

Variants

Other

Some other type of network interface.

Ethernet

An Ethernet network interface.

TokenRing

MIB_IF_TYPE_TOKENRING

Ppp

A PPP network interface.

Loopback

A software loopback network interface.

Atm

An ATM network interface.

IEEE80211

An IEEE 802.11 wireless network interface.

Trait Implementations

impl Debug for AdaperKind[src]

impl TryFrom<u32> for AdaperKind[src]

type Error = DWORD

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for AdaperKind

impl Send for AdaperKind

impl Sync for AdaperKind

impl Unpin for AdaperKind

impl UnwindSafe for AdaperKind

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.