[][src]Struct jnet::ieee802154::ExtendedAddr

pub struct ExtendedAddr(pub u64);

Extended (64-bit) address

Methods

impl ExtendedAddr[src]

pub fn ne_bytes(&self) -> [u8; 8][src]

Serializes the address into an array of bytes using network endianness

pub fn eui_64(&self) -> [u8; 8][src]

Converts the address into an Extended Unique Identifier (EUI-64)

Converts this extended address into a link-local IPv6 address using the EUI-64 format (see RFC2464)

Trait Implementations

impl From<ExtendedAddr> for Addr[src]

impl PartialEq<ExtendedAddr> for ExtendedAddr[src]

impl Eq for ExtendedAddr[src]

impl Debug for ExtendedAddr[src]

impl Display for ExtendedAddr[src]

impl Copy for ExtendedAddr[src]

impl Clone for ExtendedAddr[src]

Auto Trait Implementations

impl Unpin for ExtendedAddr

impl Send for ExtendedAddr

impl Sync for ExtendedAddr

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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]

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

type Output = T

Should always be Self