pub struct AppKey(/* private fields */);
Expand description
You can construct AppKey from a hex-encoded MSB string or bytes in MSB format.
Typically, a LNS will provide it in a string format such as: 00:11:22:33:44:55:66:77:88:99:AA:BB:CC:DD:EE:FF
.
To create from a string:
use lorawan::keys::AppKey;
use core::str::FromStr;
let appkey = AppKey::from_str("00112233445566778899aabbccddeeff").unwrap();
To create from a byte array, you should enter the bytes in MSB format:
use lorawan::keys::AppKey;
let appkey = AppKey::from([0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF]);
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AppKey
impl<'de> Deserialize<'de> for AppKey
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AppKey, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AppKey, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AppKey
impl Serialize for AppKey
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for AppKey
impl Eq for AppKey
impl StructuralPartialEq for AppKey
Auto Trait Implementations§
impl Freeze for AppKey
impl RefUnwindSafe for AppKey
impl Send for AppKey
impl Sync for AppKey
impl Unpin for AppKey
impl UnwindSafe for AppKey
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToHex for T
impl<T> ToHex for T
Source§fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self
into the result. Lower case
letters are used (e.g. f9b4ca
)Source§fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self
into the result. Upper case
letters are used (e.g. F9B4CA
)