pub enum Direction {
Uplink,
Downlink,
}Expand description
Direction of a LoRaWAN data frame.
Set automatically when you parse with crate::LoraPacket::from_wire
(from the MType) or when you call crate::LoraPacketBuilder::data.
Read it back on crate::Data::direction.
Direction selects which key is used for FRMPayload and FOpts crypt
(see crate::Data::decrypt_payload) and which CMAC block layout is
used for the MIC (see crate::LoraPacket::calculate_mic_v1_0).
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Direction
impl<'de> Deserialize<'de> for Direction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for Direction
impl Eq for Direction
impl StructuralPartialEq for Direction
Auto Trait Implementations§
impl Freeze for Direction
impl RefUnwindSafe for Direction
impl Send for Direction
impl Sync for Direction
impl Unpin for Direction
impl UnsafeUnpin for Direction
impl UnwindSafe for Direction
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