[][src]Struct lorawan::parser::EUI64

pub struct EUI64<T: AsRef<[u8]>>(_);

EUI64 represents a 64 bit EUI.

Implementations

impl<T: AsRef<[u8]>> EUI64<T>[src]

pub fn new(data: T) -> Option<EUI64<T>>[src]

impl<T: AsRef<[u8]>> EUI64<T>[src]

pub fn to_owned(&self) -> EUI64<[u8; 8]>[src]

Trait Implementations

impl<T: AsRef<[u8]>> AsRef<[u8]> for EUI64<T>[src]

impl<T: AsRef<[u8]> + Clone> Clone for EUI64<T>[src]

impl<T: AsRef<[u8]> + Copy> Copy for EUI64<T>[src]

impl<T: Debug + AsRef<[u8]>> Debug for EUI64<T>[src]

impl<T: AsRef<[u8]> + Default> Default for EUI64<T>[src]

impl<T: Eq + AsRef<[u8]>> Eq for EUI64<T>[src]

impl<'a> From<&'a [u8; 8]> for EUI64<&'a [u8; 8]>[src]

impl<T: AsRef<[u8]>> Hash for EUI64<T>[src]

impl<T: AsRef<[u8]>, V: AsRef<[u8]>> PartialEq<EUI64<T>> for EUI64<V>[src]

impl<T: AsRef<[u8]>> StructuralEq for EUI64<T>[src]

impl<T: AsRef<[u8]>> ToString for EUI64<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for EUI64<T> where
    T: RefUnwindSafe

impl<T> Send for EUI64<T> where
    T: Send

impl<T> Sync for EUI64<T> where
    T: Sync

impl<T> Unpin for EUI64<T> where
    T: Unpin

impl<T> UnwindSafe for EUI64<T> where
    T: UnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

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.