[][src]Struct interfaces::HardwareAddr

pub struct HardwareAddr(_);

HardwareAddr represents a hardware address (commonly known as a MAC address) of a given interface.

Implementations

impl HardwareAddr[src]

pub fn zero() -> HardwareAddr[src]

Returns a new, empty HardwareAddr structure. This is equivalent to the MAC address 00:00:00:00:00:00.

pub fn as_string(&self) -> String[src]

Formats this hardware address in the standard MAC address format - 6 octets in hexadecimal format, each seperated by a colon.

let s = HardwareAddr::zero().as_string();
assert_eq!(s, "00:00:00:00:00:00");

pub fn as_bare_string(&self) -> String[src]

Formats this hardware address as a sequence of hexadecimal numbers without the seperating colons.

let s = HardwareAddr::zero().as_bare_string();
assert_eq!(s, "000000000000");

pub fn as_bytes(&self) -> &[u8][src]

Returns the raw bytes representing this hardware address.

let s = HardwareAddr::zero();
assert_eq!(s.as_bytes(), &[0, 0, 0, 0, 0, 0]);

Trait Implementations

impl Clone for HardwareAddr[src]

impl Copy for HardwareAddr[src]

impl Debug for HardwareAddr[src]

impl Display for HardwareAddr[src]

impl Eq for HardwareAddr[src]

impl Hash for HardwareAddr[src]

impl PartialEq<HardwareAddr> for HardwareAddr[src]

impl StructuralEq for HardwareAddr[src]

impl StructuralPartialEq for HardwareAddr[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.