#[non_exhaustive]pub struct GetWirelessGatewayOutput {
pub name: Option<String>,
pub id: Option<String>,
pub description: Option<String>,
pub lo_ra_wan: Option<LoRaWanGateway>,
pub arn: Option<String>,
pub thing_name: Option<String>,
pub thing_arn: Option<String>,
/* private fields */
}
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.name: Option<String>
The name of the resource.
id: Option<String>
The ID of the wireless gateway.
description: Option<String>
The description of the resource.
lo_ra_wan: Option<LoRaWanGateway>
Information about the wireless gateway.
arn: Option<String>
The Amazon Resource Name of the resource.
thing_name: Option<String>
The name of the thing associated with the wireless gateway. The value is empty if a thing isn't associated with the gateway.
thing_arn: Option<String>
The ARN of the thing associated with the wireless gateway.
Implementations§
source§impl GetWirelessGatewayOutput
impl GetWirelessGatewayOutput
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>
Information about the wireless gateway.
sourcepub fn thing_name(&self) -> Option<&str>
pub fn thing_name(&self) -> Option<&str>
The name of the thing associated with the wireless gateway. The value is empty if a thing isn't associated with the gateway.
source§impl GetWirelessGatewayOutput
impl GetWirelessGatewayOutput
sourcepub fn builder() -> GetWirelessGatewayOutputBuilder
pub fn builder() -> GetWirelessGatewayOutputBuilder
Creates a new builder-style object to manufacture GetWirelessGatewayOutput
.
Trait Implementations§
source§impl Clone for GetWirelessGatewayOutput
impl Clone for GetWirelessGatewayOutput
source§fn clone(&self) -> GetWirelessGatewayOutput
fn clone(&self) -> GetWirelessGatewayOutput
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 GetWirelessGatewayOutput
impl Debug for GetWirelessGatewayOutput
source§impl PartialEq for GetWirelessGatewayOutput
impl PartialEq for GetWirelessGatewayOutput
source§fn eq(&self, other: &GetWirelessGatewayOutput) -> bool
fn eq(&self, other: &GetWirelessGatewayOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetWirelessGatewayOutput
impl RequestId for GetWirelessGatewayOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetWirelessGatewayOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetWirelessGatewayOutput
impl Send for GetWirelessGatewayOutput
impl Sync for GetWirelessGatewayOutput
impl Unpin for GetWirelessGatewayOutput
impl UnwindSafe for GetWirelessGatewayOutput
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.