Struct aws_sdk_iotwireless::types::TraceContent
source · #[non_exhaustive]pub struct TraceContent {
pub wireless_device_frame_info: Option<WirelessDeviceFrameInfo>,
pub log_level: Option<LogLevel>,
pub multicast_frame_info: Option<MulticastFrameInfo>,
}
Expand description
Trace content for your wireless gateway and wireless device resources.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.wireless_device_frame_info: Option<WirelessDeviceFrameInfo>
FrameInfo
of your wireless device resources for the trace content. Use FrameInfo to debug the communication between your LoRaWAN end devices and the network server.
log_level: Option<LogLevel>
The log level for a log message. The log levels can be disabled, or set to ERROR
to display less verbose logs containing only error information, or to INFO
for more detailed logs.
multicast_frame_info: Option<MulticastFrameInfo>
FrameInfo
of your multicast group resources for the trace content. Use FrameInfo to debug the multicast communication between your LoRaWAN end devices and the network server.
Implementations§
source§impl TraceContent
impl TraceContent
sourcepub fn wireless_device_frame_info(&self) -> Option<&WirelessDeviceFrameInfo>
pub fn wireless_device_frame_info(&self) -> Option<&WirelessDeviceFrameInfo>
FrameInfo
of your wireless device resources for the trace content. Use FrameInfo to debug the communication between your LoRaWAN end devices and the network server.
sourcepub fn log_level(&self) -> Option<&LogLevel>
pub fn log_level(&self) -> Option<&LogLevel>
The log level for a log message. The log levels can be disabled, or set to ERROR
to display less verbose logs containing only error information, or to INFO
for more detailed logs.
sourcepub fn multicast_frame_info(&self) -> Option<&MulticastFrameInfo>
pub fn multicast_frame_info(&self) -> Option<&MulticastFrameInfo>
FrameInfo
of your multicast group resources for the trace content. Use FrameInfo to debug the multicast communication between your LoRaWAN end devices and the network server.
source§impl TraceContent
impl TraceContent
sourcepub fn builder() -> TraceContentBuilder
pub fn builder() -> TraceContentBuilder
Creates a new builder-style object to manufacture TraceContent
.
Trait Implementations§
source§impl Clone for TraceContent
impl Clone for TraceContent
source§fn clone(&self) -> TraceContent
fn clone(&self) -> TraceContent
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TraceContent
impl Debug for TraceContent
source§impl PartialEq for TraceContent
impl PartialEq for TraceContent
source§fn eq(&self, other: &TraceContent) -> bool
fn eq(&self, other: &TraceContent) -> bool
self
and other
values to be equal, and is used
by ==
.