#[non_exhaustive]pub struct JoinResourceTypeEventConfiguration {
pub lo_ra_wan: Option<LoRaWanJoinResourceTypeEventConfiguration>,
}Expand description
Join resource type event configuration object for enabling or disabling topic.
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.lo_ra_wan: Option<LoRaWanJoinResourceTypeEventConfiguration>Join resource type event configuration object for enabling or disabling LoRaWAN related event topics.
Implementations§
source§impl JoinResourceTypeEventConfiguration
impl JoinResourceTypeEventConfiguration
sourcepub fn lo_ra_wan(&self) -> Option<&LoRaWanJoinResourceTypeEventConfiguration>
pub fn lo_ra_wan(&self) -> Option<&LoRaWanJoinResourceTypeEventConfiguration>
Join resource type event configuration object for enabling or disabling LoRaWAN related event topics.
source§impl JoinResourceTypeEventConfiguration
impl JoinResourceTypeEventConfiguration
sourcepub fn builder() -> JoinResourceTypeEventConfigurationBuilder
pub fn builder() -> JoinResourceTypeEventConfigurationBuilder
Creates a new builder-style object to manufacture JoinResourceTypeEventConfiguration.
Trait Implementations§
source§impl Clone for JoinResourceTypeEventConfiguration
impl Clone for JoinResourceTypeEventConfiguration
source§fn clone(&self) -> JoinResourceTypeEventConfiguration
fn clone(&self) -> JoinResourceTypeEventConfiguration
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 PartialEq<JoinResourceTypeEventConfiguration> for JoinResourceTypeEventConfiguration
impl PartialEq<JoinResourceTypeEventConfiguration> for JoinResourceTypeEventConfiguration
source§fn eq(&self, other: &JoinResourceTypeEventConfiguration) -> bool
fn eq(&self, other: &JoinResourceTypeEventConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for JoinResourceTypeEventConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for JoinResourceTypeEventConfiguration
impl Send for JoinResourceTypeEventConfiguration
impl Sync for JoinResourceTypeEventConfiguration
impl Unpin for JoinResourceTypeEventConfiguration
impl UnwindSafe for JoinResourceTypeEventConfiguration
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