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