[][src]Struct heim::net::Nic

pub struct Nic(_);

Network interface device.

Methods

impl Nic[src]

pub fn name(&self) -> &str[src]

Returns NIC name.

pub fn address(&self) -> Address[src]

Returns primary NIC address.

pub fn netmask(&self) -> Option<Address>[src]

Returns netmask address if available.

pub fn destination(&self) -> Option<Address>[src]

Returns destination address if available.

pub fn is_up(&self) -> bool[src]

Returns bool indicating whether interface is up and running.

pub fn is_loopback(&self) -> bool[src]

Returns bool indicating whether interface is loopback.

pub fn is_multicast(&self) -> bool[src]

Returns bool indicating whether interface is multicast.

Trait Implementations

impl NicExt for Nic[src]

impl Debug for Nic[src]

Auto Trait Implementations

impl Send for Nic

impl Unpin for Nic

impl Sync for Nic

impl UnwindSafe for Nic

impl RefUnwindSafe for Nic

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self