[][src]Struct chirpstack_api::gw::GatewayStats

pub struct GatewayStats {
    pub gateway_id: Vec<u8>,
    pub ip: String,
    pub time: Option<Timestamp>,
    pub location: Option<Location>,
    pub config_version: String,
    pub rx_packets_received: u32,
    pub rx_packets_received_ok: u32,
    pub tx_packets_received: u32,
    pub tx_packets_emitted: u32,
    pub meta_data: HashMap<String, String>,
    pub stats_id: Vec<u8>,
}

Fields

gateway_id: Vec<u8>

Gateway ID.

ip: String

Gateway IP.

time: Option<Timestamp>

Gateway time.

location: Option<Location>

Gateway location.

config_version: String

Gateway configuration version (this maps to the config_version sent by LoRa Server to the gateway).

rx_packets_received: u32

Number of radio packets received.

rx_packets_received_ok: u32

Number of radio packets received with valid PHY CRC.

tx_packets_received: u32

Number of downlink packets received for transmission.

tx_packets_emitted: u32

Number of downlink packets emitted.

meta_data: HashMap<String, String>

Additional gateway meta-data.

stats_id: Vec<u8>

Stats ID (UUID). Unique identifier for the gateway stats.

Trait Implementations

impl Clone for GatewayStats[src]

impl Debug for GatewayStats[src]

impl Default for GatewayStats[src]

impl Message for GatewayStats[src]

impl PartialEq<GatewayStats> for GatewayStats[src]

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