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

pub struct Device {
    pub dev_eui: String,
    pub name: String,
    pub application_id: i64,
    pub description: String,
    pub device_profile_id: String,
    pub skip_f_cnt_check: bool,
    pub reference_altitude: f64,
    pub variables: HashMap<String, String>,
    pub tags: HashMap<String, String>,
    pub is_disabled: bool,
}

Fields

dev_eui: String

Device EUI (HEX encoded).

name: String

Name of the device (if left blank, it will be set to the DevEUI).

application_id: i64

ID of the application to which the device must be added. It is possible to move a device to a different application on update, given that both the old and the new application share the same service-profile.

description: String

Description of the device.

device_profile_id: String

DeviceProfileID attached to the device.

skip_f_cnt_check: bool

Skip frame-counter checks (this is insecure, but could be helpful for debugging).

reference_altitude: f64

Reference altitude. When using geolocation, this altitude will be used as a reference (when supported by the geolocation-server) to increase geolocation accuracy.

variables: HashMap<String, String>

Variables (user defined). These variables can be used together with integrations to store tokens / secrets that must be configured per device. These variables are not exposed in the event payloads.

tags: HashMap<String, String>

Tags (user defined). These tags are exposed in the event payloads or to integration. Tags are intended for aggregation and filtering.

is_disabled: bool

Device is disabled.

Trait Implementations

impl Clone for Device[src]

impl Debug for Device[src]

impl Default for Device[src]

impl Message for Device[src]

impl PartialEq<Device> for Device[src]

impl StructuralPartialEq for Device[src]

Auto Trait Implementations

impl RefUnwindSafe for Device

impl Send for Device

impl Sync for Device

impl Unpin for Device

impl UnwindSafe for Device

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]