Struct aws_sdk_iotwireless::types::LoRaWanDevice
source · #[non_exhaustive]pub struct LoRaWanDevice {
pub dev_eui: Option<String>,
pub device_profile_id: Option<String>,
pub service_profile_id: Option<String>,
pub otaa_v1_1: Option<OtaaV11>,
pub otaa_v1_0_x: Option<OtaaV10X>,
pub abp_v1_1: Option<AbpV11>,
pub abp_v1_0_x: Option<AbpV10X>,
pub f_ports: Option<FPorts>,
}
Expand description
LoRaWAN object for create functions.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dev_eui: Option<String>
The DevEUI value.
device_profile_id: Option<String>
The ID of the device profile for the new wireless device.
service_profile_id: Option<String>
The ID of the service profile.
otaa_v1_1: Option<OtaaV11>
OTAA device object for v1.1 for create APIs
otaa_v1_0_x: Option<OtaaV10X>
OTAA device object for create APIs for v1.0.x
abp_v1_1: Option<AbpV11>
ABP device object for create APIs for v1.1
abp_v1_0_x: Option<AbpV10X>
LoRaWAN object for create APIs
f_ports: Option<FPorts>
List of FPort assigned for different LoRaWAN application packages to use
Implementations§
source§impl LoRaWanDevice
impl LoRaWanDevice
sourcepub fn device_profile_id(&self) -> Option<&str>
pub fn device_profile_id(&self) -> Option<&str>
The ID of the device profile for the new wireless device.
sourcepub fn service_profile_id(&self) -> Option<&str>
pub fn service_profile_id(&self) -> Option<&str>
The ID of the service profile.
sourcepub fn otaa_v1_0_x(&self) -> Option<&OtaaV10X>
pub fn otaa_v1_0_x(&self) -> Option<&OtaaV10X>
OTAA device object for create APIs for v1.0.x
sourcepub fn abp_v1_0_x(&self) -> Option<&AbpV10X>
pub fn abp_v1_0_x(&self) -> Option<&AbpV10X>
LoRaWAN object for create APIs
source§impl LoRaWanDevice
impl LoRaWanDevice
sourcepub fn builder() -> LoRaWanDeviceBuilder
pub fn builder() -> LoRaWanDeviceBuilder
Creates a new builder-style object to manufacture LoRaWanDevice
.
Trait Implementations§
source§impl Clone for LoRaWanDevice
impl Clone for LoRaWanDevice
source§fn clone(&self) -> LoRaWanDevice
fn clone(&self) -> LoRaWanDevice
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for LoRaWanDevice
impl Debug for LoRaWanDevice
source§impl PartialEq for LoRaWanDevice
impl PartialEq for LoRaWanDevice
source§fn eq(&self, other: &LoRaWanDevice) -> bool
fn eq(&self, other: &LoRaWanDevice) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LoRaWanDevice
Auto Trait Implementations§
impl RefUnwindSafe for LoRaWanDevice
impl Send for LoRaWanDevice
impl Sync for LoRaWanDevice
impl Unpin for LoRaWanDevice
impl UnwindSafe for LoRaWanDevice
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.