[][src]Enum semtech_udp::push_data::RxPk

pub enum RxPk {
    V1(RxPkV1),
    V2(RxPkV2),
}

Variants

V1(RxPkV1)
V2(RxPkV2)

Implementations

impl RxPk[src]

pub fn get_snr(&self) -> f32[src]

pub fn get_rssi(&self) -> i32[src]

pub fn get_frequency(&self) -> &f64[src]

pub fn get_data(&self) -> String[src]

pub fn get_timestamp(&self) -> &u64[src]

pub fn get_datarate(&self) -> String[src]

Trait Implementations

impl Clone for RxPk[src]

impl Debug for RxPk[src]

impl<'de> Deserialize<'de> for RxPk[src]

impl Serialize for RxPk[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,