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

pub struct DeviceProfile {
    pub id: String,
    pub name: String,
    pub organization_id: i64,
    pub network_server_id: i64,
    pub supports_class_b: bool,
    pub class_b_timeout: u32,
    pub ping_slot_period: u32,
    pub ping_slot_dr: u32,
    pub ping_slot_freq: u32,
    pub supports_class_c: bool,
    pub class_c_timeout: u32,
    pub mac_version: String,
    pub reg_params_revision: String,
    pub rx_delay_1: u32,
    pub rx_dr_offset_1: u32,
    pub rx_datarate_2: u32,
    pub rx_freq_2: u32,
    pub factory_preset_freqs: Vec<u32>,
    pub max_eirp: u32,
    pub max_duty_cycle: u32,
    pub supports_join: bool,
    pub rf_region: String,
    pub supports_32bit_f_cnt: bool,
    pub payload_codec: String,
    pub payload_encoder_script: String,
    pub payload_decoder_script: String,
    pub geoloc_buffer_ttl: u32,
    pub geoloc_min_buffer_size: u32,
    pub tags: HashMap<String, String>,
    pub uplink_interval: Option<Duration>,
    pub adr_algorithm_id: String,
}

Fields

id: String

Device-profile ID (UUID string).

name: String

Device-profile name.

organization_id: i64

Organization ID to which the service-profile is assigned.

network_server_id: i64

Network-server ID on which the service-profile is provisioned.

supports_class_b: bool

End-Device supports Class B.

class_b_timeout: u32

Maximum delay for the End-Device to answer a MAC request or a confirmed DL frame (mandatory if class B mode supported).

ping_slot_period: u32

Mandatory if class B mode supported.

ping_slot_dr: u32

Mandatory if class B mode supported.

ping_slot_freq: u32

Mandatory if class B mode supported.

supports_class_c: bool

End-Device supports Class C.

class_c_timeout: u32

Maximum delay for the End-Device to answer a MAC request or a confirmed DL frame (mandatory if class C mode supported).

mac_version: String

Version of the LoRaWAN supported by the End-Device.

reg_params_revision: String

Revision of the Regional Parameters document supported by the End-Device.

rx_delay_1: u32

Class A RX1 delay (mandatory for ABP).

rx_dr_offset_1: u32

RX1 data rate offset (mandatory for ABP).

rx_datarate_2: u32

RX2 data rate (mandatory for ABP).

rx_freq_2: u32

RX2 channel frequency (mandatory for ABP).

factory_preset_freqs: Vec<u32>

List of factory-preset frequencies (mandatory for ABP).

max_eirp: u32

Maximum EIRP supported by the End-Device.

max_duty_cycle: u32

Maximum duty cycle supported by the End-Device.

supports_join: bool

End-Device supports Join (OTAA) or not (ABP).

rf_region: String

RF region name.

supports_32bit_f_cnt: bool

End-Device uses 32bit FCnt (mandatory for LoRaWAN 1.0 End-Device).

payload_codec: String

Payload codec. Leave blank to disable the codec feature.

payload_encoder_script: String

Payload encoder script. Depending the codec, it is possible to provide a script which implements the encoder function.

payload_decoder_script: String

Payload decoder script. Depending the codec, it is possible to provide a script which implements the decoder function.

geoloc_buffer_ttl: u32

Geolocation buffer TTL (in seconds). When > 0, uplink RX meta-data will be stored in a buffer so that the meta-data of multiple uplinks can be used for geolocation.

geoloc_min_buffer_size: u32

Geolocation minimum buffer size. When > 0, geolocation will only be performed when the buffer has at least the given size.

tags: HashMap<String, String>

User defined tags.

uplink_interval: Option<Duration>

Uplink interval. This defines the expected uplink interval which the device uses for communication. When the uplink interval has expired and no uplink has been received, the device is considered inactive.

adr_algorithm_id: String

ADR algorithm ID. In case this is left blank, or is configured to a non-existing ADR algorithm (plugin), then it falls back to ‘default’.

Trait Implementations

impl Clone for DeviceProfile[src]

impl Debug for DeviceProfile[src]

impl Default for DeviceProfile[src]

impl Message for DeviceProfile[src]

impl PartialEq<DeviceProfile> for DeviceProfile[src]

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