#[repr(u8)]pub enum LoRaCodingRate {
Cr4_5 = 0,
Cr4_6 = 1,
Cr4_7 = 2,
Cr4_8 = 3,
}Expand description
LoRa coding rate enum (PROTOCOL.md §10.1).
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for LoRaCodingRate
impl Clone for LoRaCodingRate
Source§fn clone(&self) -> LoRaCodingRate
fn clone(&self) -> LoRaCodingRate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LoRaCodingRate
impl Debug for LoRaCodingRate
Source§impl Format for LoRaCodingRate
impl Format for LoRaCodingRate
Source§impl PartialEq for LoRaCodingRate
impl PartialEq for LoRaCodingRate
impl Copy for LoRaCodingRate
impl Eq for LoRaCodingRate
impl StructuralPartialEq for LoRaCodingRate
Auto Trait Implementations§
impl Freeze for LoRaCodingRate
impl RefUnwindSafe for LoRaCodingRate
impl Send for LoRaCodingRate
impl Sync for LoRaCodingRate
impl Unpin for LoRaCodingRate
impl UnsafeUnpin for LoRaCodingRate
impl UnwindSafe for LoRaCodingRate
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