pub struct NewSKey(/* private fields */);
Expand description
You can construct NewSKey from a hex-encoded MSB string or bytes in MSB format.
Typically, a LNS will provide a hex-encoded MSB string 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::NewSKey;
use core::str::FromStr;
let newskey = NewSKey::from_str("00112233445566778899aabbccddeeff").unwrap();
To create from a byte array, you should enter the bytes in MSB format:
use lorawan::keys::NewSKey;
let newskey = NewSKey::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 NewSKey
impl<'de> Deserialize<'de> for NewSKey
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NewSKey, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NewSKey, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for NewSKey
impl Serialize for NewSKey
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 NewSKey
impl Eq for NewSKey
impl StructuralPartialEq for NewSKey
Auto Trait Implementations§
impl Freeze for NewSKey
impl RefUnwindSafe for NewSKey
impl Send for NewSKey
impl Sync for NewSKey
impl Unpin for NewSKey
impl UnwindSafe for NewSKey
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
)