[][src]Enum rn2xx3::DataRateUs

pub enum DataRateUs {
    Sf10Bw125,
    Sf9Bw125,
    Sf8Bw125,
    Sf7Bw125,
    Sf8Bw500,
}

The data rates valid in the USA.

Frequencies:

  • US 902–928 MHz (LoRaWAN Specification (2015), Page 40, Table 18)

Variants

Sf10Bw125

Data Rate 0: SF 10 BW 125 (980 bit/s)

Sf9Bw125

Data Rate 1: SF 9 BW 125 (1760 bit/s)

Sf8Bw125

Data Rate 2: SF 8 BW 125 (3125 bit/s)

Sf7Bw125

Data Rate 3: SF 7 BW 125 (5470 bit/s)

Sf8Bw500

Data Rate 4: SF 8 BW 500 (12500 bit/s)

Trait Implementations

impl Clone for DataRateUs[src]

impl Copy for DataRateUs[src]

impl Debug for DataRateUs[src]

impl Eq for DataRateUs[src]

impl<'_> From<DataRateUs> for &'_ str[src]

impl PartialEq<DataRateUs> for DataRateUs[src]

impl StructuralEq for DataRateUs[src]

impl StructuralPartialEq for DataRateUs[src]

impl<'_> TryFrom<&'_ str> for DataRateUs[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> 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.