Struct aws_sdk_iotwireless::model::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
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
sourceimpl 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
sourceimpl LoRaWanDevice
impl LoRaWanDevice
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LoRaWanDevice
Trait Implementations
sourceimpl Clone for LoRaWanDevice
impl Clone for LoRaWanDevice
sourcefn clone(&self) -> LoRaWanDevice
fn clone(&self) -> LoRaWanDevice
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for LoRaWanDevice
impl Debug for LoRaWanDevice
sourceimpl PartialEq<LoRaWanDevice> for LoRaWanDevice
impl PartialEq<LoRaWanDevice> for LoRaWanDevice
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &LoRaWanDevice) -> bool
fn ne(&self, other: &LoRaWanDevice) -> bool
This method tests for !=.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more