#[repr(C)]pub enum PamojaLorawanDirection {
Uplink = 0,
Downlink = 1,
}Expand description
The direction a frame travelled, which its MIC and encryption both fold in.
Variants§
Uplink = 0
From an end device up to the network.
Downlink = 1
From the network down to an end device.
Trait Implementations§
Source§impl Clone for PamojaLorawanDirection
impl Clone for PamojaLorawanDirection
Source§fn clone(&self) -> PamojaLorawanDirection
fn clone(&self) -> PamojaLorawanDirection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PamojaLorawanDirection
Source§impl Debug for PamojaLorawanDirection
impl Debug for PamojaLorawanDirection
impl Eq for PamojaLorawanDirection
Source§impl PartialEq for PamojaLorawanDirection
impl PartialEq for PamojaLorawanDirection
Source§fn eq(&self, other: &PamojaLorawanDirection) -> bool
fn eq(&self, other: &PamojaLorawanDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PamojaLorawanDirection
Auto Trait Implementations§
impl Freeze for PamojaLorawanDirection
impl RefUnwindSafe for PamojaLorawanDirection
impl Send for PamojaLorawanDirection
impl Sync for PamojaLorawanDirection
impl Unpin for PamojaLorawanDirection
impl UnsafeUnpin for PamojaLorawanDirection
impl UnwindSafe for PamojaLorawanDirection
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