Skip to main content

Stat

Struct Stat 

Source
pub struct Stat {
    pub time: Option<String>,
    pub latitude_deg: Option<f64>,
    pub longitude_deg: Option<f64>,
    pub altitude_m: Option<i32>,
    pub received: u32,
    pub received_ok: u32,
    pub forwarded: u32,
    pub acknowledged_percent: f64,
    pub downlinks: u32,
    pub transmitted: u32,
}
Expand description

The gateway’s own status report.

§Examples

use pamoja_gateway::udp::Stat;

let report = Stat::new().with_counts(2, 2, 2).with_downlinks(2, 2);
assert!(report.to_json().contains("\"rxfw\":2"));

Fields§

§time: Option<String>

The gateway’s clock, as time::expanded writes it.

§latitude_deg: Option<f64>

Its latitude in degrees, north positive.

§longitude_deg: Option<f64>

Its longitude in degrees, east positive.

§altitude_m: Option<i32>

Its altitude in meters.

§received: u32

How many packets its radio received.

§received_ok: u32

How many of those had a good CRC.

§forwarded: u32

How many it forwarded.

§acknowledged_percent: f64

What share of its datagrams were acknowledged, as a percentage.

§downlinks: u32

How many downlink datagrams it received.

§transmitted: u32

How many packets it transmitted.

Implementations§

Source§

impl Stat

Source

pub fn new() -> Stat

An empty report, which is what a gateway with nothing yet to say sends.

§Returns

The report.

Source

pub fn at(self, seconds_since_epoch: u64) -> Stat

Returns it with the gateway’s clock.

§Arguments
  • seconds_since_epoch - the time in seconds since 1970-01-01 UTC.
§Returns

The report.

Source

pub fn at_position( self, latitude_deg: f64, longitude_deg: f64, altitude_m: i32, ) -> Stat

Returns it with the gateway’s position.

§Arguments
  • latitude_deg - degrees north.
  • longitude_deg - degrees east.
  • altitude_m - meters above sea level.
§Returns

The report.

Source

pub fn with_counts( self, received: u32, received_ok: u32, forwarded: u32, ) -> Stat

Returns it with what the radio heard.

§Arguments
  • received - packets received.
  • received_ok - those with a good CRC.
  • forwarded - those forwarded to the server.
§Returns

The report.

Returns it with what the downlink side did.

§Arguments
  • downlinks - datagrams received from the server.
  • transmitted - packets transmitted.
§Returns

The report.

Source

pub fn with_acknowledged_percent(self, percent: f64) -> Stat

Returns it with the share of its datagrams the server acknowledged.

§Arguments
  • percent - the percentage.
§Returns

The report.

Source

pub fn to_json(&self) -> String

Writes the object as the protocol carries it.

§Returns

The JSON text of the stat object.

Trait Implementations§

Source§

impl Clone for Stat

Source§

fn clone(&self) -> Stat

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Stat

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Stat

Source§

fn default() -> Stat

Returns the “default value” for a type. Read more
Source§

fn from(status: Stat) -> Uplink

Converts to this type from the input type.
Source§

impl PartialEq for Stat

Source§

fn eq(&self, other: &Stat) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Stat

Auto Trait Implementations§

§

impl Freeze for Stat

§

impl RefUnwindSafe for Stat

§

impl Send for Stat

§

impl Sync for Stat

§

impl Unpin for Stat

§

impl UnsafeUnpin for Stat

§

impl UnwindSafe for Stat

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.