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 devices, gateways, and multicast groups.
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 multicast groups 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 multicast groups 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 ==
.impl StructuralPartialEq for TraceContent
Auto Trait Implementations§
impl Freeze for TraceContent
impl RefUnwindSafe for TraceContent
impl Send for TraceContent
impl Sync for TraceContent
impl Unpin for TraceContent
impl UnwindSafe for TraceContent
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more