pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}Expand description
? formatting.
Debug should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive a Debug implementation.
When used with the alternate format specifier #?, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive] if all fields implement Debug. When
derived for structs, it will use the name of the struct, then {, then a
comma-separated list of each field’s name and Debug value, then }. For
enums, it will use the name of the variant and, if applicable, (, then the
Debug values of the fields, then ).
§Stability
Derived Debug formats are not stable, and so may change with future Rust
versions. Additionally, Debug implementations of types provided by the
standard library (std, core, alloc, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);There are a number of helper methods on the Formatter struct to help you with manual
implementations, such as debug_struct.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter trait (debug_struct, debug_tuple,
debug_list, debug_set, debug_map) can do something totally custom by
manually writing an arbitrary representation to the Formatter.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}Debug implementations using either derive or the debug builder API
on Formatter support pretty-printing using the alternate flag: {:#?}.
Pretty-printing with #?:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err if, and only if, the provided Formatter returns Err.
String formatting is considered an infallible operation; this function only
returns a Result because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");Implementors§
impl Debug for NfCtSctpState
conntrack only.impl Debug for NfCtStatus
conntrack only.impl Debug for NfCtTcpFlags
conntrack only.impl Debug for NfCtTcpState
conntrack only.impl Debug for BitwiseOps
nftables only.impl Debug for ChainFlags
nftables only.impl Debug for CmpOps
nftables only.impl Debug for CtDirection
nftables only.impl Debug for CtKeys
nftables only.impl Debug for FibFlags
nftables only.impl Debug for FibResult
nftables only.impl Debug for LogFlags
nftables only.impl Debug for LogLevel
nftables only.impl Debug for LookupFlags
nftables only.impl Debug for MetaKeys
nftables only.impl Debug for NatRangeFlags
nftables only.impl Debug for NumgenTypes
nftables only.impl Debug for ObjectType
nftables only.impl Debug for PayloadBase
nftables only.impl Debug for QuotaFlags
nftables only.impl Debug for RangeOps
nftables only.impl Debug for Registers
nftables only.impl Debug for RejectTypes
nftables only.impl Debug for SetFlags
nftables only.impl Debug for TableFlags
nftables only.impl Debug for VerdictCode
nftables only.impl Debug for AttrType
nlctrl only.impl Debug for OpFlags
nlctrl only.impl Debug for IfaFlags
rt-addr only.impl Debug for IfinfoFlags
rt-link only.impl Debug for IflaIcmp6Stats
rt-link only.impl Debug for IflaInet6Stats
rt-link only.impl Debug for IflaVfLinkStateEnum
rt-link only.impl Debug for Ipv4Devconf
rt-link only.impl Debug for Ipv6Devconf
rt-link only.impl Debug for NetkitMode
rt-link only.impl Debug for NetkitPolicy
rt-link only.impl Debug for NetkitScrub
rt-link only.impl Debug for OvpnMode
rt-link only.impl Debug for RtextFilter
rt-link only.impl Debug for VlanFlags
rt-link only.impl Debug for VlanProtocols
rt-link only.impl Debug for NtfExtFlags
rt-neigh only.impl Debug for NtfFlags
rt-neigh only.impl Debug for NudState
rt-neigh only.impl Debug for netlink_bindings::rt_neigh::RtmType
rt-neigh only.impl Debug for netlink_bindings::rt_route::RtmType
rt-route only.impl Debug for FrAct
rt-rule only.impl Debug for ClsFlags
tc only.impl Debug for Dualpi2DropEarly
tc only.impl Debug for Dualpi2DropOverload
tc only.impl Debug for Dualpi2EcnMask
tc only.impl Debug for Dualpi2SplitGso
tc only.impl Debug for FlowerKeyCtrlFlags
tc only.impl Debug for Protocol
impl Debug for WgallowedipFlags
wireguard only.impl Debug for WgdeviceFlags
wireguard only.impl Debug for WgpeerFlags
wireguard only.impl Debug for ErrorReason
impl Debug for IpAddr
impl Debug for netlink_bindings::utils::SocketAddr
impl Debug for TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for core::cmp::Ordering
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for core::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for Sign
impl Debug for AtomicOrdering
impl Debug for Ipv6MulticastScope
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for GetDisjointMutError
impl Debug for SearchStep
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for std::fs::TryLockError
impl Debug for SeekFrom
impl Debug for ErrorKind
impl Debug for Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for RecvTimeoutError
impl Debug for TryRecvError
impl Debug for bool
impl Debug for char
impl Debug for f16
impl Debug for f32
impl Debug for f64
impl Debug for f128
impl Debug for i8
impl Debug for i16
impl Debug for i32
impl Debug for i64
impl Debug for i128
impl Debug for isize
impl Debug for !
impl Debug for str
impl Debug for u8
impl Debug for u16
impl Debug for u32
impl Debug for u64
impl Debug for u128
impl Debug for ()
impl Debug for usize
impl Debug for IterableDummy<'_>
impl Debug for PushBuiltinBitfield32
impl Debug for PushBuiltinNfgenmsg
impl Debug for PushNlmsghdr
impl Debug for IterableConntrackStatsAttrs<'_>
conntrack only.impl Debug for IterableNatProtoAttrs<'_>
conntrack only.impl Debug for IterableOpGetStatsDumpReply<'_>
conntrack only.impl Debug for IterableOpGetStatsDumpRequest<'_>
conntrack only.impl Debug for IterableProtoinfoSctpAttrs<'_>
conntrack only.impl Debug for IterableProtoinfoTcpAttrs<'_>
conntrack only.impl Debug for IterableSeqadjAttrs<'_>
conntrack only.impl Debug for IterableSynproxyAttrs<'_>
conntrack only.impl Debug for IterableTupleIpAttrs<'_>
conntrack only.impl Debug for IterableTupleProtoAttrs<'_>
conntrack only.impl Debug for PushNfCtTcpFlagsMask
conntrack only.impl Debug for netlink_bindings::conntrack::PushNfgenmsg
conntrack only.impl Debug for netlink_bindings::conntrack::RequestInfo
conntrack only.impl Debug for IterableBatchAttrs<'_>
nftables only.impl Debug for IterableExprCtAttrs<'_>
nftables only.impl Debug for IterableExprFibAttrs<'_>
nftables only.impl Debug for IterableExprMetaAttrs<'_>
nftables only.impl Debug for IterableExprNatAttrs<'_>
nftables only.impl Debug for IterableExprPayloadAttrs<'_>
nftables only.impl Debug for IterableExprRejectAttrs<'_>
nftables only.impl Debug for IterableExprTproxyAttrs<'_>
nftables only.impl Debug for IterableNftCounterAttrs<'_>
nftables only.impl Debug for IterableNumgenAttrs<'_>
nftables only.impl Debug for IterableOpBatchBeginDoReply<'_>
nftables only.impl Debug for IterableOpBatchBeginDoRequest<'_>
nftables only.impl Debug for IterableOpBatchEndDoReply<'_>
nftables only.impl Debug for IterableOpBatchEndDoRequest<'_>
nftables only.impl Debug for netlink_bindings::nftables::IterableOpDelchainDoReply<'_>
nftables only.impl Debug for IterableOpDelflowtableDoReply<'_>
nftables only.impl Debug for IterableOpDelobjDoReply<'_>
nftables only.impl Debug for netlink_bindings::nftables::IterableOpDelruleDoReply<'_>
nftables only.impl Debug for IterableOpDelsetDoReply<'_>
nftables only.impl Debug for IterableOpDelsetelemDoReply<'_>
nftables only.impl Debug for IterableOpDeltableDoReply<'_>
nftables only.impl Debug for IterableOpDestroychainDoReply<'_>
nftables only.impl Debug for IterableOpDestroyflowtableDoReply<'_>
nftables only.impl Debug for IterableOpDestroyobjDoReply<'_>
nftables only.impl Debug for IterableOpDestroyruleDoReply<'_>
nftables only.impl Debug for IterableOpDestroysetDoReply<'_>
nftables only.impl Debug for IterableOpDestroysetelemDoReply<'_>
nftables only.impl Debug for IterableOpDestroytableDoReply<'_>
nftables only.impl Debug for IterableOpGetchainDumpRequest<'_>
nftables only.impl Debug for IterableOpGetcompatDumpRequest<'_>
nftables only.impl Debug for IterableOpGetflowtableDumpRequest<'_>
nftables only.impl Debug for IterableOpGetgenDoRequest<'_>
nftables only.impl Debug for IterableOpGetgenDumpRequest<'_>
nftables only.impl Debug for IterableOpGettableDumpRequest<'_>
nftables only.impl Debug for netlink_bindings::nftables::IterableOpNewchainDoReply<'_>
nftables only.impl Debug for IterableOpNewflowtableDoReply<'_>
nftables only.impl Debug for IterableOpNewobjDoReply<'_>
nftables only.impl Debug for netlink_bindings::nftables::IterableOpNewruleDoReply<'_>
nftables only.impl Debug for IterableOpNewsetDoReply<'_>
nftables only.impl Debug for IterableOpNewsetelemDoReply<'_>
nftables only.impl Debug for IterableOpNewtableDoReply<'_>
nftables only.impl Debug for IterableRuleCompatAttrs<'_>
nftables only.impl Debug for IterableSetFieldAttrs<'_>
nftables only.impl Debug for netlink_bindings::nftables::PushNfgenmsg
nftables only.impl Debug for netlink_bindings::nftables::RequestInfo
nftables only.impl Debug for IterableArrayMcastGroupAttrs<'_>
nlctrl only.impl Debug for IterableArrayOpAttrs<'_>
nlctrl only.impl Debug for IterableOpAttrs<'_>
nlctrl only.impl Debug for IterableOpGetfamilyDumpRequest<'_>
nlctrl only.impl Debug for IterableOpPolicyAttrs<'_>
nlctrl only.impl Debug for netlink_bindings::nlctrl::RequestInfo
nlctrl only.impl Debug for IterableOpDeladdrDoReply<'_>
rt-addr only.impl Debug for IterableOpDeladdrDoRequest<'_>
rt-addr only.impl Debug for IterableOpGetaddrDumpRequest<'_>
rt-addr only.impl Debug for IterableOpGetmulticastDoRequest<'_>
rt-addr only.impl Debug for IterableOpGetmulticastDumpRequest<'_>
rt-addr only.impl Debug for IterableOpNewaddrDoReply<'_>
rt-addr only.impl Debug for PushIfaCacheinfo
rt-addr only.impl Debug for PushIfaddrmsg
rt-addr only.impl Debug for netlink_bindings::rt_addr::RequestInfo
rt-addr only.impl Debug for IterableArrayBinary<'_>
rt-link only.impl Debug for IterableArrayHwSInfoOne<'_>
rt-link only.impl Debug for IterableArrayIpv4Addr<'_>
rt-link only.impl Debug for IterableHwSInfoOne<'_>
rt-link only.impl Debug for IterableIflaVlanQos<'_>
rt-link only.impl Debug for IterableLinkDpllPinAttrs<'_>
rt-link only.impl Debug for IterableLinkinfoOvpnAttrs<'_>
rt-link only.impl Debug for IterableLinkinfoTunAttrs<'_>
rt-link only.impl Debug for IterableLinkinfoVrfAttrs<'_>
rt-link only.impl Debug for IterableMctpAttrs<'_>
rt-link only.impl Debug for IterableOpDellinkDoReply<'_>
rt-link only.impl Debug for IterableOpGetstatsDoRequest<'_>
rt-link only.impl Debug for IterableOpGetstatsDumpRequest<'_>
rt-link only.impl Debug for IterableOpNewlinkDoReply<'_>
rt-link only.impl Debug for IterableOpSetlinkDoReply<'_>
rt-link only.impl Debug for IterablePortSelfAttrs<'_>
rt-link only.impl Debug for IterableVfPortsAttrs<'_>
rt-link only.impl Debug for IterableVfVlanAttrs<'_>
rt-link only.impl Debug for IterableXdpAttrs<'_>
rt-link only.impl Debug for PushBrBooloptMulti
rt-link only.impl Debug for PushIfStatsMsg
rt-link only.impl Debug for PushIfinfomsg
rt-link only.impl Debug for PushIflaBridgeId
rt-link only.impl Debug for PushIflaCacheinfo
rt-link only.impl Debug for PushIflaGenevePortRange
rt-link only.impl Debug for PushIflaVfGuid
rt-link only.impl Debug for PushIflaVfLinkState
rt-link only.impl Debug for PushIflaVfMac
rt-link only.impl Debug for PushIflaVfRate
rt-link only.impl Debug for PushIflaVfRssQueryEn
rt-link only.impl Debug for PushIflaVfSpoofchk
rt-link only.impl Debug for PushIflaVfTrust
rt-link only.impl Debug for PushIflaVfTxRate
rt-link only.impl Debug for PushIflaVfVlan
rt-link only.impl Debug for PushIflaVfVlanInfo
rt-link only.impl Debug for PushIflaVlanFlags
rt-link only.impl Debug for PushIflaVlanQosMapping
rt-link only.impl Debug for netlink_bindings::rt_link::PushRtgenmsg
rt-link only.impl Debug for PushRtnlLinkIfmap
rt-link only.impl Debug for PushRtnlLinkStats64
rt-link only.impl Debug for PushRtnlLinkStats
rt-link only.impl Debug for netlink_bindings::rt_link::RequestInfo
rt-link only.impl Debug for IterableOpDelneighDoReply<'_>
rt-neigh only.impl Debug for IterableOpGetneighDumpRequest<'_>
rt-neigh only.impl Debug for IterableOpGetneightblDumpRequest<'_>
rt-neigh only.impl Debug for IterableOpNewneighDoReply<'_>
rt-neigh only.impl Debug for IterableOpSetneightblDoReply<'_>
rt-neigh only.impl Debug for PushNdaCacheinfo
rt-neigh only.impl Debug for PushNdmsg
rt-neigh only.impl Debug for PushNdtConfig
rt-neigh only.impl Debug for PushNdtStats
rt-neigh only.impl Debug for PushNdtmsg
rt-neigh only.impl Debug for netlink_bindings::rt_neigh::RequestInfo
rt-neigh only.impl Debug for IterableOpDelrouteDoReply<'_>
rt-route only.impl Debug for IterableOpGetrouteDumpRequest<'_>
rt-route only.impl Debug for IterableOpNewrouteDoReply<'_>
rt-route only.impl Debug for PushRtaCacheinfo
rt-route only.impl Debug for PushRtmsg
rt-route only.impl Debug for netlink_bindings::rt_route::RequestInfo
rt-route only.impl Debug for netlink_bindings::rt_rule::IterableOpDelruleDoReply<'_>
rt-rule only.impl Debug for netlink_bindings::rt_rule::IterableOpGetruleDumpRequest<'_>
rt-rule only.impl Debug for netlink_bindings::rt_rule::IterableOpNewruleDoReply<'_>
rt-rule only.impl Debug for PushFibRuleHdr
rt-rule only.impl Debug for PushFibRulePortRange
rt-rule only.impl Debug for PushFibRuleUidRange
rt-rule only.impl Debug for netlink_bindings::rt_rule::PushRtgenmsg
rt-rule only.impl Debug for netlink_bindings::rt_rule::RequestInfo
rt-rule only.impl Debug for IterableArrayActAttrs<'_>
tc only.impl Debug for IterableArrayCakeTinStatsAttrs<'_>
tc only.impl Debug for IterableCbsAttrs<'_>
tc only.impl Debug for IterableCodelAttrs<'_>
tc only.impl Debug for IterableDrrAttrs<'_>
tc only.impl Debug for IterableDualpi2Attrs<'_>
tc only.impl Debug for IterableEtfAttrs<'_>
tc only.impl Debug for IterableFlowerKeyCfmAttrs<'_>
tc only.impl Debug for IterableFlowerKeyEncOptErspanAttrs<'_>
tc only.impl Debug for IterableFlowerKeyEncOptGtpAttrs<'_>
tc only.impl Debug for IterableFlowerKeyEncOptVxlanAttrs<'_>
tc only.impl Debug for IterableFlowerKeyMplsOptAttrs<'_>
tc only.impl Debug for IterableFqCodelAttrs<'_>
tc only.impl Debug for IterableFqPieAttrs<'_>
tc only.impl Debug for IterableHhfAttrs<'_>
tc only.impl Debug for IterableNetemLossAttrs<'_>
tc only.impl Debug for netlink_bindings::tc::IterableOpDelchainDoReply<'_>
tc only.impl Debug for netlink_bindings::tc::IterableOpDelchainDoRequest<'_>
tc only.impl Debug for IterableOpDelqdiscDoReply<'_>
tc only.impl Debug for IterableOpDeltclassDoReply<'_>
tc only.impl Debug for IterableOpDeltclassDoRequest<'_>
tc only.impl Debug for IterableOpDeltfilterDoReply<'_>
tc only.impl Debug for netlink_bindings::tc::IterableOpGetchainDoRequest<'_>
tc only.impl Debug for IterableOpGetqdiscDoRequest<'_>
tc only.impl Debug for IterableOpGetqdiscDumpRequest<'_>
tc only.impl Debug for IterableOpGettclassDoRequest<'_>
tc only.impl Debug for IterableOpGettfilterDumpRequest<'_>
tc only.impl Debug for netlink_bindings::tc::IterableOpNewchainDoReply<'_>
tc only.impl Debug for IterableOpNewqdiscDoReply<'_>
tc only.impl Debug for IterableOpNewtclassDoReply<'_>
tc only.impl Debug for IterableOpNewtfilterDoReply<'_>
tc only.impl Debug for IterablePieAttrs<'_>
tc only.impl Debug for IterableQfqAttrs<'_>
tc only.impl Debug for IterableTaprioSchedEntry<'_>
tc only.impl Debug for IterableTaprioTcEntryAttrs<'_>
tc only.impl Debug for PushGnetEstimator
tc only.impl Debug for PushGnetStatsBasic
tc only.impl Debug for PushGnetStatsQueue
tc only.impl Debug for PushGnetStatsRateEst64
tc only.impl Debug for PushGnetStatsRateEst
tc only.impl Debug for PushTcBasicPcnt
tc only.impl Debug for PushTcCbsQopt
tc only.impl Debug for PushTcChokeXstats
tc only.impl Debug for PushTcCodelXstats
tc only.impl Debug for PushTcDualpi2Xstats
tc only.impl Debug for PushTcEtfQopt
tc only.impl Debug for PushTcFifoQopt
tc only.impl Debug for PushTcFqCodelXstats
tc only.impl Debug for PushTcFqPieXstats
tc only.impl Debug for PushTcFqQdStats
tc only.impl Debug for PushTcGact
tc only.impl Debug for PushTcGactP
tc only.impl Debug for PushTcGredQopt
tc only.impl Debug for PushTcGredSopt
tc only.impl Debug for PushTcHfscQopt
tc only.impl Debug for PushTcHhfXstats
tc only.impl Debug for PushTcHtbGlob
tc only.impl Debug for PushTcHtbOpt
tc only.impl Debug for PushTcMatchallPcnt
tc only.impl Debug for PushTcMpls
tc only.impl Debug for PushTcMqprioQopt
tc only.impl Debug for PushTcMultiqQopt
tc only.impl Debug for PushTcNetemCorr
tc only.impl Debug for PushTcNetemCorrupt
tc only.impl Debug for PushTcNetemGemodel
tc only.impl Debug for PushTcNetemGimodel
tc only.impl Debug for PushTcNetemQopt
tc only.impl Debug for PushTcNetemRate
tc only.impl Debug for PushTcNetemReorder
tc only.impl Debug for PushTcNetemSlot
tc only.impl Debug for PushTcPeditKey
tc only.impl Debug for PushTcPeditSel
tc only.impl Debug for PushTcPieXstats
tc only.impl Debug for PushTcPlugQopt
tc only.impl Debug for PushTcPolice
tc only.impl Debug for PushTcPrioQopt
tc only.impl Debug for PushTcRatespec
tc only.impl Debug for PushTcRedQopt
tc only.impl Debug for PushTcRedXstats
tc only.impl Debug for PushTcSfbQopt
tc only.impl Debug for PushTcSfbXstats
tc only.impl Debug for PushTcSfqQopt
tc only.impl Debug for PushTcSfqQoptV1
tc only.impl Debug for PushTcSfqXstats
tc only.impl Debug for PushTcSfqredStats
tc only.impl Debug for PushTcSizespec
tc only.impl Debug for PushTcStats
tc only.impl Debug for PushTcTbfQopt
tc only.impl Debug for PushTcU32Key
tc only.impl Debug for PushTcU32Mark
tc only.impl Debug for PushTcU32Pcnt
tc only.impl Debug for PushTcU32Sel
tc only.impl Debug for PushTcVlan
tc only.impl Debug for PushTcfEmatchTreeHdr
tc only.impl Debug for PushTcfT
tc only.impl Debug for PushTcmsg
tc only.impl Debug for netlink_bindings::tc::RequestInfo
tc only.impl Debug for IterableArrayWgallowedip<'_>
wireguard only.impl Debug for IterableArrayWgpeer<'_>
wireguard only.impl Debug for IterableOpSetDeviceDoReply<'_>
wireguard only.impl Debug for IterableWgallowedip<'_>
wireguard only.impl Debug for PushKernelTimespec
wireguard only.impl Debug for netlink_bindings::wireguard::RequestInfo
wireguard only.impl Debug for Global
impl Debug for ByteString
impl Debug for UnorderedKeyError
impl Debug for TryReserveError
impl Debug for CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for String
impl Debug for Layout
impl Debug for LayoutError
impl Debug for AllocError
impl Debug for TypeId
impl Debug for TryFromSliceError
impl Debug for core::ascii::EscapeDefault
impl Debug for ByteStr
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for ParseCharError
impl Debug for DecodeUtf16Error
impl Debug for core::char::EscapeDebug
impl Debug for core::char::EscapeDefault
impl Debug for core::char::EscapeUnicode
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for CpuidResult
impl Debug for __m128
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128h
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for bf16
impl Debug for FromBytesUntilNulError
impl Debug for Arguments<'_>
impl Debug for core::fmt::Error
impl Debug for FormattingOptions
impl Debug for SipHasher
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomPinned
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for Assume
impl Debug for AddrParseError
impl Debug for ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for Location<'_>
impl Debug for PanicMessage<'_>
impl Debug for core::ptr::alignment::Alignment
impl Debug for ParseBoolError
impl Debug for Utf8Error
impl Debug for Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for Utf8Chunks<'_>
impl Debug for AtomicBool
impl Debug for AtomicI8
impl Debug for AtomicI16
impl Debug for AtomicI32
impl Debug for AtomicI64
impl Debug for AtomicIsize
impl Debug for AtomicU8
impl Debug for AtomicU16
impl Debug for AtomicU32
impl Debug for AtomicU64
impl Debug for AtomicUsize
impl Debug for Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for Duration
impl Debug for TryFromFloatSecsError
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for OsStr
impl Debug for OsString
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for File
impl Debug for FileTimes
impl Debug for FileType
impl Debug for Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for DefaultHasher
impl Debug for RandomState
impl Debug for WriterPanicked
impl Debug for std::io::error::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for Stderr
impl Debug for StderrLock<'_>
impl Debug for Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdout
impl Debug for StdoutLock<'_>
impl Debug for std::io::util::Empty
impl Debug for std::io::util::Repeat
impl Debug for Sink
impl Debug for IntoIncoming
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for UdpSocket
impl Debug for BorrowedFd<'_>
impl Debug for OwnedFd
impl Debug for PidFd
impl Debug for std::os::unix::net::addr::SocketAddr
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for UCred
impl Debug for Components<'_>
impl Debug for std::path::Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for NormalizeError
impl Debug for Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for Stdio
impl Debug for DefaultRandomSource
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for RecvError
impl Debug for std::sync::nonpoison::condvar::Condvar
impl Debug for WouldBlock
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for std::sync::poison::once::Once
impl Debug for OnceState
impl Debug for WaitTimeoutResult
impl Debug for AccessError
impl Debug for Scope<'_, '_>
impl Debug for Builder
impl Debug for Thread
impl Debug for ThreadId
impl Debug for Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for CStr
Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
impl Debug for ErrorContext
impl Debug for FormatHex<'_>
impl Debug for Header
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl<'a> Debug for ExprOps<'a>
nftables only.impl<'a> Debug for ObjData<'a>
nftables only.impl<'a> Debug for LinkinfoDataMsg<'a>
rt-link only.impl<'a> Debug for LinkinfoMemberDataMsg<'a>
rt-link only.impl<'a> Debug for ActOptionsMsg<'a>
tc only.impl<'a> Debug for OptionsMsg<'a>
tc only.impl<'a> Debug for TcaStatsAppMsg<'a>
tc only.impl<'a> Debug for RequestBuf<'a>
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for IterableNlmsgerrAttrs<'_>
impl<'a> Debug for IterablePolicyTypeAttrs<'_>
impl<'a> Debug for netlink_bindings::conntrack::Chained<'a>
conntrack only.impl<'a> Debug for netlink_bindings::conntrack::ChainedFinal<'a>
conntrack only.impl<'a> Debug for IterableConntrackAttrs<'_>
conntrack only.impl<'a> Debug for netlink_bindings::conntrack::IterableCounterAttrs<'_>
conntrack only.impl<'a> Debug for IterableHelpAttrs<'_>
conntrack only.impl<'a> Debug for IterableNatAttrs<'_>
conntrack only.impl<'a> Debug for IterableOpGetDoReply<'_>
conntrack only.impl<'a> Debug for IterableOpGetDoRequest<'_>
conntrack only.impl<'a> Debug for IterableOpGetDumpReply<'_>
conntrack only.impl<'a> Debug for IterableOpGetDumpRequest<'_>
conntrack only.impl<'a> Debug for IterableProtoinfoAttrs<'_>
conntrack only.impl<'a> Debug for IterableProtoinfoDccpAttrs<'_>
conntrack only.impl<'a> Debug for IterableSecctxAttrs<'_>
conntrack only.impl<'a> Debug for IterableTupleAttrs<'_>
conntrack only.impl<'a> Debug for netlink_bindings::nftables::Chained<'a>
nftables only.impl<'a> Debug for netlink_bindings::nftables::ChainedFinal<'a>
nftables only.impl<'a> Debug for IterableChainAttrs<'_>
nftables only.impl<'a> Debug for IterableCompatAttrs<'_>
nftables only.impl<'a> Debug for IterableCompatMatchAttrs<'_>
nftables only.impl<'a> Debug for IterableCompatTargetAttrs<'_>
nftables only.impl<'a> Debug for netlink_bindings::nftables::IterableCounterAttrs<'_>
nftables only.impl<'a> Debug for IterableDataAttrs<'_>
nftables only.impl<'a> Debug for IterableExprAttrs<'_>
nftables only.impl<'a> Debug for IterableExprBitwiseAttrs<'_>
nftables only.impl<'a> Debug for IterableExprCmpAttrs<'_>
nftables only.impl<'a> Debug for IterableExprCounterAttrs<'_>
nftables only.impl<'a> Debug for IterableExprFlowOffloadAttrs<'_>
nftables only.impl<'a> Debug for IterableExprImmediateAttrs<'_>
nftables only.impl<'a> Debug for IterableExprListAttrs<'_>
nftables only.impl<'a> Debug for IterableExprLookupAttrs<'_>
nftables only.impl<'a> Debug for IterableExprObjrefAttrs<'_>
nftables only.impl<'a> Debug for IterableExprTargetAttrs<'_>
nftables only.impl<'a> Debug for IterableFlowtableAttrs<'_>
nftables only.impl<'a> Debug for IterableFlowtableHookAttrs<'_>
nftables only.impl<'a> Debug for IterableGenAttrs<'_>
nftables only.impl<'a> Debug for IterableHookDevAttrs<'_>
nftables only.impl<'a> Debug for IterableLogAttrs<'_>
nftables only.impl<'a> Debug for IterableNftHookAttrs<'_>
nftables only.impl<'a> Debug for IterableObjAttrs<'_>
nftables only.impl<'a> Debug for netlink_bindings::nftables::IterableOpDelchainDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDelflowtableDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDelobjDoRequest<'_>
nftables only.impl<'a> Debug for netlink_bindings::nftables::IterableOpDelruleDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDelsetDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDelsetelemDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDeltableDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDestroychainDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDestroyflowtableDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDestroyobjDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDestroyruleDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDestroysetDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDestroysetelemDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpDestroytableDoRequest<'_>
nftables only.impl<'a> Debug for netlink_bindings::nftables::IterableOpGetchainDoReply<'_>
nftables only.impl<'a> Debug for netlink_bindings::nftables::IterableOpGetchainDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetchainDumpReply<'_>
nftables only.impl<'a> Debug for IterableOpGetcompatDoReply<'_>
nftables only.impl<'a> Debug for IterableOpGetcompatDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetcompatDumpReply<'_>
nftables only.impl<'a> Debug for IterableOpGetflowtableDoReply<'_>
nftables only.impl<'a> Debug for IterableOpGetflowtableDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetflowtableDumpReply<'_>
nftables only.impl<'a> Debug for IterableOpGetgenDoReply<'_>
nftables only.impl<'a> Debug for IterableOpGetgenDumpReply<'_>
nftables only.impl<'a> Debug for IterableOpGetobjDoReply<'_>
nftables only.impl<'a> Debug for IterableOpGetobjDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetobjDumpReply<'_>
nftables only.impl<'a> Debug for IterableOpGetobjDumpRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetruleDoReply<'_>
nftables only.impl<'a> Debug for IterableOpGetruleDoRequest<'_>
nftables only.impl<'a> Debug for netlink_bindings::nftables::IterableOpGetruleDumpReply<'_>
nftables only.impl<'a> Debug for netlink_bindings::nftables::IterableOpGetruleDumpRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetruleResetDoReply<'_>
nftables only.impl<'a> Debug for IterableOpGetruleResetDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetruleResetDumpReply<'_>
nftables only.impl<'a> Debug for IterableOpGetruleResetDumpRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetsetDoReply<'_>
nftables only.impl<'a> Debug for IterableOpGetsetDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetsetDumpReply<'_>
nftables only.impl<'a> Debug for IterableOpGetsetDumpRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetsetelemDoReply<'_>
nftables only.impl<'a> Debug for IterableOpGetsetelemDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetsetelemDumpReply<'_>
nftables only.impl<'a> Debug for IterableOpGetsetelemDumpRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetsetelemResetDoReply<'_>
nftables only.impl<'a> Debug for IterableOpGetsetelemResetDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpGetsetelemResetDumpReply<'_>
nftables only.impl<'a> Debug for IterableOpGetsetelemResetDumpRequest<'_>
nftables only.impl<'a> Debug for IterableOpGettableDoReply<'_>
nftables only.impl<'a> Debug for IterableOpGettableDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpGettableDumpReply<'_>
nftables only.impl<'a> Debug for netlink_bindings::nftables::IterableOpNewchainDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpNewflowtableDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpNewobjDoRequest<'_>
nftables only.impl<'a> Debug for netlink_bindings::nftables::IterableOpNewruleDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpNewsetDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpNewsetelemDoRequest<'_>
nftables only.impl<'a> Debug for IterableOpNewtableDoRequest<'_>
nftables only.impl<'a> Debug for IterableQuotaAttrs<'_>
nftables only.impl<'a> Debug for IterableRangeAttrs<'_>
nftables only.impl<'a> Debug for IterableRuleAttrs<'_>
nftables only.impl<'a> Debug for IterableSetAttrs<'_>
nftables only.impl<'a> Debug for IterableSetDescAttrs<'_>
nftables only.impl<'a> Debug for IterableSetDescConcatAttrs<'_>
nftables only.impl<'a> Debug for IterableSetListAttrs<'_>
nftables only.impl<'a> Debug for IterableSetelemAttrs<'_>
nftables only.impl<'a> Debug for IterableSetelemListAttrs<'_>
nftables only.impl<'a> Debug for IterableSetelemListElemAttrs<'_>
nftables only.impl<'a> Debug for IterableTableAttrs<'_>
nftables only.impl<'a> Debug for IterableVerdictAttrs<'_>
nftables only.impl<'a> Debug for IterableCtrlAttrs<'_>
nlctrl only.impl<'a> Debug for IterableMcastGroupAttrs<'_>
nlctrl only.impl<'a> Debug for IterableOpGetfamilyDoReply<'_>
nlctrl only.impl<'a> Debug for IterableOpGetfamilyDoRequest<'_>
nlctrl only.impl<'a> Debug for IterableOpGetfamilyDumpReply<'_>
nlctrl only.impl<'a> Debug for IterableOpGetpolicyDumpReply<'_>
nlctrl only.impl<'a> Debug for IterableOpGetpolicyDumpRequest<'_>
nlctrl only.impl<'a> Debug for IterablePolicyAttrs<'_>
nlctrl only.impl<'a> Debug for netlink_bindings::rt_addr::Chained<'a>
rt-addr only.impl<'a> Debug for netlink_bindings::rt_addr::ChainedFinal<'a>
rt-addr only.impl<'a> Debug for IterableAddrAttrs<'_>
rt-addr only.impl<'a> Debug for IterableOpGetaddrDumpReply<'_>
rt-addr only.impl<'a> Debug for IterableOpGetmulticastDoReply<'_>
rt-addr only.impl<'a> Debug for IterableOpGetmulticastDumpReply<'_>
rt-addr only.impl<'a> Debug for IterableOpNewaddrDoRequest<'_>
rt-addr only.impl<'a> Debug for netlink_bindings::rt_link::Chained<'a>
rt-link only.impl<'a> Debug for netlink_bindings::rt_link::ChainedFinal<'a>
rt-link only.impl<'a> Debug for IterableAfSpecAttrs<'_>
rt-link only.impl<'a> Debug for IterableBondAdInfoAttrs<'_>
rt-link only.impl<'a> Debug for IterableBondSlaveAttrs<'_>
rt-link only.impl<'a> Debug for IterableIfla6Attrs<'_>
rt-link only.impl<'a> Debug for IterableIflaAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkOffloadXstats<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoBondAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoBridgeAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoBrportAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoGeneveAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoGre6Attrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoGreAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoIp6tnlAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoIptunAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoNetkitAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoVlanAttrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoVti6Attrs<'_>
rt-link only.impl<'a> Debug for IterableLinkinfoVtiAttrs<'_>
rt-link only.impl<'a> Debug for IterableOpDellinkDoRequest<'_>
rt-link only.impl<'a> Debug for IterableOpGetlinkDoReply<'_>
rt-link only.impl<'a> Debug for IterableOpGetlinkDoRequest<'_>
rt-link only.impl<'a> Debug for IterableOpGetlinkDumpReply<'_>
rt-link only.impl<'a> Debug for IterableOpGetlinkDumpRequest<'_>
rt-link only.impl<'a> Debug for IterableOpGetstatsDoReply<'_>
rt-link only.impl<'a> Debug for IterableOpGetstatsDumpReply<'_>
rt-link only.impl<'a> Debug for IterableOpNewlinkDoRequest<'_>
rt-link only.impl<'a> Debug for IterableOpSetlinkDoRequest<'_>
rt-link only.impl<'a> Debug for IterablePropListLinkAttrs<'_>
rt-link only.impl<'a> Debug for IterableStatsAttrs<'_>
rt-link only.impl<'a> Debug for IterableVfStatsAttrs<'_>
rt-link only.impl<'a> Debug for IterableVfinfoAttrs<'_>
rt-link only.impl<'a> Debug for IterableVfinfoListAttrs<'_>
rt-link only.impl<'a> Debug for netlink_bindings::rt_neigh::Chained<'a>
rt-neigh only.impl<'a> Debug for netlink_bindings::rt_neigh::ChainedFinal<'a>
rt-neigh only.impl<'a> Debug for IterableNdtAttrs<'_>
rt-neigh only.impl<'a> Debug for IterableNdtpaAttrs<'_>
rt-neigh only.impl<'a> Debug for IterableNeighbourAttrs<'_>
rt-neigh only.impl<'a> Debug for IterableOpDelneighDoRequest<'_>
rt-neigh only.impl<'a> Debug for IterableOpGetneighDoReply<'_>
rt-neigh only.impl<'a> Debug for IterableOpGetneighDoRequest<'_>
rt-neigh only.impl<'a> Debug for IterableOpGetneighDumpReply<'_>
rt-neigh only.impl<'a> Debug for IterableOpGetneightblDumpReply<'_>
rt-neigh only.impl<'a> Debug for IterableOpNewneighDoRequest<'_>
rt-neigh only.impl<'a> Debug for IterableOpSetneightblDoRequest<'_>
rt-neigh only.impl<'a> Debug for netlink_bindings::rt_route::Chained<'a>
rt-route only.impl<'a> Debug for netlink_bindings::rt_route::ChainedFinal<'a>
rt-route only.impl<'a> Debug for IterableMetrics<'_>
rt-route only.impl<'a> Debug for IterableOpDelrouteDoRequest<'_>
rt-route only.impl<'a> Debug for IterableOpGetrouteDoReply<'_>
rt-route only.impl<'a> Debug for IterableOpGetrouteDoRequest<'_>
rt-route only.impl<'a> Debug for IterableOpGetrouteDumpReply<'_>
rt-route only.impl<'a> Debug for IterableOpNewrouteDoRequest<'_>
rt-route only.impl<'a> Debug for netlink_bindings::rt_route::IterableRouteAttrs<'_>
rt-route only.impl<'a> Debug for netlink_bindings::rt_rule::Chained<'a>
rt-rule only.impl<'a> Debug for netlink_bindings::rt_rule::ChainedFinal<'a>
rt-rule only.impl<'a> Debug for IterableFibRuleAttrs<'_>
rt-rule only.impl<'a> Debug for netlink_bindings::rt_rule::IterableOpDelruleDoRequest<'_>
rt-rule only.impl<'a> Debug for netlink_bindings::rt_rule::IterableOpGetruleDumpReply<'_>
rt-rule only.impl<'a> Debug for netlink_bindings::rt_rule::IterableOpNewruleDoRequest<'_>
rt-rule only.impl<'a> Debug for netlink_bindings::tc::Chained<'a>
tc only.impl<'a> Debug for netlink_bindings::tc::ChainedFinal<'a>
tc only.impl<'a> Debug for IterableActAttrs<'_>
tc only.impl<'a> Debug for IterableActBpfAttrs<'_>
tc only.impl<'a> Debug for IterableActConnmarkAttrs<'_>
tc only.impl<'a> Debug for IterableActCsumAttrs<'_>
tc only.impl<'a> Debug for IterableActCtAttrs<'_>
tc only.impl<'a> Debug for IterableActCtinfoAttrs<'_>
tc only.impl<'a> Debug for IterableActGactAttrs<'_>
tc only.impl<'a> Debug for IterableActGateAttrs<'_>
tc only.impl<'a> Debug for IterableActIfeAttrs<'_>
tc only.impl<'a> Debug for IterableActMirredAttrs<'_>
tc only.impl<'a> Debug for IterableActMplsAttrs<'_>
tc only.impl<'a> Debug for IterableActNatAttrs<'_>
tc only.impl<'a> Debug for IterableActPeditAttrs<'_>
tc only.impl<'a> Debug for IterableActSampleAttrs<'_>
tc only.impl<'a> Debug for IterableActSimpleAttrs<'_>
tc only.impl<'a> Debug for IterableActSkbeditAttrs<'_>
tc only.impl<'a> Debug for IterableActSkbmodAttrs<'_>
tc only.impl<'a> Debug for IterableActTunnelKeyAttrs<'_>
tc only.impl<'a> Debug for IterableActVlanAttrs<'_>
tc only.impl<'a> Debug for IterableAttrs<'_>
tc only.impl<'a> Debug for IterableBasicAttrs<'_>
tc only.impl<'a> Debug for IterableBpfAttrs<'_>
tc only.impl<'a> Debug for IterableCakeAttrs<'_>
tc only.impl<'a> Debug for IterableCakeStatsAttrs<'_>
tc only.impl<'a> Debug for IterableCakeTinStatsAttrs<'_>
tc only.impl<'a> Debug for IterableCgroupAttrs<'_>
tc only.impl<'a> Debug for IterableChokeAttrs<'_>
tc only.impl<'a> Debug for IterableEmatchAttrs<'_>
tc only.impl<'a> Debug for IterableEtsAttrs<'_>
tc only.impl<'a> Debug for IterableFlowAttrs<'_>
tc only.impl<'a> Debug for IterableFlowerAttrs<'_>
tc only.impl<'a> Debug for IterableFlowerKeyEncOptGeneveAttrs<'_>
tc only.impl<'a> Debug for IterableFlowerKeyEncOptsAttrs<'_>
tc only.impl<'a> Debug for IterableFqAttrs<'_>
tc only.impl<'a> Debug for IterableFwAttrs<'_>
tc only.impl<'a> Debug for IterableGredAttrs<'_>
tc only.impl<'a> Debug for IterableHfscAttrs<'_>
tc only.impl<'a> Debug for IterableHtbAttrs<'_>
tc only.impl<'a> Debug for IterableMatchallAttrs<'_>
tc only.impl<'a> Debug for IterableNetemAttrs<'_>
tc only.impl<'a> Debug for IterableOpDelqdiscDoRequest<'_>
tc only.impl<'a> Debug for IterableOpDeltfilterDoRequest<'_>
tc only.impl<'a> Debug for netlink_bindings::tc::IterableOpGetchainDoReply<'_>
tc only.impl<'a> Debug for IterableOpGetqdiscDoReply<'_>
tc only.impl<'a> Debug for IterableOpGetqdiscDumpReply<'_>
tc only.impl<'a> Debug for IterableOpGettclassDoReply<'_>
tc only.impl<'a> Debug for IterableOpGettfilterDoReply<'_>
tc only.impl<'a> Debug for IterableOpGettfilterDoRequest<'_>
tc only.impl<'a> Debug for IterableOpGettfilterDumpReply<'_>
tc only.impl<'a> Debug for netlink_bindings::tc::IterableOpNewchainDoRequest<'_>
tc only.impl<'a> Debug for IterableOpNewqdiscDoRequest<'_>
tc only.impl<'a> Debug for IterableOpNewtclassDoRequest<'_>
tc only.impl<'a> Debug for IterableOpNewtfilterDoRequest<'_>
tc only.impl<'a> Debug for IterablePoliceAttrs<'_>
tc only.impl<'a> Debug for IterableRedAttrs<'_>
tc only.impl<'a> Debug for netlink_bindings::tc::IterableRouteAttrs<'_>
tc only.impl<'a> Debug for IterableTaprioAttrs<'_>
tc only.impl<'a> Debug for IterableTaprioSchedEntryList<'_>
tc only.impl<'a> Debug for IterableTbfAttrs<'_>
tc only.impl<'a> Debug for IterableTcaGredVqEntryAttrs<'_>
tc only.impl<'a> Debug for IterableTcaGredVqListAttrs<'_>
tc only.impl<'a> Debug for IterableTcaStabAttrs<'_>
tc only.impl<'a> Debug for IterableTcaStatsAttrs<'_>
tc only.impl<'a> Debug for IterableU32Attrs<'_>
tc only.impl<'a> Debug for IterableOpGetDeviceDumpReply<'_>
wireguard only.impl<'a> Debug for IterableOpGetDeviceDumpRequest<'_>
wireguard only.impl<'a> Debug for IterableOpSetDeviceDoRequest<'_>
wireguard only.impl<'a> Debug for IterableWgdevice<'_>
wireguard only.impl<'a> Debug for IterableWgpeer<'_>
wireguard only.impl<'a> Debug for core::error::Request<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for core::str::iter::Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for core::str::iter::EscapeDebug<'a>
impl<'a> Debug for core::str::iter::EscapeDefault<'a>
impl<'a> Debug for core::str::iter::EscapeUnicode<'a>
impl<'a> Debug for core::str::iter::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'f> Debug for VaList<'a, 'f>where
'f: 'a,
impl<'a, A> Debug for core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I, A> Debug for Splice<'a, I, A>
impl<'a, P> Debug for MatchIndices<'a, P>
impl<'a, P> Debug for Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for core::str::iter::RSplit<'a, P>
impl<'a, P> Debug for core::str::iter::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for core::str::iter::Split<'a, P>
impl<'a, P> Debug for core::str::iter::SplitInclusive<'a, P>
impl<'a, P> Debug for core::str::iter::SplitN<'a, P>
impl<'a, P> Debug for SplitTerminator<'a, P>
impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T, A> Debug for alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, P> Debug for ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'buf> Debug for netlink_bindings::conntrack::Request<'buf>
conntrack only.impl<'buf> Debug for netlink_bindings::nftables::Request<'buf>
nftables only.impl<'buf> Debug for netlink_bindings::nlctrl::Request<'buf>
nlctrl only.impl<'buf> Debug for netlink_bindings::rt_addr::Request<'buf>
rt-addr only.impl<'buf> Debug for netlink_bindings::rt_link::Request<'buf>
rt-link only.impl<'buf> Debug for netlink_bindings::rt_neigh::Request<'buf>
rt-neigh only.impl<'buf> Debug for netlink_bindings::rt_route::Request<'buf>
rt-route only.impl<'buf> Debug for netlink_bindings::rt_rule::Request<'buf>
rt-rule only.impl<'buf> Debug for netlink_bindings::tc::Request<'buf>
tc only.impl<'buf> Debug for netlink_bindings::wireguard::Request<'buf>
wireguard only.impl<'f> Debug for VaListImpl<'f>
impl<'r> Debug for RequestOpGetDoRequest<'r>
conntrack only.impl<'r> Debug for RequestOpGetDumpRequest<'r>
conntrack only.impl<'r> Debug for RequestOpGetStatsDumpRequest<'r>
conntrack only.impl<'r> Debug for RequestOpBatchBeginDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpBatchEndDoRequest<'r>
nftables only.impl<'r> Debug for netlink_bindings::nftables::RequestOpDelchainDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDelflowtableDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDelobjDoRequest<'r>
nftables only.impl<'r> Debug for netlink_bindings::nftables::RequestOpDelruleDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDelsetDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDelsetelemDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDeltableDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDestroychainDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDestroyflowtableDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDestroyobjDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDestroyruleDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDestroysetDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDestroysetelemDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpDestroytableDoRequest<'r>
nftables only.impl<'r> Debug for netlink_bindings::nftables::RequestOpGetchainDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetchainDumpRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetcompatDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetcompatDumpRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetflowtableDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetflowtableDumpRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetgenDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetgenDumpRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetobjDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetobjDumpRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetruleDoRequest<'r>
nftables only.impl<'r> Debug for netlink_bindings::nftables::RequestOpGetruleDumpRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetruleResetDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetruleResetDumpRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetsetDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetsetDumpRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetsetelemDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetsetelemDumpRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetsetelemResetDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetsetelemResetDumpRequest<'r>
nftables only.impl<'r> Debug for RequestOpGettableDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpGettableDumpRequest<'r>
nftables only.impl<'r> Debug for netlink_bindings::nftables::RequestOpNewchainDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpNewflowtableDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpNewobjDoRequest<'r>
nftables only.impl<'r> Debug for netlink_bindings::nftables::RequestOpNewruleDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpNewsetDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpNewsetelemDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpNewtableDoRequest<'r>
nftables only.impl<'r> Debug for RequestOpGetfamilyDoRequest<'r>
nlctrl only.impl<'r> Debug for RequestOpGetfamilyDumpRequest<'r>
nlctrl only.impl<'r> Debug for RequestOpGetpolicyDumpRequest<'r>
nlctrl only.impl<'r> Debug for RequestOpDeladdrDoRequest<'r>
rt-addr only.impl<'r> Debug for RequestOpGetaddrDumpRequest<'r>
rt-addr only.impl<'r> Debug for RequestOpGetmulticastDoRequest<'r>
rt-addr only.impl<'r> Debug for RequestOpGetmulticastDumpRequest<'r>
rt-addr only.impl<'r> Debug for RequestOpNewaddrDoRequest<'r>
rt-addr only.impl<'r> Debug for RequestOpDellinkDoRequest<'r>
rt-link only.impl<'r> Debug for RequestOpGetlinkDoRequest<'r>
rt-link only.impl<'r> Debug for RequestOpGetlinkDumpRequest<'r>
rt-link only.impl<'r> Debug for RequestOpGetstatsDoRequest<'r>
rt-link only.impl<'r> Debug for RequestOpGetstatsDumpRequest<'r>
rt-link only.impl<'r> Debug for RequestOpNewlinkDoRequest<'r>
rt-link only.impl<'r> Debug for RequestOpSetlinkDoRequest<'r>
rt-link only.impl<'r> Debug for RequestOpDelneighDoRequest<'r>
rt-neigh only.impl<'r> Debug for RequestOpGetneighDoRequest<'r>
rt-neigh only.impl<'r> Debug for RequestOpGetneighDumpRequest<'r>
rt-neigh only.impl<'r> Debug for RequestOpGetneightblDumpRequest<'r>
rt-neigh only.impl<'r> Debug for RequestOpNewneighDoRequest<'r>
rt-neigh only.impl<'r> Debug for RequestOpSetneightblDoRequest<'r>
rt-neigh only.impl<'r> Debug for RequestOpDelrouteDoRequest<'r>
rt-route only.impl<'r> Debug for RequestOpGetrouteDoRequest<'r>
rt-route only.impl<'r> Debug for RequestOpGetrouteDumpRequest<'r>
rt-route only.impl<'r> Debug for RequestOpNewrouteDoRequest<'r>
rt-route only.impl<'r> Debug for netlink_bindings::rt_rule::RequestOpDelruleDoRequest<'r>
rt-rule only.impl<'r> Debug for netlink_bindings::rt_rule::RequestOpGetruleDumpRequest<'r>
rt-rule only.impl<'r> Debug for netlink_bindings::rt_rule::RequestOpNewruleDoRequest<'r>
rt-rule only.impl<'r> Debug for netlink_bindings::tc::RequestOpDelchainDoRequest<'r>
tc only.impl<'r> Debug for RequestOpDelqdiscDoRequest<'r>
tc only.impl<'r> Debug for RequestOpDeltclassDoRequest<'r>
tc only.impl<'r> Debug for RequestOpDeltfilterDoRequest<'r>
tc only.impl<'r> Debug for netlink_bindings::tc::RequestOpGetchainDoRequest<'r>
tc only.impl<'r> Debug for RequestOpGetqdiscDoRequest<'r>
tc only.impl<'r> Debug for RequestOpGetqdiscDumpRequest<'r>
tc only.impl<'r> Debug for RequestOpGettclassDoRequest<'r>
tc only.impl<'r> Debug for RequestOpGettfilterDoRequest<'r>
tc only.impl<'r> Debug for RequestOpGettfilterDumpRequest<'r>
tc only.impl<'r> Debug for netlink_bindings::tc::RequestOpNewchainDoRequest<'r>
tc only.impl<'r> Debug for RequestOpNewqdiscDoRequest<'r>
tc only.impl<'r> Debug for RequestOpNewtclassDoRequest<'r>
tc only.impl<'r> Debug for RequestOpNewtfilterDoRequest<'r>
tc only.impl<'r> Debug for RequestOpGetDeviceDumpRequest<'r>
wireguard only.impl<'r> Debug for RequestOpSetDeviceDoRequest<'r>
wireguard only.impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>
impl<A> Debug for core::iter::sources::repeat::Repeat<A>where
A: Debug,
impl<A> Debug for RepeatN<A>where
A: Debug,
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for IterRange<A>where
A: Debug,
impl<A> Debug for IterRangeFrom<A>where
A: Debug,
impl<A> Debug for IterRangeInclusive<A>where
A: Debug,
impl<A, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for Zip<A, B>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for std::io::Lines<B>where
B: Debug,
impl<B> Debug for std::io::Split<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for Report<E>
impl<F> Debug for core::fmt::builders::FromFn<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for core::iter::sources::from_fn::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for RepeatWith<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for Cloned<I>where
I: Debug,
impl<I> Debug for Copied<I>where
I: Debug,
impl<I> Debug for Cycle<I>where
I: Debug,
impl<I> Debug for Enumerate<I>where
I: Debug,
impl<I> Debug for Fuse<I>where
I: Debug,
impl<I> Debug for Intersperse<I>
impl<I> Debug for Peekable<I>
impl<I> Debug for Skip<I>where
I: Debug,
impl<I> Debug for StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<I, F> Debug for FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for Inspect<I, F>where
I: Debug,
impl<I, F> Debug for Map<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for IntersperseWith<I, G>
impl<I, P> Debug for Filter<I, P>where
I: Debug,
impl<I, P> Debug for MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeWhile<I, P>where
I: Debug,
impl<I, St, F> Debug for Scan<I, St, F>
impl<I, U> Debug for Flatten<I>
impl<I, U, F> Debug for FlatMap<I, U, F>
impl<I, const N: usize> Debug for ArrayChunks<I, N>
impl<Idx> Debug for core::ops::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<K> Debug for alloc::collections::btree::set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Drain<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::IntoIter<K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, F> Debug for std::collections::hash::set::ExtractIf<'_, K, F>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Drain<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>
impl<K, V, F> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F>
impl<K, V, R, F, A> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S> Debug for HashMap<K, V, S>
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<R> Debug for BufReader<R>
impl<R> Debug for std::io::Bytes<R>where
R: Debug,
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for TrySendError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.