Struct aws_sdk_iotwireless::types::LoRaWanDeviceProfile
source · #[non_exhaustive]pub struct LoRaWanDeviceProfile {Show 19 fields
pub supports_class_b: bool,
pub class_b_timeout: Option<i32>,
pub ping_slot_period: Option<i32>,
pub ping_slot_dr: Option<i32>,
pub ping_slot_freq: Option<i32>,
pub supports_class_c: bool,
pub class_c_timeout: Option<i32>,
pub mac_version: Option<String>,
pub reg_params_revision: Option<String>,
pub rx_delay1: Option<i32>,
pub rx_dr_offset1: Option<i32>,
pub rx_data_rate2: Option<i32>,
pub rx_freq2: Option<i32>,
pub factory_preset_freqs_list: Option<Vec<i32>>,
pub max_eirp: Option<i32>,
pub max_duty_cycle: Option<i32>,
pub rf_region: Option<String>,
pub supports_join: Option<bool>,
pub supports32_bit_f_cnt: bool,
}
Expand description
LoRaWANDeviceProfile object.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.supports_class_b: bool
The SupportsClassB value.
class_b_timeout: Option<i32>
The ClassBTimeout value.
ping_slot_period: Option<i32>
The PingSlotPeriod value.
ping_slot_dr: Option<i32>
The PingSlotDR value.
ping_slot_freq: Option<i32>
The PingSlotFreq value.
supports_class_c: bool
The SupportsClassC value.
class_c_timeout: Option<i32>
The ClassCTimeout value.
mac_version: Option<String>
The MAC version (such as OTAA 1.1 or OTAA 1.0.3) to use with this device profile.
reg_params_revision: Option<String>
The version of regional parameters.
rx_delay1: Option<i32>
The RXDelay1 value.
rx_dr_offset1: Option<i32>
The RXDROffset1 value.
rx_data_rate2: Option<i32>
The RXDataRate2 value.
rx_freq2: Option<i32>
The RXFreq2 value.
factory_preset_freqs_list: Option<Vec<i32>>
The list of values that make up the FactoryPresetFreqs value.
max_eirp: Option<i32>
The MaxEIRP value.
max_duty_cycle: Option<i32>
The MaxDutyCycle value.
rf_region: Option<String>
The frequency band (RFRegion) value.
supports_join: Option<bool>
The SupportsJoin value.
supports32_bit_f_cnt: bool
The Supports32BitFCnt value.
Implementations§
source§impl LoRaWanDeviceProfile
impl LoRaWanDeviceProfile
sourcepub fn supports_class_b(&self) -> bool
pub fn supports_class_b(&self) -> bool
The SupportsClassB value.
sourcepub fn class_b_timeout(&self) -> Option<i32>
pub fn class_b_timeout(&self) -> Option<i32>
The ClassBTimeout value.
sourcepub fn ping_slot_period(&self) -> Option<i32>
pub fn ping_slot_period(&self) -> Option<i32>
The PingSlotPeriod value.
sourcepub fn ping_slot_dr(&self) -> Option<i32>
pub fn ping_slot_dr(&self) -> Option<i32>
The PingSlotDR value.
sourcepub fn ping_slot_freq(&self) -> Option<i32>
pub fn ping_slot_freq(&self) -> Option<i32>
The PingSlotFreq value.
sourcepub fn supports_class_c(&self) -> bool
pub fn supports_class_c(&self) -> bool
The SupportsClassC value.
sourcepub fn class_c_timeout(&self) -> Option<i32>
pub fn class_c_timeout(&self) -> Option<i32>
The ClassCTimeout value.
sourcepub fn mac_version(&self) -> Option<&str>
pub fn mac_version(&self) -> Option<&str>
The MAC version (such as OTAA 1.1 or OTAA 1.0.3) to use with this device profile.
sourcepub fn reg_params_revision(&self) -> Option<&str>
pub fn reg_params_revision(&self) -> Option<&str>
The version of regional parameters.
sourcepub fn rx_dr_offset1(&self) -> Option<i32>
pub fn rx_dr_offset1(&self) -> Option<i32>
The RXDROffset1 value.
sourcepub fn rx_data_rate2(&self) -> Option<i32>
pub fn rx_data_rate2(&self) -> Option<i32>
The RXDataRate2 value.
sourcepub fn factory_preset_freqs_list(&self) -> Option<&[i32]>
pub fn factory_preset_freqs_list(&self) -> Option<&[i32]>
The list of values that make up the FactoryPresetFreqs value.
sourcepub fn max_duty_cycle(&self) -> Option<i32>
pub fn max_duty_cycle(&self) -> Option<i32>
The MaxDutyCycle value.
sourcepub fn supports_join(&self) -> Option<bool>
pub fn supports_join(&self) -> Option<bool>
The SupportsJoin value.
sourcepub fn supports32_bit_f_cnt(&self) -> bool
pub fn supports32_bit_f_cnt(&self) -> bool
The Supports32BitFCnt value.
source§impl LoRaWanDeviceProfile
impl LoRaWanDeviceProfile
sourcepub fn builder() -> LoRaWanDeviceProfileBuilder
pub fn builder() -> LoRaWanDeviceProfileBuilder
Creates a new builder-style object to manufacture LoRaWanDeviceProfile
.
Trait Implementations§
source§impl Clone for LoRaWanDeviceProfile
impl Clone for LoRaWanDeviceProfile
source§fn clone(&self) -> LoRaWanDeviceProfile
fn clone(&self) -> LoRaWanDeviceProfile
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LoRaWanDeviceProfile
impl Debug for LoRaWanDeviceProfile
source§impl PartialEq for LoRaWanDeviceProfile
impl PartialEq for LoRaWanDeviceProfile
source§fn eq(&self, other: &LoRaWanDeviceProfile) -> bool
fn eq(&self, other: &LoRaWanDeviceProfile) -> bool
self
and other
values to be equal, and is used
by ==
.