[][src]Struct chirpstack_api::ns::GatewayStats

pub struct GatewayStats {
    pub timestamp: Option<Timestamp>,
    pub rx_packets_received: i32,
    pub rx_packets_received_ok: i32,
    pub tx_packets_received: i32,
    pub tx_packets_emitted: i32,
}

Fields

timestamp: Option<Timestamp>

Timestamp of the (aggregated) measurement.

rx_packets_received: i32

Packets received by the gateway.

rx_packets_received_ok: i32

Packets received by the gateway that passed the CRC check.

tx_packets_received: i32

Packets received by the gateway for transmission.

tx_packets_emitted: i32

Packets transmitted by the gateway.

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, 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]