Struct chirpstack_api::as_pb::external::api::DeviceListItem[][src]

pub struct DeviceListItem {
    pub dev_eui: String,
    pub name: String,
    pub application_id: i64,
    pub description: String,
    pub device_profile_id: String,
    pub device_profile_name: String,
    pub device_status_battery: u32,
    pub device_status_margin: i32,
    pub device_status_external_power_source: bool,
    pub device_status_battery_level_unavailable: bool,
    pub device_status_battery_level: f32,
    pub last_seen_at: Option<Timestamp>,
}

Fields

dev_eui: String

Device EUI (HEX encoded).

name: String

Name of the device.

application_id: i64

Application ID.

description: String

Description of the device.

device_profile_id: String

Device-profile ID attached to the device.

device_profile_name: String

Device-profile name.

device_status_battery: u32

The device battery status (deprecated, use device_status_battery_level). 0: The end-device is connected to an external power source 1..254: The battery level, 1 being at minimum and 254 being at maximum 255: The end-device was not able to measure the battery level 256: The device-status is not available.

device_status_margin: i32

The device margin status -32..32: The demodulation SNR ration in dB 256: The device-status is not available.

device_status_external_power_source: bool

Device is connected to an external power source.

device_status_battery_level_unavailable: bool

Device battery status is unavailable.

device_status_battery_level: f32

Device battery level as a percentage.

last_seen_at: Option<Timestamp>

The last time the application-server received any data from the device, or an empty string when the device never sent any data.

Trait Implementations

impl Clone for DeviceListItem[src]

impl Debug for DeviceListItem[src]

impl Default for DeviceListItem[src]

impl Message for DeviceListItem[src]

impl PartialEq<DeviceListItem> for DeviceListItem[src]

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