#[non_exhaustive]pub struct LoRaWanFuotaTaskGetInfo {
pub rf_region: Option<String>,
pub start_time: Option<DateTime>,
}Expand description
The LoRaWAN information returned from getting a FUOTA task.
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.rf_region: Option<String>The frequency band (RFRegion) value.
start_time: Option<DateTime>Start time of a FUOTA task.
Implementations§
source§impl LoRaWanFuotaTaskGetInfo
impl LoRaWanFuotaTaskGetInfo
sourcepub fn builder() -> LoRaWanFuotaTaskGetInfoBuilder
pub fn builder() -> LoRaWanFuotaTaskGetInfoBuilder
Creates a new builder-style object to manufacture LoRaWanFuotaTaskGetInfo.
Trait Implementations§
source§impl Clone for LoRaWanFuotaTaskGetInfo
impl Clone for LoRaWanFuotaTaskGetInfo
source§fn clone(&self) -> LoRaWanFuotaTaskGetInfo
fn clone(&self) -> LoRaWanFuotaTaskGetInfo
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 LoRaWanFuotaTaskGetInfo
impl Debug for LoRaWanFuotaTaskGetInfo
source§impl PartialEq for LoRaWanFuotaTaskGetInfo
impl PartialEq for LoRaWanFuotaTaskGetInfo
source§fn eq(&self, other: &LoRaWanFuotaTaskGetInfo) -> bool
fn eq(&self, other: &LoRaWanFuotaTaskGetInfo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for LoRaWanFuotaTaskGetInfo
Auto Trait Implementations§
impl Freeze for LoRaWanFuotaTaskGetInfo
impl RefUnwindSafe for LoRaWanFuotaTaskGetInfo
impl Send for LoRaWanFuotaTaskGetInfo
impl Sync for LoRaWanFuotaTaskGetInfo
impl Unpin for LoRaWanFuotaTaskGetInfo
impl UnwindSafe for LoRaWanFuotaTaskGetInfo
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.