[][src]Struct cleverdog::mac::MacAddr

pub struct MacAddr(_);

MAC address.

Methods

impl MacAddr[src]

pub fn new(buf: [u8; 6]) -> Self[src]

Constructs a new MAC address from the given fixed array.

pub fn from_str(s: &str) -> Result<Self, ParseError>[src]

Parses the specified string into MAC address.

use cleverdog::mac::MacAddr;

let mac: MacAddr = "dc:a9:04:97:9d:9b".parse().unwrap();
assert_eq!(mac.as_bytes(), [220, 169, 4, 151, 157, 155]);

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

Returns the underlying byte array.

Trait Implementations

impl Clone for MacAddr[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for MacAddr[src]

impl Debug for MacAddr[src]

impl Display for MacAddr[src]

impl FromStr for MacAddr[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl LowerHex for MacAddr[src]

impl UpperHex for MacAddr[src]

Auto Trait Implementations

impl Sync for MacAddr

impl Unpin for MacAddr

impl Send for MacAddr

impl UnwindSafe for MacAddr

impl RefUnwindSafe for MacAddr

Blanket Implementations

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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