Struct chirpstack_api::as_pb::HandleUplinkDataRequest[][src]

pub struct HandleUplinkDataRequest {
    pub dev_eui: Vec<u8>,
    pub join_eui: Vec<u8>,
    pub f_cnt: u32,
    pub f_port: u32,
    pub adr: bool,
    pub dr: u32,
    pub tx_info: Option<UplinkTxInfo>,
    pub rx_info: Vec<UplinkRxInfo>,
    pub data: Vec<u8>,
    pub device_activation_context: Option<DeviceActivationContext>,
    pub confirmed_uplink: bool,
}

Fields

dev_eui: Vec<u8>

DevEUI EUI (8 bytes).

join_eui: Vec<u8>

Join EUI used for OTAA activation (8 bytes).

f_cnt: u32

Frame-counter.

f_port: u32

Frame port.

adr: bool

ADR enabled.

dr: u32

Data-rate.

tx_info: Option<UplinkTxInfo>

TX meta-data.

rx_info: Vec<UplinkRxInfo>

RX meta-data.

data: Vec<u8>

Received data (encrypted).

device_activation_context: Option<DeviceActivationContext>

Device activation context.

This field is only set on the first uplink frame when the security context has changed (e.g. a new OTAA (re)activation).

confirmed_uplink: bool

Uplink was of type confirmed.

Trait Implementations

impl Clone for HandleUplinkDataRequest[src]

impl Debug for HandleUplinkDataRequest[src]

impl Default for HandleUplinkDataRequest[src]

impl Message for HandleUplinkDataRequest[src]

impl PartialEq<HandleUplinkDataRequest> for HandleUplinkDataRequest[src]

impl StructuralPartialEq for HandleUplinkDataRequest[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]