Struct chirpstack_api::ns::DeviceProfile[][src]

pub struct DeviceProfile {
    pub id: Vec<u8>,
    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 adr_algorithm_id: String,
}

Fields

id: Vec<u8>

Device-profile ID.

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).

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]