[][src]Struct radio_sx127x::device::lora::LoRaChannel

pub struct LoRaChannel {
    pub freq: u32,
    pub bw: Bandwidth,
    pub sf: SpreadingFactor,
    pub cr: CodingRate,
}

LoRa radio channel configuration

Fields

freq: u32

LoRa frequency in Hz (defaults to 434 MHz)

bw: Bandwidth

LoRa channel bandwidth (defaults to 125kHz)

sf: SpreadingFactor

LoRa spreading factor (defaults to SF7)

cr: CodingRate

LoRa coding rate (defaults to 4/5)

Trait Implementations

impl PartialEq<LoRaChannel> for LoRaChannel[src]

impl Debug for LoRaChannel[src]

impl Copy for LoRaChannel[src]

impl Clone for LoRaChannel[src]

impl Default for LoRaChannel[src]

impl Serialize for LoRaChannel[src]

impl<'de> Deserialize<'de> for LoRaChannel where
    LoRaChannel: Default
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]