#[non_exhaustive]pub struct WirelessGatewayStatistics {
pub arn: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub lo_ra_wan: Option<LoRaWanGateway>,
pub last_uplink_received_at: Option<String>,
}Expand description
Information about a wireless gateway's operation.
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.arn: Option<String>The Amazon Resource Name of the resource.
id: Option<String>The ID of the wireless gateway reporting the data.
name: Option<String>The name of the resource.
description: Option<String>The description of the resource.
lo_ra_wan: Option<LoRaWanGateway>LoRaWAN gateway info.
last_uplink_received_at: Option<String>The date and time when the most recent uplink was received.
This value is only valid for 3 months.
Implementations§
source§impl WirelessGatewayStatistics
impl WirelessGatewayStatistics
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the resource.
sourcepub fn lo_ra_wan(&self) -> Option<&LoRaWanGateway>
pub fn lo_ra_wan(&self) -> Option<&LoRaWanGateway>
LoRaWAN gateway info.
sourcepub fn last_uplink_received_at(&self) -> Option<&str>
pub fn last_uplink_received_at(&self) -> Option<&str>
The date and time when the most recent uplink was received.
This value is only valid for 3 months.
source§impl WirelessGatewayStatistics
impl WirelessGatewayStatistics
sourcepub fn builder() -> WirelessGatewayStatisticsBuilder
pub fn builder() -> WirelessGatewayStatisticsBuilder
Creates a new builder-style object to manufacture WirelessGatewayStatistics.
Trait Implementations§
source§impl Clone for WirelessGatewayStatistics
impl Clone for WirelessGatewayStatistics
source§fn clone(&self) -> WirelessGatewayStatistics
fn clone(&self) -> WirelessGatewayStatistics
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 WirelessGatewayStatistics
impl Debug for WirelessGatewayStatistics
source§impl PartialEq for WirelessGatewayStatistics
impl PartialEq for WirelessGatewayStatistics
source§fn eq(&self, other: &WirelessGatewayStatistics) -> bool
fn eq(&self, other: &WirelessGatewayStatistics) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for WirelessGatewayStatistics
Auto Trait Implementations§
impl Freeze for WirelessGatewayStatistics
impl RefUnwindSafe for WirelessGatewayStatistics
impl Send for WirelessGatewayStatistics
impl Sync for WirelessGatewayStatistics
impl Unpin for WirelessGatewayStatistics
impl UnwindSafe for WirelessGatewayStatistics
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.