Struct aws_sdk_iotwireless::types::LoRaWanServiceProfile
source · #[non_exhaustive]pub struct LoRaWanServiceProfile {
pub add_gw_metadata: bool,
pub dr_min: Option<i32>,
pub dr_max: Option<i32>,
pub pr_allowed: bool,
pub ra_allowed: bool,
}
Expand description
LoRaWANServiceProfile object.
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.add_gw_metadata: bool
The AddGWMetaData value.
dr_min: Option<i32>
The DrMin value.
dr_max: Option<i32>
The DrMax value.
pr_allowed: bool
The PRAllowed value that describes whether passive roaming is allowed.
ra_allowed: bool
The RAAllowed value that describes whether roaming activation is allowed.
Implementations§
source§impl LoRaWanServiceProfile
impl LoRaWanServiceProfile
sourcepub fn add_gw_metadata(&self) -> bool
pub fn add_gw_metadata(&self) -> bool
The AddGWMetaData value.
sourcepub fn pr_allowed(&self) -> bool
pub fn pr_allowed(&self) -> bool
The PRAllowed value that describes whether passive roaming is allowed.
sourcepub fn ra_allowed(&self) -> bool
pub fn ra_allowed(&self) -> bool
The RAAllowed value that describes whether roaming activation is allowed.
source§impl LoRaWanServiceProfile
impl LoRaWanServiceProfile
sourcepub fn builder() -> LoRaWanServiceProfileBuilder
pub fn builder() -> LoRaWanServiceProfileBuilder
Creates a new builder-style object to manufacture LoRaWanServiceProfile
.
Trait Implementations§
source§impl Clone for LoRaWanServiceProfile
impl Clone for LoRaWanServiceProfile
source§fn clone(&self) -> LoRaWanServiceProfile
fn clone(&self) -> LoRaWanServiceProfile
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 LoRaWanServiceProfile
impl Debug for LoRaWanServiceProfile
source§impl PartialEq for LoRaWanServiceProfile
impl PartialEq for LoRaWanServiceProfile
source§fn eq(&self, other: &LoRaWanServiceProfile) -> bool
fn eq(&self, other: &LoRaWanServiceProfile) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LoRaWanServiceProfile
Auto Trait Implementations§
impl RefUnwindSafe for LoRaWanServiceProfile
impl Send for LoRaWanServiceProfile
impl Sync for LoRaWanServiceProfile
impl Unpin for LoRaWanServiceProfile
impl UnwindSafe for LoRaWanServiceProfile
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.