Struct aws_sdk_iotwireless::types::LoRaWanUpdateDevice
source · #[non_exhaustive]pub struct LoRaWanUpdateDevice {
pub device_profile_id: Option<String>,
pub service_profile_id: Option<String>,
pub abp_v1_1: Option<UpdateAbpV11>,
pub abp_v1_0_x: Option<UpdateAbpV10X>,
pub f_ports: Option<UpdateFPorts>,
}
Expand description
LoRaWAN object for update 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.device_profile_id: Option<String>
The ID of the device profile for the wireless device.
service_profile_id: Option<String>
The ID of the service profile.
abp_v1_1: Option<UpdateAbpV11>
ABP device object for update APIs for v1.1
abp_v1_0_x: Option<UpdateAbpV10X>
ABP device object for update APIs for v1.0.x
f_ports: Option<UpdateFPorts>
FPorts object for the positioning information of the device.
Implementations§
source§impl LoRaWanUpdateDevice
impl LoRaWanUpdateDevice
sourcepub fn device_profile_id(&self) -> Option<&str>
pub fn device_profile_id(&self) -> Option<&str>
The ID of the device profile for the 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 abp_v1_1(&self) -> Option<&UpdateAbpV11>
pub fn abp_v1_1(&self) -> Option<&UpdateAbpV11>
ABP device object for update APIs for v1.1
sourcepub fn abp_v1_0_x(&self) -> Option<&UpdateAbpV10X>
pub fn abp_v1_0_x(&self) -> Option<&UpdateAbpV10X>
ABP device object for update APIs for v1.0.x
sourcepub fn f_ports(&self) -> Option<&UpdateFPorts>
pub fn f_ports(&self) -> Option<&UpdateFPorts>
FPorts object for the positioning information of the device.
source§impl LoRaWanUpdateDevice
impl LoRaWanUpdateDevice
sourcepub fn builder() -> LoRaWanUpdateDeviceBuilder
pub fn builder() -> LoRaWanUpdateDeviceBuilder
Creates a new builder-style object to manufacture LoRaWanUpdateDevice
.
Trait Implementations§
source§impl Clone for LoRaWanUpdateDevice
impl Clone for LoRaWanUpdateDevice
source§fn clone(&self) -> LoRaWanUpdateDevice
fn clone(&self) -> LoRaWanUpdateDevice
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 LoRaWanUpdateDevice
impl Debug for LoRaWanUpdateDevice
source§impl PartialEq for LoRaWanUpdateDevice
impl PartialEq for LoRaWanUpdateDevice
source§fn eq(&self, other: &LoRaWanUpdateDevice) -> bool
fn eq(&self, other: &LoRaWanUpdateDevice) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LoRaWanUpdateDevice
Auto Trait Implementations§
impl RefUnwindSafe for LoRaWanUpdateDevice
impl Send for LoRaWanUpdateDevice
impl Sync for LoRaWanUpdateDevice
impl Unpin for LoRaWanUpdateDevice
impl UnwindSafe for LoRaWanUpdateDevice
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.