lorawan 0.9.0

Crate lorawan provides structures and tools for reading and writing LoRaWAN messages from and to a slice of bytes.
Documentation
pub extern crate std;

use std::hash::{Hash, Hasher};

use crate::parser::*;

macro_rules! fixed_len_struct_impl_hash {
    (
        $(#[$outer:meta])*
        $type:ident[$size:expr];
    ) => {
        impl<T: AsRef<[u8]>> Hash for $type<T> {
            fn hash<H: Hasher>(&self, state: &mut H) {
                self.as_ref().hash(state);
            }
        }
    };
}

fixed_len_struct_impl_hash! {
    EUI64[8];
}

fixed_len_struct_impl_hash! {
    DevNonce[2];
}

fixed_len_struct_impl_hash! {
    AppNonce[3];
}

fixed_len_struct_impl_hash! {
    DevAddr[4];
}

fixed_len_struct_impl_hash! {
    NwkAddr[3];
}