Struct chirpstack_api::as_pb::integration::UplinkEvent[][src]

pub struct UplinkEvent {
    pub application_id: u64,
    pub application_name: String,
    pub device_name: String,
    pub dev_eui: Vec<u8>,
    pub rx_info: Vec<UplinkRxInfo>,
    pub tx_info: Option<UplinkTxInfo>,
    pub adr: bool,
    pub dr: u32,
    pub f_cnt: u32,
    pub f_port: u32,
    pub data: Vec<u8>,
    pub object_json: String,
    pub tags: HashMap<String, String>,
    pub confirmed_uplink: bool,
    pub dev_addr: Vec<u8>,
}

UplinkEvent is the message sent when an uplink payload has been received.

Fields

application_id: u64

Application ID.

application_name: String

Application name.

device_name: String

Device name.

dev_eui: Vec<u8>

Device EUI.

rx_info: Vec<UplinkRxInfo>

Receiving gateway RX info.

tx_info: Option<UplinkTxInfo>

TX info.

adr: bool

Device has ADR bit set.

dr: u32

Data-rate.

f_cnt: u32

Frame counter.

f_port: u32

Frame port.

data: Vec<u8>

FRMPayload data.

object_json: String

JSON string containing the decoded object. Note that this is only set when a codec is configured in the Device Profile.

tags: HashMap<String, String>

User-defined device tags.

confirmed_uplink: bool

Uplink was of type confirmed.

dev_addr: Vec<u8>

Device address.

Trait Implementations

impl Clone for UplinkEvent[src]

impl Debug for UplinkEvent[src]

impl Default for UplinkEvent[src]

impl Message for UplinkEvent[src]

impl PartialEq<UplinkEvent> for UplinkEvent[src]

impl StructuralPartialEq for UplinkEvent[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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>, 

impl<T> WithSubscriber for T[src]