Struct chirpstack_api::gw::UplinkRxInfo[][src]

pub struct UplinkRxInfo {
    pub gateway_id: Vec<u8>,
    pub time: Option<Timestamp>,
    pub time_since_gps_epoch: Option<Duration>,
    pub rssi: i32,
    pub lora_snr: f64,
    pub channel: u32,
    pub rf_chain: u32,
    pub board: u32,
    pub antenna: u32,
    pub location: Option<Location>,
    pub fine_timestamp_type: i32,
    pub context: Vec<u8>,
    pub uplink_id: Vec<u8>,
    pub crc_status: i32,
    pub fine_timestamp: Option<FineTimestamp>,
}

Fields

gateway_id: Vec<u8>

Gateway ID.

time: Option<Timestamp>

RX time (only set when the gateway has a GPS module).

time_since_gps_epoch: Option<Duration>

RX time since GPS epoch (only set when the gateway has a GPS module).

rssi: i32

RSSI.

lora_snr: f64

LoRa SNR.

channel: u32

Channel.

rf_chain: u32

RF Chain.

board: u32

Board.

antenna: u32

Antenna.

location: Option<Location>

Location.

fine_timestamp_type: i32

Fine-timestamp type.

context: Vec<u8>

Gateway specific context.

uplink_id: Vec<u8>

Uplink ID (UUID bytes). Unique and random ID which can be used to correlate the uplink across multiple logs.

crc_status: i32

CRC status.

fine_timestamp: Option<FineTimestamp>

Fine-timestamp data.

Implementations

impl UplinkRxInfo[src]

pub fn fine_timestamp_type(&self) -> FineTimestampType[src]

Returns the enum value of fine_timestamp_type, or the default if the field is set to an invalid enum value.

pub fn set_fine_timestamp_type(&mut self, value: FineTimestampType)[src]

Sets fine_timestamp_type to the provided enum value.

pub fn crc_status(&self) -> CrcStatus[src]

Returns the enum value of crc_status, or the default if the field is set to an invalid enum value.

pub fn set_crc_status(&mut self, value: CrcStatus)[src]

Sets crc_status to the provided enum value.

Trait Implementations

impl Clone for UplinkRxInfo[src]

impl Debug for UplinkRxInfo[src]

impl Default for UplinkRxInfo[src]

impl Message for UplinkRxInfo[src]

impl PartialEq<UplinkRxInfo> for UplinkRxInfo[src]

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