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,
)");Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl Debug for !
impl Debug for ()
impl Debug for AArch64
impl Debug for Abi
impl Debug for Access
impl Debug for AccessError
impl Debug for Action
impl Debug for AddrParseError
impl Debug for AddressFamily
impl Debug for rustix::backend::fs::types::Advice
impl Debug for rustix::backend::mm::types::Advice
impl Debug for taproot_eyra::mem::Alignment
impl Debug for taproot_eyra::fmt::Alignment
impl Debug for AllocError
impl Debug for Alphabetic
impl Debug for Alphanumeric
impl Debug for AlternateTime
impl Debug for Always
impl Debug for AncillaryError
impl Debug for ArangeEntry
impl Debug for Args
impl Debug for ArgsOs
impl Debug for Arguments<'_>
impl Debug for Arm
impl Debug for Array
impl Debug for AsciiChar
impl Debug for Assume
impl Debug for AtFlags
impl Debug for Atomic<bool>
target_has_atomic_load_store=8 only.impl Debug for Atomic<i8>
impl Debug for Atomic<i16>
impl Debug for Atomic<i32>
impl Debug for Atomic<i64>
impl Debug for Atomic<isize>
impl Debug for Atomic<u8>
impl Debug for Atomic<u16>
impl Debug for Atomic<u32>
impl Debug for Atomic<u64>
impl Debug for Atomic<usize>
impl Debug for AtomicOrdering
impl Debug for Augmentation
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for BacktraceStatus
impl Debug for BacktraceStyle
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for BaseAddresses
impl Debug for Bernoulli
impl Debug for BernoulliError
impl Debug for BigEndian
impl Debug for Bool
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for BorrowedFd<'_>
impl Debug for Builder
impl Debug for ByteStr
impl Debug for ByteString
impl Debug for CStr
Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
impl Debug for CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for CapabilitiesSecureBits
impl Debug for Capability
impl Debug for CapabilitySet
impl Debug for CapabilitySets
impl Debug for Char
impl Debug for CharCase
impl Debug for CharTryFromError
impl Debug for Chars<'_>
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for ClockId
impl Debug for Collation
impl Debug for CollectionAllocErr
impl Debug for Command
impl Debug for CommandResolvedEnvs
impl Debug for Components<'_>
impl Debug for taproot_eyra::sync::nonpoison::Condvar
impl Debug for taproot_eyra::sync::Condvar
impl Debug for Const
impl Debug for Context<'_>
impl Debug for ControlModes
impl Debug for CoreSchedulingScope
impl Debug for CpuSet
impl Debug for Cpuid
impl Debug for CpuidResult
impl Debug for rustix::backend::event::epoll::CreateFlags
impl Debug for rustix::backend::fs::inotify::CreateFlags
impl Debug for DIR
impl Debug for DateTime
impl Debug for DateTimeError
impl Debug for DebugAsHex
impl Debug for DebugTypeSignature
impl Debug for DecInt
impl Debug for DecodeUtf16Error
impl Debug for DefaultHasher
impl Debug for taproot_eyra::fs::Dir
impl Debug for rustix::backend::fs::dir::Dir
impl Debug for DirBuilder
impl Debug for taproot_eyra::fs::DirEntry
impl Debug for rustix::backend::fs::dir::DirEntry
impl Debug for Direction
impl Debug for taproot_eyra::ffi::os_str::Display<'_>
impl Debug for taproot_eyra::path::Display<'_>
impl Debug for Dl_info
impl Debug for DoubleFormat
impl Debug for taproot_eyra::string::Drain<'_>
impl Debug for DumpableBehavior
impl Debug for DupFlags
impl Debug for Duration
impl Debug for DwAccess
impl Debug for DwAddr
impl Debug for DwAt
impl Debug for DwAte
impl Debug for DwCc
impl Debug for DwCfa
impl Debug for DwChildren
impl Debug for DwDefaulted
impl Debug for DwDs
impl Debug for DwDsc
impl Debug for DwEhPe
impl Debug for DwEnd
impl Debug for DwForm
impl Debug for DwId
impl Debug for DwIdx
impl Debug for DwInl
impl Debug for DwLang
impl Debug for DwLle
impl Debug for DwLnct
impl Debug for DwLne
impl Debug for DwLns
impl Debug for DwMacinfo
impl Debug for DwMacro
impl Debug for DwOp
impl Debug for DwOrd
impl Debug for DwRle
impl Debug for DwSect
impl Debug for DwSectV2
impl Debug for DwTag
impl Debug for DwUt
impl Debug for DwVirtuality
impl Debug for DwVis
impl Debug for DwarfFileType
impl Debug for DwoId
impl Debug for DynTrait
impl Debug for DynTraitPredicate
impl Debug for Elf32_Chdr
impl Debug for Elf32_Ehdr
impl Debug for Elf32_Phdr
impl Debug for Elf32_Shdr
impl Debug for Elf32_Sym
impl Debug for Elf64_Chdr
impl Debug for Elf64_Ehdr
impl Debug for Elf64_Phdr
impl Debug for Elf64_Shdr
impl Debug for Elf64_Sym
impl Debug for taproot_eyra::io::Empty
impl Debug for rand::distr::slice::Empty
impl Debug for EncodeUtf16<'_>
impl Debug for Encoding
impl Debug for EndianMode
impl Debug for Enum
impl Debug for rustix::backend::io::errno::Errno
impl Debug for errno::Errno
impl Debug for taproot_eyra::io::Error
impl Debug for taproot_eyra::fmt::Error
impl Debug for rand::distr::uniform::Error
impl Debug for getrandom::error::Error
impl Debug for posix_regex::compile::Error
impl Debug for gimli::read::Error
impl Debug for tz::error::Error
impl Debug for ErrorKind
impl Debug for taproot_eyra::char::EscapeDebug
impl Debug for taproot_eyra::ascii::EscapeDefault
impl Debug for taproot_eyra::char::EscapeDefault
impl Debug for taproot_eyra::char::EscapeUnicode
impl Debug for EventFlags
impl Debug for EventfdFlags
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for FILE
impl Debug for FallocateFlags
impl Debug for FdFlags
impl Debug for Field
impl Debug for FieldId
impl Debug for File
impl Debug for FileTimes
impl Debug for taproot_eyra::fs::FileType
impl Debug for rustix::backend::fs::types::FileType
impl Debug for taproot_c_scape::printf_impl::argument::Flags
impl Debug for rustix::backend::thread::futex::Flags
impl Debug for Float
impl Debug for FloatErrorKind
impl Debug for FloatingPointEmulationControl
impl Debug for FloatingPointExceptionMode
impl Debug for FloatingPointMode
impl Debug for Flock
impl Debug for FlockOffsetType
impl Debug for FlockOperation
impl Debug for FlockType
impl Debug for FnPtr
impl Debug for Format
impl Debug for FormattingOptions
impl Debug for FoundDateTimeKind
impl Debug for FoundDateTimeList
impl Debug for FpCategory
impl Debug for FromBytesUntilNulError
impl Debug for FromBytesWithNulError
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for FromVecWithNulError
impl Debug for Fsid
impl Debug for Generic
impl Debug for GenericType
impl Debug for GetDisjointMutError
impl Debug for GetRandomFlags
impl Debug for Gid
impl Debug for Global
impl Debug for IFlags
impl Debug for IndexSectionId
impl Debug for Infallible
impl Debug for InlinedName
impl Debug for InputModes
impl Debug for Instant
impl Debug for Int
impl Debug for IntErrorKind
impl Debug for IntoChars
impl Debug for IntoIncoming
impl Debug for IntoStringError
impl Debug for IpAddr
impl Debug for Ipv4Addr
impl Debug for Ipv4PathMtuDiscovery
impl Debug for Ipv6Addr
impl Debug for Ipv6MulticastScope
impl Debug for Ipv6PathMtuDiscovery
impl Debug for taproot_eyra::path::Iter<'_>
impl Debug for Itimerspec
impl Debug for JoinPathsError
impl Debug for Julian0WithLeap
impl Debug for Julian1WithoutLeap
impl Debug for KernelSigaction
impl Debug for KernelSigactionFlags
impl Debug for Last
impl Debug for Layout
impl Debug for LayoutError
impl Debug for Lcg64Xsh32
impl Debug for Lcg128CmDxsm64
impl Debug for Lcg128Xsl64
impl Debug for LeapSecond
impl Debug for Leb128
impl Debug for Lifetime
impl Debug for LineEncoding
impl Debug for LinkNameSpaceType
impl Debug for LittleEndian
impl Debug for LocalModes
impl Debug for LocalTimeType
impl Debug for LocalTimeTypeError
impl Debug for LocalWaker
impl Debug for Locality
impl Debug for taproot_eyra::panic::Location<'_>
impl Debug for LoongArch
impl Debug for MIPS
impl Debug for MachineCheckMemoryCorruptionKillPolicy
impl Debug for MapFlags
impl Debug for Mcg128Xsl64
impl Debug for MembarrierCommand
impl Debug for MembarrierQuery
impl Debug for MemfdFlags
impl Debug for Metadata
impl Debug for MlockAllFlags
impl Debug for MlockFlags
impl Debug for Mode
impl Debug for MonthWeekDay
impl Debug for MprotectFlags
impl Debug for MremapFlags
impl Debug for MsyncFlags
impl Debug for NanosleepRelativeResult
impl Debug for Node
impl Debug for NodeId
impl Debug for NormalizeError
impl Debug for NulError
impl Debug for OFlags
impl Debug for taproot_eyra::sync::Once
impl Debug for taproot_eyra::sync::OnceState
impl Debug for rustix_futex_sync::once::OnceState
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for OpenOptions
impl Debug for OpenptFlags
impl Debug for OptionalActions
impl Debug for taproot_eyra::cmp::Ordering
impl Debug for taproot_eyra::sync::atomic::Ordering
impl Debug for OsError
impl Debug for OsRng
impl Debug for OsStr
impl Debug for OsString
impl Debug for Output
impl Debug for OutputModes
impl Debug for OwnedFd
impl Debug for PTracer
impl Debug for PanicMessage<'_>
impl Debug for ParseBoolError
impl Debug for ParseCharError
impl Debug for ParseDataError
impl Debug for ParseError
impl Debug for taproot_eyra::num::ParseFloatError
impl Debug for num_traits::ParseFloatError
impl Debug for ParseIntError
impl Debug for Path
impl Debug for PathBuf
impl Debug for Permissions
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for PhantomPinned
impl Debug for Pid
impl Debug for PidFd
impl Debug for PidfdFlags
impl Debug for PidfdGetfdFlags
impl Debug for PipeFlags
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for taproot_eyra::mem::type_info::Pointer
impl Debug for gimli::read::cfi::Pointer
impl Debug for PollFlags
impl Debug for PowerPc64
impl Debug for PrctlMmMap
impl Debug for ProtFlags
impl Debug for Protocol
impl Debug for QueueSelector
impl Debug for RandomState
impl Debug for posix_regex::compile::Range
impl Debug for gimli::read::rnglists::Range
impl Debug for RangeFull
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for ReadDir
impl Debug for ReadFlags
impl Debug for ReadWriteFlags
impl Debug for ReaderOffsetId
impl Debug for RealpathFlags
impl Debug for RebootCommand
impl Debug for RecvError
impl Debug for RecvFlags
impl Debug for RecvMsg
impl Debug for taproot_eyra::sync::mpmc::RecvTimeoutError
impl Debug for Reference
impl Debug for Register
impl Debug for RenameFlags
impl Debug for taproot_eyra::io::Repeat
impl Debug for ResolveFlags
impl Debug for Resource
impl Debug for ReturnFlags
impl Debug for RiscV
impl Debug for Rlimit
impl Debug for RuleDay
impl Debug for RunTimeEndian
impl Debug for SVEVectorLengthConfig
impl Debug for Scope<'_, '_>
impl Debug for SealFlags
impl Debug for SearchStep
impl Debug for SectionBaseAddresses
impl Debug for SectionId
impl Debug for SecureComputingMode
impl Debug for taproot_eyra::io::SeekFrom
impl Debug for rustix::fs::seek_from::SeekFrom
impl Debug for SendFlags
impl Debug for ShmOFlags
impl Debug for taproot_eyra::net::Shutdown
impl Debug for rustix::net::types::Shutdown
impl Debug for Sign
impl Debug for Signal
impl Debug for SignedInt
impl Debug for SimdAlign
impl Debug for Sink
impl Debug for SipHasher
impl Debug for Slice
impl Debug for taproot_eyra::os::unix::net::SocketAddr
impl Debug for taproot_eyra::net::SocketAddr
impl Debug for SocketAddrAny
impl Debug for SocketAddrNetlink
impl Debug for SocketAddrUnix
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for SocketAddrXdp
impl Debug for SocketAddrXdpFlags
impl Debug for SocketFlags
impl Debug for SocketType
impl Debug for SpecialCodeIndex
impl Debug for SpecialCodes
impl Debug for SpeculationFeature
impl Debug for SpeculationFeatureControl
impl Debug for SpeculationFeatureState
impl Debug for SpliceFlags
impl Debug for SplitPaths<'_>
impl Debug for StandardUniform
impl Debug for Stat
impl Debug for StatFs
impl Debug for StatVfsMountFlags
impl Debug for Statx
impl Debug for StatxAttributes
impl Debug for StatxFlags
impl Debug for StatxTimestamp
impl Debug for Stderr
impl Debug for StderrLock<'_>
impl Debug for Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdio
impl Debug for Stdout
impl Debug for StdoutLock<'_>
impl Debug for StepRng
impl Debug for StoreOnHeap
impl Debug for Str
impl Debug for String
impl Debug for StripPrefixError
impl Debug for Struct
impl Debug for SysCallUserDispatchFastSwitch
impl Debug for System
impl Debug for SystemRng
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for TaggedAddressMode
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for Termios
impl Debug for Thread
impl Debug for ThreadId
impl Debug for ThreadNameSpaceType
impl Debug for TimeStampCounterReadability
impl Debug for TimeZone
impl Debug for TimeZoneError
impl Debug for Timeout
impl Debug for TimerfdClockId
impl Debug for TimerfdFlags
impl Debug for TimerfdTimerFlags
impl Debug for Timespec
impl Debug for Timestamps
impl Debug for TimingMethod
impl Debug for ToCasefold
impl Debug for ToLowercase
impl Debug for ToTitlecase
impl Debug for ToUppercase
impl Debug for Token
impl Debug for Trait
impl Debug for Transition
impl Debug for TransitionRule
impl Debug for TransitionRuleError
impl Debug for Tree
impl Debug for TryFromCharError
impl Debug for TryFromFloatSecsError
impl Debug for TryFromIntError
impl Debug for TryFromSliceError
impl Debug for taproot_eyra::fs::TryLockError
impl Debug for taproot_eyra::sync::mpmc::TryRecvError
impl Debug for TryReserveError
impl Debug for TryReserveErrorKind
impl Debug for Tuple
impl Debug for TxTimeFlags
impl Debug for Type
impl Debug for TypeId
impl Debug for TypeKind
impl Debug for TzError
impl Debug for TzFileError
impl Debug for TzStringError
impl Debug for taproot_eyra::os::unix::net::UCred
impl Debug for rustix::net::types::UCred
impl Debug for UdpSocket
impl Debug for Uid
impl Debug for UnalignedAccessControl
impl Debug for Uname
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for UniformUsize
impl Debug for taproot_eyra::mem::type_info::Union
impl Debug for UnitIndexSection
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for UnorderedKeyError
impl Debug for UnsignedInt
impl Debug for UserfaultfdFlags
impl Debug for UtcDateTime
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for VaList<'_>
impl Debug for VaListTag
impl Debug for Value
impl Debug for ValueType
impl Debug for VarError
impl Debug for Variant
impl Debug for Vars
impl Debug for VarsOs
impl Debug for Vendor
impl Debug for VirtualMemoryMapAddress
impl Debug for Wait
impl Debug for WaitFlags
impl Debug for WaitIdOptions
impl Debug for WaitIdStatus
impl Debug for WaitOptions
impl Debug for WaitPtr
impl Debug for WaitStatus
impl Debug for taproot_eyra::sync::WaitTimeoutResult
impl Debug for rustix_futex_sync::condvar::WaitTimeoutResult
impl Debug for WaitvFlags
impl Debug for WakeOp
impl Debug for WakeOpCmp
impl Debug for Waker
impl Debug for WatchFlags
impl Debug for Winsize
impl Debug for WouldBlock
impl Debug for WriterPanicked
impl Debug for X86
impl Debug for X86_64
impl Debug for XattrFlags
impl Debug for XdgDirsIter
impl Debug for XdpDesc
impl Debug for XdpDescOptions
impl Debug for XdpMmapOffsets
impl Debug for XdpOptions
impl Debug for XdpOptionsFlags
impl Debug for XdpRingFlags
impl Debug for XdpRingOffset
impl Debug for XdpStatistics
impl Debug for XdpUmemReg
impl Debug for XdpUmemRegFlags
impl Debug for __c_anonymous__kernel_fsid_t
impl Debug for __c_anonymous_elf32_rel
impl Debug for __c_anonymous_elf32_rela
impl Debug for __c_anonymous_elf64_rel
impl Debug for __c_anonymous_elf64_rela
impl Debug for __c_anonymous_ifc_ifcu
impl Debug for __c_anonymous_ifr_ifru
impl Debug for __c_anonymous_ifru_map
impl Debug for __c_anonymous_iwreq
impl Debug for __c_anonymous_ptp_perout_request_1
impl Debug for __c_anonymous_ptp_perout_request_2
impl Debug for __c_anonymous_ptrace_syscall_info_data
impl Debug for __c_anonymous_ptrace_syscall_info_entry
impl Debug for __c_anonymous_ptrace_syscall_info_exit
impl Debug for __c_anonymous_ptrace_syscall_info_seccomp
impl Debug for __c_anonymous_sockaddr_can_can_addr
impl Debug for __c_anonymous_sockaddr_can_j1939
impl Debug for __c_anonymous_sockaddr_can_tp
impl Debug for __c_anonymous_xsk_tx_metadata_union
impl Debug for __exit_status
impl Debug for linux_raw_sys::general::__kernel_fd_set
impl Debug for linux_raw_sys::general::__kernel_fd_set
impl Debug for linux_raw_sys::general::__kernel_fsid_t
impl Debug for linux_raw_sys::general::__kernel_fsid_t
impl Debug for linux_raw_sys::general::__kernel_itimerspec
impl Debug for linux_raw_sys::general::__kernel_itimerspec
impl Debug for linux_raw_sys::general::__kernel_old_itimerval
impl Debug for linux_raw_sys::general::__kernel_old_itimerval
impl Debug for linux_raw_sys::general::__kernel_old_timespec
impl Debug for linux_raw_sys::general::__kernel_old_timespec
impl Debug for linux_raw_sys::general::__kernel_old_timeval
impl Debug for linux_raw_sys::general::__kernel_old_timeval
impl Debug for linux_raw_sys::general::__kernel_sock_timeval
impl Debug for linux_raw_sys::general::__kernel_sock_timeval
impl Debug for linux_raw_sys::net::__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1
impl Debug for linux_raw_sys::netlink::__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1
impl Debug for linux_raw_sys::general::__kernel_timespec
impl Debug for linux_raw_sys::general::__kernel_timespec
impl Debug for __m128
impl Debug for __m256
impl Debug for __m512
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128h
impl Debug for __m128i
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for linux_raw_sys::general::__old_kernel_stat
impl Debug for linux_raw_sys::general::__old_kernel_stat
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_1
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_1
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_4
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_4
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_6
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_6
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_7
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_7
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3
impl Debug for __tile1024i
impl Debug for __timeval
impl Debug for linux_raw_sys::general::__user_cap_data_struct
impl Debug for linux_raw_sys::general::__user_cap_data_struct
impl Debug for linux_raw_sys::general::__user_cap_header_struct
impl Debug for linux_raw_sys::general::__user_cap_header_struct
impl Debug for linux_raw_sys::net::_bindgen_ty_1
impl Debug for linux_raw_sys::netlink::_bindgen_ty_1
impl Debug for linux_raw_sys::net::_bindgen_ty_2
impl Debug for linux_raw_sys::netlink::_bindgen_ty_2
impl Debug for linux_raw_sys::net::_bindgen_ty_3
impl Debug for linux_raw_sys::netlink::_bindgen_ty_3
impl Debug for linux_raw_sys::net::_bindgen_ty_4
impl Debug for linux_raw_sys::netlink::_bindgen_ty_4
impl Debug for linux_raw_sys::net::_bindgen_ty_5
impl Debug for linux_raw_sys::netlink::_bindgen_ty_5
impl Debug for linux_raw_sys::net::_bindgen_ty_6
impl Debug for linux_raw_sys::netlink::_bindgen_ty_6
impl Debug for linux_raw_sys::net::_bindgen_ty_7
impl Debug for linux_raw_sys::netlink::_bindgen_ty_7
impl Debug for linux_raw_sys::net::_bindgen_ty_8
impl Debug for linux_raw_sys::netlink::_bindgen_ty_8
impl Debug for linux_raw_sys::net::_bindgen_ty_9
impl Debug for linux_raw_sys::netlink::_bindgen_ty_9
impl Debug for linux_raw_sys::net::_bindgen_ty_10
impl Debug for linux_raw_sys::netlink::_bindgen_ty_10
impl Debug for _bindgen_ty_11
impl Debug for _bindgen_ty_12
impl Debug for _bindgen_ty_13
impl Debug for _bindgen_ty_14
impl Debug for _bindgen_ty_15
impl Debug for _bindgen_ty_16
impl Debug for _bindgen_ty_17
impl Debug for _bindgen_ty_18
impl Debug for _bindgen_ty_19
impl Debug for _bindgen_ty_20
impl Debug for _bindgen_ty_21
impl Debug for _bindgen_ty_22
impl Debug for _bindgen_ty_23
impl Debug for _bindgen_ty_24
impl Debug for _bindgen_ty_25
impl Debug for _bindgen_ty_26
impl Debug for _bindgen_ty_27
impl Debug for _bindgen_ty_28
impl Debug for _bindgen_ty_29
impl Debug for _bindgen_ty_30
impl Debug for _bindgen_ty_31
impl Debug for _bindgen_ty_32
impl Debug for _bindgen_ty_33
impl Debug for _bindgen_ty_34
impl Debug for _bindgen_ty_35
impl Debug for _bindgen_ty_36
impl Debug for _bindgen_ty_37
impl Debug for _bindgen_ty_38
impl Debug for _bindgen_ty_39
impl Debug for _bindgen_ty_40
impl Debug for _bindgen_ty_41
impl Debug for _bindgen_ty_42
impl Debug for _bindgen_ty_43
impl Debug for _bindgen_ty_44
impl Debug for _bindgen_ty_45
impl Debug for _bindgen_ty_46
impl Debug for _bindgen_ty_47
impl Debug for _bindgen_ty_48
impl Debug for _bindgen_ty_49
impl Debug for _bindgen_ty_50
impl Debug for _bindgen_ty_51
impl Debug for _bindgen_ty_52
impl Debug for _bindgen_ty_53
impl Debug for _bindgen_ty_54
impl Debug for _bindgen_ty_55
impl Debug for _bindgen_ty_56
impl Debug for _bindgen_ty_57
impl Debug for _bindgen_ty_58
impl Debug for _bindgen_ty_59
impl Debug for _bindgen_ty_60
impl Debug for _bindgen_ty_61
impl Debug for _bindgen_ty_62
impl Debug for _bindgen_ty_63
impl Debug for _bindgen_ty_64
impl Debug for _bindgen_ty_65
impl Debug for _bindgen_ty_66
impl Debug for _bindgen_ty_67
impl Debug for _bindgen_ty_68
impl Debug for _bindgen_ty_69
impl Debug for _bindgen_ty_70
impl Debug for _libc_fpstate
impl Debug for _libc_fpxreg
impl Debug for _libc_xmmreg
impl Debug for _xt_align
impl Debug for addrinfo
impl Debug for af_alg_iv
impl Debug for aiocb
impl Debug for arpd_request
impl Debug for arphdr
impl Debug for arpreq
impl Debug for arpreq_old
impl Debug for bcm_msg_head
impl Debug for bcm_timeval
impl Debug for bf16
impl Debug for bool
impl Debug for c_void
impl Debug for linux_raw_sys::general::cachestat
impl Debug for linux_raw_sys::general::cachestat
impl Debug for linux_raw_sys::general::cachestat_range
impl Debug for linux_raw_sys::general::cachestat_range
impl Debug for can_berr_counter
impl Debug for can_bittiming
impl Debug for can_bittiming_const
impl Debug for can_clock
impl Debug for can_ctrlmode
impl Debug for can_device_stats
impl Debug for can_filter
impl Debug for can_frame
impl Debug for canfd_frame
impl Debug for canxl_frame
impl Debug for char
impl Debug for cisco_proto
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::clone_args
impl Debug for linux_raw_sys::general::clone_args
impl Debug for linux_raw_sys::general::clone_args
impl Debug for libc::unix::linux_like::linux::gnu::cmsghdr
impl Debug for linux_raw_sys::net::cmsghdr
impl Debug for linux_raw_sys::general::compat_statfs64
impl Debug for linux_raw_sys::general::compat_statfs64
impl Debug for cpu_set_t
impl Debug for dirent
impl Debug for dirent64
impl Debug for dl_phdr_info
impl Debug for libc::unix::linux_like::linux::dmabuf_cmsg
impl Debug for linux_raw_sys::general::dmabuf_cmsg
impl Debug for linux_raw_sys::general::dmabuf_cmsg
impl Debug for libc::unix::linux_like::linux::dmabuf_token
impl Debug for linux_raw_sys::general::dmabuf_token
impl Debug for linux_raw_sys::general::dmabuf_token
impl Debug for dqblk
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Sync + Send
impl Debug for libc::unix::linux_like::epoll_event
impl Debug for linux_raw_sys::general::epoll_event
impl Debug for linux_raw_sys::general::epoll_event
impl Debug for libc::unix::linux_like::linux::epoll_params
impl Debug for linux_raw_sys::general::epoll_params
impl Debug for linux_raw_sys::general::epoll_params
impl Debug for libc::unix::linux_like::linux::gnu::ethhdr
impl Debug for linux_raw_sys::if_ether::ethhdr
impl Debug for f16
impl Debug for f32
impl Debug for f64
impl Debug for f128
impl Debug for linux_raw_sys::general::f_owner_ex
impl Debug for linux_raw_sys::general::f_owner_ex
impl Debug for fanotify_event_info_error
impl Debug for fanotify_event_info_fid
impl Debug for fanotify_event_info_header
impl Debug for fanotify_event_info_pidfd
impl Debug for fanotify_event_metadata
impl Debug for fanotify_response
impl Debug for fanout_args
impl Debug for fd_set
impl Debug for ff_condition_effect
impl Debug for ff_constant_effect
impl Debug for ff_effect
impl Debug for ff_envelope
impl Debug for ff_periodic_effect
impl Debug for ff_ramp_effect
impl Debug for ff_replay
impl Debug for ff_rumble_effect
impl Debug for ff_trigger
impl Debug for fib_rule_hdr
impl Debug for fib_rule_port_range
impl Debug for fib_rule_uid_range
impl Debug for file_attr
impl Debug for libc::unix::linux_like::file_clone_range
impl Debug for linux_raw_sys::general::file_clone_range
impl Debug for linux_raw_sys::general::file_clone_range
impl Debug for linux_raw_sys::general::file_dedupe_range
impl Debug for linux_raw_sys::general::file_dedupe_range
impl Debug for linux_raw_sys::general::file_dedupe_range_info
impl Debug for linux_raw_sys::general::file_dedupe_range_info
impl Debug for file_handle
impl Debug for linux_raw_sys::general::files_stat_struct
impl Debug for linux_raw_sys::general::files_stat_struct
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::flock
impl Debug for linux_raw_sys::general::flock
impl Debug for linux_raw_sys::general::flock
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::flock64
impl Debug for linux_raw_sys::general::flock64
impl Debug for linux_raw_sys::general::flock64
impl Debug for fpos64_t
impl Debug for fpos_t
impl Debug for fr_proto
impl Debug for fr_proto_pvc
impl Debug for fr_proto_pvc_info
impl Debug for linux_raw_sys::general::fs_sysfs_path
impl Debug for linux_raw_sys::general::fs_sysfs_path
impl Debug for linux_raw_sys::general::fsconfig_command
impl Debug for linux_raw_sys::general::fsconfig_command
impl Debug for linux_raw_sys::general::fscrypt_key
impl Debug for linux_raw_sys::general::fscrypt_key
impl Debug for linux_raw_sys::general::fscrypt_policy_v1
impl Debug for linux_raw_sys::general::fscrypt_policy_v1
impl Debug for linux_raw_sys::general::fscrypt_policy_v2
impl Debug for linux_raw_sys::general::fscrypt_policy_v2
impl Debug for linux_raw_sys::general::fscrypt_provisioning_key_payload
impl Debug for linux_raw_sys::general::fscrypt_provisioning_key_payload
impl Debug for fsid_t
impl Debug for linux_raw_sys::general::fstrim_range
impl Debug for linux_raw_sys::general::fstrim_range
impl Debug for linux_raw_sys::general::fsuuid2
impl Debug for linux_raw_sys::general::fsuuid2
impl Debug for linux_raw_sys::general::fsxattr
impl Debug for linux_raw_sys::general::fsxattr
impl Debug for linux_raw_sys::general::futex_waitv
impl Debug for linux_raw_sys::general::futex_waitv
impl Debug for genlmsghdr
impl Debug for glob64_t
impl Debug for glob_t
impl Debug for group
impl Debug for hostent
impl Debug for libc::unix::linux_like::linux::hwtstamp_config
impl Debug for linux_raw_sys::net::hwtstamp_config
impl Debug for hwtstamp_flags
impl Debug for hwtstamp_provider_qualifier
impl Debug for hwtstamp_rx_filters
impl Debug for hwtstamp_tx_types
impl Debug for i8
impl Debug for i16
impl Debug for i32
impl Debug for i64
impl Debug for i128
impl Debug for if_nameindex
impl Debug for if_stats_msg
impl Debug for ifa_cacheinfo
impl Debug for ifaddrmsg
impl Debug for ifaddrs
impl Debug for ifconf
impl Debug for libc::unix::linux_like::linux::ifinfomsg
impl Debug for linux_raw_sys::netlink::ifinfomsg
impl Debug for ifla_bridge_id
impl Debug for ifla_cacheinfo
impl Debug for ifla_geneve_df
impl Debug for ifla_geneve_port_range
impl Debug for ifla_gtp_role
impl Debug for ifla_port_vsi
impl Debug for ifla_rmnet_flags
impl Debug for ifla_vf_broadcast
impl Debug for ifla_vf_guid
impl Debug for ifla_vf_link_state
impl Debug for ifla_vf_mac
impl Debug for ifla_vf_rate
impl Debug for ifla_vf_rss_query_en
impl Debug for ifla_vf_spoofchk
impl Debug for ifla_vf_trust
impl Debug for ifla_vf_tx_rate
impl Debug for ifla_vf_vlan
impl Debug for ifla_vf_vlan_info
impl Debug for ifla_vlan_flags
impl Debug for ifla_vlan_qos_mapping
impl Debug for ifla_vxlan_df
impl Debug for ifla_vxlan_label_policy
impl Debug for ifla_vxlan_port_range
impl Debug for ifmap
impl Debug for ifreq
impl Debug for in6_addr
impl Debug for in6_addr_gen_mode
impl Debug for in6_ifreq
impl Debug for in6_pktinfo
impl Debug for in6_rtmsg
impl Debug for libc::unix::linux_like::in_addr
impl Debug for linux_raw_sys::net::in_addr
impl Debug for libc::unix::linux_like::in_pktinfo
impl Debug for linux_raw_sys::net::in_pktinfo
impl Debug for linux_raw_sys::general::inodes_stat_t
impl Debug for linux_raw_sys::general::inodes_stat_t
impl Debug for libc::unix::linux_like::linux::inotify_event
impl Debug for linux_raw_sys::general::inotify_event
impl Debug for linux_raw_sys::general::inotify_event
impl Debug for input_absinfo
impl Debug for input_event
impl Debug for input_id
impl Debug for input_keymap_entry
impl Debug for input_mask
impl Debug for iocb
impl Debug for libc::unix::iovec
impl Debug for linux_raw_sys::general::iovec
impl Debug for linux_raw_sys::net::iovec
impl Debug for linux_raw_sys::general::iovec
impl Debug for ip6t_getinfo
impl Debug for ip6t_icmp
impl Debug for ip_auth_hdr
impl Debug for ip_beet_phdr
impl Debug for ip_comp_hdr
impl Debug for ip_esp_hdr
impl Debug for ip_iptfs_cc_hdr
impl Debug for ip_iptfs_hdr
impl Debug for libc::unix::linux_like::ip_mreq
impl Debug for linux_raw_sys::net::ip_mreq
impl Debug for libc::unix::linux_like::ip_mreq_source
impl Debug for linux_raw_sys::net::ip_mreq_source
impl Debug for libc::unix::linux_like::ip_mreqn
impl Debug for linux_raw_sys::net::ip_mreqn
impl Debug for ip_msfilter__bindgen_ty_1__bindgen_ty_1
impl Debug for ip_msfilter__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1
impl Debug for ipc_perm
impl Debug for iphdr__bindgen_ty_1__bindgen_ty_1
impl Debug for iphdr__bindgen_ty_1__bindgen_ty_2
impl Debug for ipv6_mreq
impl Debug for ipv6_opt_hdr
impl Debug for ipv6_rt_hdr
impl Debug for ipvlan_mode
impl Debug for isize
impl Debug for libc::unix::linux_like::linux_l4re_shared::itimerspec
impl Debug for linux_raw_sys::general::itimerspec
impl Debug for linux_raw_sys::general::itimerspec
impl Debug for libc::unix::itimerval
impl Debug for linux_raw_sys::general::itimerval
impl Debug for linux_raw_sys::general::itimerval
impl Debug for iw_discarded
impl Debug for iw_encode_ext
impl Debug for iw_event
impl Debug for iw_freq
impl Debug for iw_michaelmicfailure
impl Debug for iw_missed
impl Debug for iw_mlme
impl Debug for iw_param
impl Debug for iw_pmkid_cand
impl Debug for iw_pmksa
impl Debug for iw_point
impl Debug for iw_priv_args
impl Debug for iw_quality
impl Debug for iw_range
impl Debug for iw_scan_req
impl Debug for iw_statistics
impl Debug for iw_thrspy
impl Debug for iwreq
impl Debug for iwreq_data
impl Debug for j1939_filter
impl Debug for linux_raw_sys::general::kernel_sigaction
impl Debug for linux_raw_sys::general::kernel_sigaction
impl Debug for linux_raw_sys::general::kernel_sigset_t
impl Debug for linux_raw_sys::general::kernel_sigset_t
impl Debug for linux_raw_sys::general::ktermios
impl Debug for linux_raw_sys::general::ktermios
impl Debug for lconv
impl Debug for libc::unix::linger
impl Debug for linux_raw_sys::net::linger
impl Debug for linux_raw_sys::general::linux_dirent64
impl Debug for linux_raw_sys::general::linux_dirent64
impl Debug for logical_block_metadata_cap
impl Debug for macsec_offload
impl Debug for macsec_validation_type
impl Debug for macvlan_macaddr_mode
impl Debug for macvlan_mode
impl Debug for mallinfo
impl Debug for mallinfo2
impl Debug for max_align_t
impl Debug for mbstate_t
impl Debug for mcontext_t
impl Debug for linux_raw_sys::general::membarrier_cmd
impl Debug for linux_raw_sys::general::membarrier_cmd
impl Debug for linux_raw_sys::general::membarrier_cmd_flag
impl Debug for linux_raw_sys::general::membarrier_cmd_flag
impl Debug for libc::unix::linux_like::mmsghdr
impl Debug for linux_raw_sys::net::mmsghdr
impl Debug for linux_raw_sys::general::mnt_id_req
impl Debug for linux_raw_sys::general::mnt_id_req
impl Debug for mnt_ns_info
impl Debug for mntent
impl Debug for libc::unix::linux_like::linux::mount_attr
impl Debug for linux_raw_sys::general::mount_attr
impl Debug for linux_raw_sys::general::mount_attr
impl Debug for mq_attr
impl Debug for libc::unix::linux_like::linux::gnu::msghdr
impl Debug for linux_raw_sys::net::msghdr
impl Debug for msginfo
impl Debug for msqid_ds
impl Debug for nda_cacheinfo
impl Debug for ndmsg
impl Debug for ndt_config
impl Debug for ndt_stats
impl Debug for ndtmsg
impl Debug for nduseroptmsg
impl Debug for net_device_flags
impl Debug for netkit_action
impl Debug for netkit_mode
impl Debug for netkit_scrub
impl Debug for netlink_attribute_type
impl Debug for netlink_policy_type_attr
impl Debug for new_utsname
impl Debug for nf_dev_hooks
impl Debug for nf_inet_hooks
impl Debug for nf_ip6_hook_priorities
impl Debug for nf_ip_hook_priorities
impl Debug for nl80211_ac
impl Debug for nl80211_acl_policy
impl Debug for nl80211_ap_settings_flags
impl Debug for nl80211_ap_sme_features
impl Debug for nl80211_attr_coalesce_rule
impl Debug for nl80211_attr_cqm
impl Debug for nl80211_attrs
impl Debug for nl80211_auth_type
impl Debug for nl80211_band
impl Debug for nl80211_band_attr
impl Debug for nl80211_band_iftype_attr
impl Debug for nl80211_bitrate_attr
impl Debug for nl80211_bss
impl Debug for nl80211_bss_cannot_use_reasons
impl Debug for nl80211_bss_color_attributes
impl Debug for nl80211_bss_scan_width
impl Debug for nl80211_bss_select_attr
impl Debug for nl80211_bss_select_rssi_adjust
impl Debug for nl80211_bss_status
impl Debug for nl80211_bss_use_for
impl Debug for nl80211_chan_width
impl Debug for nl80211_channel_type
impl Debug for nl80211_coalesce_condition
impl Debug for nl80211_coalesce_rule_support
impl Debug for nl80211_commands
impl Debug for nl80211_connect_failed_reason
impl Debug for nl80211_cqm_rssi_threshold_event
impl Debug for nl80211_crit_proto_id
impl Debug for nl80211_dfs_regions
impl Debug for nl80211_dfs_state
impl Debug for nl80211_eht_gi
impl Debug for nl80211_eht_ru_alloc
impl Debug for nl80211_ext_feature_index
impl Debug for nl80211_external_auth_action
impl Debug for nl80211_feature_flags
impl Debug for nl80211_fils_discovery_attributes
impl Debug for nl80211_frequency_attr
impl Debug for nl80211_ftm_responder_attributes
impl Debug for nl80211_ftm_responder_stats
impl Debug for nl80211_he_gi
impl Debug for nl80211_he_ltf
impl Debug for nl80211_he_ru_alloc
impl Debug for nl80211_if_combination_attrs
impl Debug for nl80211_iface_limit_attrs
impl Debug for nl80211_iftype
impl Debug for nl80211_iftype_akm_attributes
impl Debug for nl80211_key_attributes
impl Debug for nl80211_key_default_types
impl Debug for nl80211_key_mode
impl Debug for nl80211_key_type
impl Debug for nl80211_mbssid_config_attributes
impl Debug for nl80211_mesh_power_mode
impl Debug for nl80211_mesh_setup_params
impl Debug for nl80211_meshconf_params
impl Debug for nl80211_mfp
impl Debug for nl80211_mntr_flags
impl Debug for nl80211_mpath_flags
impl Debug for nl80211_mpath_info
impl Debug for nl80211_nan_func_attributes
impl Debug for nl80211_nan_func_term_reason
impl Debug for nl80211_nan_function_type
impl Debug for nl80211_nan_match_attributes
impl Debug for nl80211_nan_publish_type
impl Debug for nl80211_nan_srf_attributes
impl Debug for nl80211_obss_pd_attributes
impl Debug for nl80211_packet_pattern_attr
impl Debug for nl80211_pattern_support
impl Debug for nl80211_peer_measurement_attrs
impl Debug for nl80211_peer_measurement_ftm_capa
impl Debug for nl80211_peer_measurement_ftm_failure_reasons
impl Debug for nl80211_peer_measurement_ftm_req
impl Debug for nl80211_peer_measurement_ftm_resp
impl Debug for nl80211_peer_measurement_peer_attrs
impl Debug for nl80211_peer_measurement_req
impl Debug for nl80211_peer_measurement_resp
impl Debug for nl80211_peer_measurement_status
impl Debug for nl80211_peer_measurement_type
impl Debug for nl80211_plink_action
impl Debug for nl80211_plink_state
impl Debug for nl80211_pmksa_candidate_attr
impl Debug for nl80211_preamble
impl Debug for nl80211_probe_resp_offload_support_attr
impl Debug for nl80211_protocol_features
impl Debug for nl80211_ps_state
impl Debug for nl80211_radar_event
impl Debug for nl80211_rate_info
impl Debug for nl80211_reg_initiator
impl Debug for nl80211_reg_rule_attr
impl Debug for nl80211_reg_rule_flags
impl Debug for nl80211_reg_type
impl Debug for nl80211_rekey_data
impl Debug for nl80211_rxmgmt_flags
impl Debug for nl80211_s1g_short_beacon_attrs
impl Debug for nl80211_sae_pwe_mechanism
impl Debug for nl80211_sar_attrs
impl Debug for nl80211_sar_specs_attrs
impl Debug for nl80211_sar_type
impl Debug for nl80211_scan_flags
impl Debug for nl80211_sched_scan_match_attr
impl Debug for nl80211_sched_scan_plan
impl Debug for nl80211_smps_mode
impl Debug for nl80211_sta_bss_param
impl Debug for nl80211_sta_flag_update
impl Debug for nl80211_sta_flags
impl Debug for nl80211_sta_info
impl Debug for nl80211_sta_p2p_ps_status
impl Debug for nl80211_sta_wme_attr
impl Debug for nl80211_survey_info
impl Debug for nl80211_tdls_operation
impl Debug for nl80211_tdls_peer_capability
impl Debug for nl80211_tid_config
impl Debug for nl80211_tid_config_attr
impl Debug for nl80211_tid_stats
impl Debug for nl80211_timeout_reason
impl Debug for nl80211_tx_power_setting
impl Debug for nl80211_tx_rate_attributes
impl Debug for nl80211_tx_rate_setting
impl Debug for nl80211_txq_attr
impl Debug for nl80211_txq_stats
impl Debug for nl80211_txrate_gi
impl Debug for nl80211_txrate_he
impl Debug for nl80211_txrate_vht
impl Debug for nl80211_unsol_bcast_probe_resp_attributes
impl Debug for nl80211_user_reg_hint_type
impl Debug for nl80211_vendor_cmd_info
impl Debug for nl80211_wiphy_radio_attrs
impl Debug for nl80211_wiphy_radio_freq_range
impl Debug for nl80211_wmm_rule
impl Debug for nl80211_wowlan_tcp_attrs
impl Debug for nl80211_wowlan_tcp_data_seq
impl Debug for nl80211_wowlan_tcp_data_token
impl Debug for nl80211_wowlan_tcp_data_token_feature
impl Debug for nl80211_wowlan_triggers
impl Debug for nl80211_wpa_versions
impl Debug for libc::new::linux_uapi::linux::netlink::nl_mmap_hdr
impl Debug for linux_raw_sys::netlink::nl_mmap_hdr
impl Debug for libc::new::linux_uapi::linux::netlink::nl_mmap_req
impl Debug for linux_raw_sys::netlink::nl_mmap_req
impl Debug for nl_mmap_status
impl Debug for libc::new::linux_uapi::linux::netlink::nl_pktinfo
impl Debug for linux_raw_sys::netlink::nl_pktinfo
impl Debug for nla_bitfield32
impl Debug for libc::new::linux_uapi::linux::netlink::nlattr
impl Debug for linux_raw_sys::netlink::nlattr
impl Debug for libc::new::linux_uapi::linux::netlink::nlmsgerr
impl Debug for linux_raw_sys::netlink::nlmsgerr
impl Debug for nlmsgerr_attrs
impl Debug for libc::new::linux_uapi::linux::netlink::nlmsghdr
impl Debug for linux_raw_sys::netlink::nlmsghdr
impl Debug for ntptimeval
impl Debug for old_utsname
impl Debug for oldold_utsname
impl Debug for libc::unix::linux_like::linux::open_how
impl Debug for linux_raw_sys::general::open_how
impl Debug for linux_raw_sys::general::open_how
impl Debug for option
impl Debug for ovpn_mode
impl Debug for packet_mreq
impl Debug for linux_raw_sys::general::page_region
impl Debug for linux_raw_sys::general::page_region
impl Debug for passwd
impl Debug for pidfd_info
impl Debug for linux_raw_sys::general::pm_scan_arg
impl Debug for linux_raw_sys::general::pm_scan_arg
impl Debug for libc::unix::pollfd
impl Debug for linux_raw_sys::general::pollfd
impl Debug for linux_raw_sys::general::pollfd
impl Debug for posix_spawn_file_actions_t
impl Debug for posix_spawnattr_t
impl Debug for prctl_mm_map
impl Debug for prefix_cacheinfo
impl Debug for prefixmsg
impl Debug for procfs_ino
impl Debug for linux_raw_sys::general::procmap_query
impl Debug for linux_raw_sys::general::procmap_query
impl Debug for linux_raw_sys::general::procmap_query_flags
impl Debug for linux_raw_sys::general::procmap_query_flags
impl Debug for protoent
impl Debug for pthread_attr_t
impl Debug for pthread_barrier_t
impl Debug for pthread_barrierattr_t
impl Debug for pthread_cond_t
impl Debug for pthread_condattr_t
impl Debug for pthread_mutex_t
impl Debug for pthread_mutexattr_t
impl Debug for pthread_rwlock_t
impl Debug for pthread_rwlockattr_t
impl Debug for ptp_clock_caps
impl Debug for ptp_clock_time
impl Debug for ptp_extts_event
impl Debug for ptp_extts_request
impl Debug for ptp_perout_request
impl Debug for ptp_pin_desc
impl Debug for ptp_sys_offset
impl Debug for ptp_sys_offset_extended
impl Debug for ptp_sys_offset_precise
impl Debug for ptrace_peeksiginfo_args
impl Debug for ptrace_rseq_configuration
impl Debug for ptrace_sud_config
impl Debug for ptrace_syscall_info
impl Debug for linux_raw_sys::general::rand_pool_info
impl Debug for linux_raw_sys::general::rand_pool_info
impl Debug for raw_hdlc_proto
impl Debug for regex_t
impl Debug for regmatch_t
impl Debug for libc::unix::rlimit
impl Debug for linux_raw_sys::general::rlimit
impl Debug for linux_raw_sys::general::rlimit
impl Debug for libc::unix::linux_like::linux_l4re_shared::rlimit64
impl Debug for linux_raw_sys::general::rlimit64
impl Debug for linux_raw_sys::general::rlimit64
impl Debug for linux_raw_sys::general::robust_list
impl Debug for linux_raw_sys::general::robust_list
impl Debug for linux_raw_sys::general::robust_list_head
impl Debug for linux_raw_sys::general::robust_list_head
impl Debug for rt_class_t
impl Debug for rt_scope_t
impl Debug for rta_cacheinfo
impl Debug for rta_mfc_stats
impl Debug for rta_session__bindgen_ty_1__bindgen_ty_1
impl Debug for rta_session__bindgen_ty_1__bindgen_ty_2
impl Debug for rtattr
impl Debug for rtattr_type_t
impl Debug for rtentry
impl Debug for rtgenmsg
impl Debug for rtmsg
impl Debug for rtnetlink_groups
impl Debug for rtnexthop
impl Debug for rtnl_hw_stats64
impl Debug for rtnl_link_ifmap
impl Debug for rtnl_link_stats
impl Debug for rtnl_link_stats64
impl Debug for rtvia
impl Debug for libc::unix::rusage
impl Debug for linux_raw_sys::general::rusage
impl Debug for linux_raw_sys::general::rusage
impl Debug for sched_attr
impl Debug for sched_param
impl Debug for scm_ts_pktinfo
impl Debug for sctp_authinfo
impl Debug for sctp_initmsg
impl Debug for sctp_nxtinfo
impl Debug for sctp_prinfo
impl Debug for sctp_rcvinfo
impl Debug for sctp_sndinfo
impl Debug for sctp_sndrcvinfo
impl Debug for seccomp_data
impl Debug for seccomp_notif
impl Debug for seccomp_notif_addfd
impl Debug for seccomp_notif_resp
impl Debug for seccomp_notif_sizes
impl Debug for sem_t
impl Debug for sembuf
impl Debug for semid_ds
impl Debug for seminfo
impl Debug for servent
impl Debug for shmid_ds
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::sigaction
impl Debug for linux_raw_sys::general::sigaction
impl Debug for linux_raw_sys::general::sigaction
impl Debug for linux_raw_sys::general::sigaltstack
impl Debug for linux_raw_sys::general::sigaltstack
impl Debug for sigevent
impl Debug for linux_raw_sys::general::sigevent__bindgen_ty_1__bindgen_ty_1
impl Debug for linux_raw_sys::general::sigevent__bindgen_ty_1__bindgen_ty_1
impl Debug for siginfo_t
impl Debug for signalfd_siginfo
impl Debug for sigset_t
impl Debug for sigval
impl Debug for so_timestamping
impl Debug for sock_extended_err
impl Debug for sock_filter
impl Debug for sock_fprog
impl Debug for libc::unix::linux_like::linux::sock_txtime
impl Debug for linux_raw_sys::net::sock_txtime
impl Debug for sockaddr
impl Debug for sockaddr_alg
impl Debug for sockaddr_can
impl Debug for libc::unix::linux_like::sockaddr_in
impl Debug for linux_raw_sys::net::sockaddr_in
impl Debug for sockaddr_in6
impl Debug for sockaddr_ll
impl Debug for libc::new::linux_uapi::linux::netlink::sockaddr_nl
impl Debug for linux_raw_sys::netlink::sockaddr_nl
impl Debug for sockaddr_pkt
impl Debug for sockaddr_storage
impl Debug for libc::unix::linux_like::sockaddr_un
impl Debug for linux_raw_sys::net::sockaddr_un
impl Debug for sockaddr_vm
impl Debug for libc::unix::linux_like::linux::sockaddr_xdp
impl Debug for linux_raw_sys::xdp::sockaddr_xdp
impl Debug for socket_state
impl Debug for spwd
impl Debug for stack_t
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::stat
impl Debug for linux_raw_sys::general::stat
impl Debug for linux_raw_sys::general::stat
impl Debug for stat64
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs
impl Debug for linux_raw_sys::general::statfs
impl Debug for linux_raw_sys::general::statfs
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs64
impl Debug for linux_raw_sys::general::statfs64
impl Debug for linux_raw_sys::general::statfs64
impl Debug for linux_raw_sys::general::statmount
impl Debug for linux_raw_sys::general::statmount
impl Debug for statvfs
impl Debug for statvfs64
impl Debug for libc::unix::linux_like::statx
impl Debug for linux_raw_sys::general::statx
impl Debug for linux_raw_sys::general::statx
impl Debug for libc::unix::linux_like::statx_timestamp
impl Debug for linux_raw_sys::general::statx_timestamp
impl Debug for linux_raw_sys::general::statx_timestamp
impl Debug for str
impl Debug for sync_serial_settings
impl Debug for libc::unix::linux_like::linux::gnu::b64::sysinfo
impl Debug for linux_raw_sys::system::sysinfo
impl Debug for tcamsg
impl Debug for tcmsg
impl Debug for tcp_ao_info_opt
impl Debug for tcp_ao_repair
impl Debug for tcp_ca_state
impl Debug for tcp_diag_md5sig
impl Debug for tcp_fastopen_client_fail
impl Debug for libc::unix::linux_like::linux::gnu::tcp_info
impl Debug for linux_raw_sys::net::tcp_info
impl Debug for tcp_repair_opt
impl Debug for tcp_repair_window
impl Debug for tcp_zerocopy_receive
impl Debug for tcphdr
impl Debug for te1_settings
impl Debug for linux_raw_sys::general::termio
impl Debug for linux_raw_sys::general::termio
impl Debug for libc::unix::linux_like::linux::gnu::termios
impl Debug for linux_raw_sys::general::termios
impl Debug for linux_raw_sys::general::termios
impl Debug for libc::unix::linux_like::linux::arch::generic::termios2
impl Debug for linux_raw_sys::general::termios2
impl Debug for linux_raw_sys::general::termios2
impl Debug for libc::unix::linux_like::linux::gnu::timespec
impl Debug for linux_raw_sys::general::timespec
impl Debug for linux_raw_sys::general::timespec
impl Debug for libc::unix::timeval
impl Debug for linux_raw_sys::general::timeval
impl Debug for linux_raw_sys::general::timeval
impl Debug for timex
impl Debug for libc::unix::linux_like::timezone
impl Debug for linux_raw_sys::general::timezone
impl Debug for linux_raw_sys::general::timezone
impl Debug for tls12_crypto_info_aes_ccm_128
impl Debug for tls12_crypto_info_aes_gcm_128
impl Debug for tls12_crypto_info_aes_gcm_256
impl Debug for tls12_crypto_info_aria_gcm_128
impl Debug for tls12_crypto_info_aria_gcm_256
impl Debug for tls12_crypto_info_chacha20_poly1305
impl Debug for tls12_crypto_info_sm4_ccm
impl Debug for tls12_crypto_info_sm4_gcm
impl Debug for tls_crypto_info
impl Debug for tm
impl Debug for tms
impl Debug for tpacket2_hdr
impl Debug for tpacket3_hdr
impl Debug for tpacket_auxdata
impl Debug for tpacket_bd_header_u
impl Debug for tpacket_bd_ts
impl Debug for tpacket_block_desc
impl Debug for tpacket_hdr
impl Debug for tpacket_hdr_v1
impl Debug for tpacket_hdr_variant1
impl Debug for tpacket_req
impl Debug for tpacket_req3
impl Debug for tpacket_req_u
impl Debug for tpacket_rollover_stats
impl Debug for tpacket_stats
impl Debug for tpacket_stats_v3
impl Debug for tpacket_versions
impl Debug for tunnel_msg
impl Debug for txtime_flags
impl Debug for u8
impl Debug for u16
impl Debug for u32
impl Debug for u64
impl Debug for u128
impl Debug for ucontext_t
impl Debug for libc::unix::linux_like::linux_l4re_shared::ucred
impl Debug for linux_raw_sys::net::ucred
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_2
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_2
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_3
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_3
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_4
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_4
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_5
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_5
impl Debug for linux_raw_sys::general::uffdio_api
impl Debug for linux_raw_sys::general::uffdio_api
impl Debug for linux_raw_sys::general::uffdio_continue
impl Debug for linux_raw_sys::general::uffdio_continue
impl Debug for linux_raw_sys::general::uffdio_copy
impl Debug for linux_raw_sys::general::uffdio_copy
impl Debug for linux_raw_sys::general::uffdio_move
impl Debug for linux_raw_sys::general::uffdio_move
impl Debug for linux_raw_sys::general::uffdio_poison
impl Debug for linux_raw_sys::general::uffdio_poison
impl Debug for linux_raw_sys::general::uffdio_range
impl Debug for linux_raw_sys::general::uffdio_range
impl Debug for linux_raw_sys::general::uffdio_register
impl Debug for linux_raw_sys::general::uffdio_register
impl Debug for linux_raw_sys::general::uffdio_writeprotect
impl Debug for linux_raw_sys::general::uffdio_writeprotect
impl Debug for linux_raw_sys::general::uffdio_zeropage
impl Debug for linux_raw_sys::general::uffdio_zeropage
impl Debug for uinput_abs_setup
impl Debug for uinput_ff_erase
impl Debug for uinput_ff_upload
impl Debug for uinput_setup
impl Debug for uinput_user_dev
impl Debug for user
impl Debug for linux_raw_sys::general::user_desc
impl Debug for linux_raw_sys::general::user_desc
impl Debug for user_fpregs_struct
impl Debug for user_regs_struct
impl Debug for usize
impl Debug for utimbuf
impl Debug for utmpx
impl Debug for utsname
impl Debug for linux_raw_sys::general::vfs_cap_data
impl Debug for linux_raw_sys::general::vfs_cap_data
impl Debug for linux_raw_sys::general::vfs_cap_data__bindgen_ty_1
impl Debug for linux_raw_sys::general::vfs_cap_data__bindgen_ty_1
impl Debug for linux_raw_sys::general::vfs_ns_cap_data
impl Debug for linux_raw_sys::general::vfs_ns_cap_data
impl Debug for linux_raw_sys::general::vfs_ns_cap_data__bindgen_ty_1
impl Debug for linux_raw_sys::general::vfs_ns_cap_data__bindgen_ty_1
impl Debug for linux_raw_sys::general::vgetrandom_opaque_params
impl Debug for linux_raw_sys::general::vgetrandom_opaque_params
impl Debug for libc::unix::winsize
impl Debug for linux_raw_sys::general::winsize
impl Debug for linux_raw_sys::general::winsize
impl Debug for x25_hdlc_proto
impl Debug for linux_raw_sys::general::xattr_args
impl Debug for linux_raw_sys::general::xattr_args
impl Debug for libc::unix::linux_like::linux::xdp_desc
impl Debug for linux_raw_sys::xdp::xdp_desc
impl Debug for libc::unix::linux_like::linux::xdp_mmap_offsets
impl Debug for linux_raw_sys::xdp::xdp_mmap_offsets
impl Debug for libc::unix::linux_like::linux::xdp_mmap_offsets_v1
impl Debug for linux_raw_sys::xdp::xdp_mmap_offsets_v1
impl Debug for libc::unix::linux_like::linux::xdp_options
impl Debug for linux_raw_sys::xdp::xdp_options
impl Debug for libc::unix::linux_like::linux::xdp_ring_offset
impl Debug for linux_raw_sys::xdp::xdp_ring_offset
impl Debug for libc::unix::linux_like::linux::xdp_ring_offset_v1
impl Debug for linux_raw_sys::xdp::xdp_ring_offset_v1
impl Debug for libc::unix::linux_like::linux::xdp_statistics
impl Debug for linux_raw_sys::xdp::xdp_statistics
impl Debug for libc::unix::linux_like::linux::xdp_statistics_v1
impl Debug for linux_raw_sys::xdp::xdp_statistics_v1
impl Debug for libc::unix::linux_like::linux::xdp_umem_reg
impl Debug for linux_raw_sys::xdp::xdp_umem_reg
impl Debug for libc::unix::linux_like::linux::xdp_umem_reg_v1
impl Debug for linux_raw_sys::xdp::xdp_umem_reg_v1
impl Debug for xsk_tx_metadata
impl Debug for xsk_tx_metadata__bindgen_ty_1__bindgen_ty_1
impl Debug for xsk_tx_metadata__bindgen_ty_1__bindgen_ty_2
impl Debug for xsk_tx_metadata_completion
impl Debug for xsk_tx_metadata_request
impl Debug for xt_counters
impl Debug for xt_counters_info
impl Debug for xt_entry_match__bindgen_ty_1__bindgen_ty_1
impl Debug for xt_entry_match__bindgen_ty_1__bindgen_ty_2
impl Debug for xt_entry_target__bindgen_ty_1__bindgen_ty_1
impl Debug for xt_entry_target__bindgen_ty_1__bindgen_ty_2
impl Debug for xt_get_revision
impl Debug for xt_match
impl Debug for xt_target
impl Debug for xt_tcp
impl Debug for xt_udp
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'bases, R> Debug for EhHdrTableIter<'a, 'bases, R>
impl<'a, 'ctx, R, S> Debug for UnwindTable<'a, 'ctx, R, S>
impl<'a, A> Debug for taproot_eyra::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for taproot_eyra::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, I, A> Debug for taproot_eyra::collections::vec_deque::Splice<'a, I, A>
impl<'a, I, A> Debug for taproot_eyra::vec::Splice<'a, I, A>
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
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 taproot_eyra::str::RSplit<'a, P>
impl<'a, P> Debug for taproot_eyra::str::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for taproot_eyra::str::Split<'a, P>
impl<'a, P> Debug for taproot_eyra::str::SplitInclusive<'a, P>
impl<'a, P> Debug for taproot_eyra::str::SplitN<'a, P>
impl<'a, P> Debug for SplitTerminator<'a, P>
impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T>
impl<'a, R, T> Debug for lock_api::mutex::MappedMutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockWriteGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::mutex::MutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockWriteGuard<'a, R, T>
impl<'a, R> Debug for CallFrameInstructionIter<'a, R>
impl<'a, R> Debug for EhHdrTable<'a, R>
impl<'a, T, A> Debug for taproot_eyra::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, T> Debug for Choose<'a, T>where
T: Debug,
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 smallvec::Drain<'a, T>
impl<'a, T> Debug for taproot_eyra::sync::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for taproot_eyra::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for taproot_eyra::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for taproot_eyra::result::IterMut<'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 taproot_eyra::collections::btree_set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for taproot_eyra::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for taproot_eyra::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Windows<'a, T>where
T: Debug + 'a,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for Argument<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for taproot_eyra::str::Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for DynamicClockId<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for taproot_eyra::str::EscapeDebug<'a>
impl<'a> Debug for taproot_eyra::str::EscapeDefault<'a>
impl<'a> Debug for taproot_eyra::str::EscapeUnicode<'a>
impl<'a> Debug for Event<'a>
impl<'a> Debug for FoundDateTimeListRefMut<'a>
impl<'a> Debug for taproot_eyra::net::Incoming<'a>
impl<'a> Debug for taproot_eyra::os::unix::net::Incoming<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for taproot_eyra::str::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for RawDirEntry<'a>
impl<'a> Debug for Request<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for Specifier<'a>
impl<'a> Debug for SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'a>
impl<'a> Debug for TimeZoneRef<'a>
impl<'a> Debug for TimeZoneSettings<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for WaitId<'a>
impl<'bases, Section, R> Debug for CfiEntriesIter<'bases, Section, R>
impl<'bases, Section, R> Debug for CieOrFde<'bases, Section, R>
impl<'bases, Section, R> Debug for PartialFrameDescriptionEntry<'bases, Section, R>where
Section: Debug + UnwindSection<R>,
R: Debug + Reader,
<R as Reader>::Offset: Debug,
<Section as UnwindSection<R>>::Offset: Debug,
impl<'fd> Debug for PollFd<'fd>
impl<'index, R> Debug for UnitIndexSectionIterator<'index, R>
impl<'input, Endian> Debug for EndianSlice<'input, Endian>where
Endian: Endianity,
impl<'iter, T> Debug for RegisterRuleIter<'iter, T>where
T: Debug + ReaderOffset,
impl<'r, R> Debug for UnwrapMut<'r, R>
impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>
impl<A, B> Debug for taproot_eyra::iter::Chain<A, B>
impl<A, B> Debug for Zip<A, B>
impl<A> Debug for smallvec::IntoIter<A>
impl<A> Debug for taproot_eyra::option::IntoIter<A>where
A: Debug,
impl<A> Debug for OptionFlatten<A>where
A: Debug,
impl<A> Debug for RangeFromIter<A>where
A: Debug,
impl<A> Debug for RangeInclusiveIter<A>where
A: Debug,
impl<A> Debug for RangeIter<A>where
A: Debug,
impl<A> Debug for taproot_eyra::iter::Repeat<A>where
A: Debug,
impl<A> Debug for RepeatN<A>where
A: Debug,
impl<A> Debug for SmallVec<A>
impl<B, C> Debug for ControlFlow<B, C>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for Flag<B>where
B: Debug,
impl<B> Debug for taproot_eyra::io::Lines<B>where
B: Debug,
impl<B> Debug for taproot_eyra::io::Split<B>where
B: Debug,
impl<D, F, T, S> Debug for rand::distr::distribution::Map<D, F, T, S>
impl<D, R, T> Debug for rand::distr::distribution::Iter<D, R, T>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for ParseComplexError<E>where
E: Debug,
impl<E> Debug for Report<E>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<F> Debug for taproot_eyra::iter::FromFn<F>
impl<F> Debug for taproot_eyra::fmt::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for RepeatWith<F>
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
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 taproot_eyra::iter::Map<I, F>where
I: Debug,
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, F> Debug for FlatMap<I, U, F>
impl<I, U> Debug for Flatten<I>
impl<I, const N: usize> Debug for ArrayChunks<I, N>
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 DecodeUtf16<I>
impl<I> Debug for Enumerate<I>where
I: Debug,
impl<I> Debug for FromIter<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 taproot_eyra::iter::Take<I>where
I: Debug,
impl<Idx> Debug for Clamp<Idx>where
Idx: Debug,
impl<Idx> Debug for taproot_eyra::ops::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for taproot_eyra::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for taproot_eyra::ops::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for taproot_eyra::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for taproot_eyra::ops::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for taproot_eyra::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for taproot_eyra::ops::RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for taproot_eyra::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<K, A> Debug for taproot_eyra::collections::btree_set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for taproot_eyra::collections::btree_set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, A> Debug for taproot_eyra::collections::hash_set::Drain<'_, K, A>
impl<K, A> Debug for taproot_eyra::collections::hash_set::IntoIter<K, A>
impl<K, F, A> Debug for taproot_eyra::collections::hash_set::ExtractIf<'_, K, F, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::btree_map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::btree_map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::hash_map::Drain<'_, K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::btree_map::Entry<'_, K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::btree_map::IntoIter<K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::hash_map::IntoIter<K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::btree_map::IntoKeys<K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::hash_map::IntoKeys<K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::btree_map::IntoValues<K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::hash_map::IntoValues<K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::btree_map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::hash_map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::btree_map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::hash_map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::btree_map::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for taproot_eyra::collections::hash_map::VacantEntry<'_, K, V, A>
impl<K, V, F, A> Debug for taproot_eyra::collections::hash_map::ExtractIf<'_, K, V, F, A>
impl<K, V, R, F, A> Debug for taproot_eyra::collections::btree_map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S, A> Debug for HashMap<K, V, S, A>
impl<K, V> Debug for taproot_eyra::collections::btree_map::Cursor<'_, K, V>
impl<K, V> Debug for taproot_eyra::collections::hash_map::Entry<'_, K, V>
impl<K, V> Debug for taproot_eyra::collections::hash_map::Iter<'_, K, V>
impl<K, V> Debug for taproot_eyra::collections::btree_map::Iter<'_, K, V>
impl<K, V> Debug for taproot_eyra::collections::hash_map::IterMut<'_, K, V>
impl<K, V> Debug for taproot_eyra::collections::btree_map::IterMut<'_, K, V>
impl<K, V> Debug for taproot_eyra::collections::hash_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for taproot_eyra::collections::btree_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for taproot_eyra::collections::btree_map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for taproot_eyra::collections::hash_map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for taproot_eyra::collections::btree_map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for taproot_eyra::collections::hash_map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for taproot_eyra::collections::btree_map::ValuesMut<'_, K, V>where
V: Debug,
impl<K> Debug for taproot_eyra::collections::btree_set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for taproot_eyra::collections::hash_set::Iter<'_, K>where
K: Debug,
impl<P> Debug for MaybeDangling<P>
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, Offset> Debug for AddrHeader<R, Offset>
impl<R, Offset> Debug for ArangeHeader<R, Offset>
impl<R, Offset> Debug for CommonInformationEntry<R, Offset>
impl<R, Offset> Debug for FrameDescriptionEntry<R, Offset>
impl<R, Offset> Debug for gimli::read::op::Location<R, Offset>
impl<R, Offset> Debug for Operation<R, Offset>
impl<R, Offset> Debug for Piece<R, Offset>
impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>
impl<R, S> Debug for Evaluation<R, S>where
R: Debug + Reader,
S: Debug + EvaluationStorage<R>,
<S as EvaluationStorage<R>>::Stack: Debug,
<S as EvaluationStorage<R>>::ExpressionStack: Debug,
<S as EvaluationStorage<R>>::Result: Debug,
impl<R, T> Debug for lock_api::mutex::Mutex<R, T>
impl<R, T> Debug for RelocateReader<R, T>
impl<R, T> Debug for lock_api::rwlock::RwLock<R, T>
impl<R> Debug for AddrEntryIter<R>
impl<R> Debug for AddrHeaderIter<R>
impl<R> Debug for ArangeEntryIter<R>
impl<R> Debug for ArangeHeaderIter<R>
impl<R> Debug for BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for BufReader<R>
impl<R> Debug for taproot_eyra::io::Bytes<R>where
R: Debug,
impl<R> Debug for DebugAddr<R>where
R: Debug,
impl<R> Debug for DebugAranges<R>where
R: Debug,
impl<R> Debug for DebugCuIndex<R>where
R: Debug,
impl<R> Debug for DebugFrame<R>
impl<R> Debug for DebugLineStr<R>where
R: Debug,
impl<R> Debug for DebugLoc<R>where
R: Debug,
impl<R> Debug for DebugLocLists<R>where
R: Debug,
impl<R> Debug for DebugRanges<R>where
R: Debug,
impl<R> Debug for DebugRngLists<R>where
R: Debug,
impl<R> Debug for DebugStr<R>where
R: Debug,
impl<R> Debug for DebugStrOffsets<R>where
R: Debug,
impl<R> Debug for DebugTuIndex<R>where
R: Debug,
impl<R> Debug for EhFrame<R>
impl<R> Debug for EhFrameHdr<R>
impl<R> Debug for EvaluationResult<R>
impl<R> Debug for Expression<R>
impl<R> Debug for LocListIter<R>
impl<R> Debug for LocationListEntry<R>
impl<R> Debug for LocationLists<R>where
R: Debug,
impl<R> Debug for OperationIter<R>
impl<R> Debug for ParsedEhFrameHdr<R>
impl<R> Debug for RangeLists<R>where
R: Debug,
impl<R> Debug for RawLocListEntry<R>
impl<R> Debug for RawLocListIter<R>
impl<R> Debug for RawRngListIter<R>
impl<R> Debug for RngListIter<R>
impl<R> Debug for UnitIndex<R>
impl<R> Debug for UnwrapErr<R>where
R: Debug + TryRngCore,
impl<Storage> Debug for linux_raw_sys::general::__BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<Storage> Debug for linux_raw_sys::net::__BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<Storage> Debug for linux_raw_sys::general::__BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<T, A> Debug for Arc<T, A>
impl<T, A> Debug for BTreeSet<T, A>
impl<T, A> Debug for BinaryHeap<T, A>
impl<T, A> Debug for Box<T, A>
impl<T, A> Debug for taproot_eyra::collections::linked_list::Cursor<'_, T, A>
impl<T, A> Debug for taproot_eyra::collections::linked_list::CursorMut<'_, T, A>
impl<T, A> Debug for taproot_eyra::collections::btree_set::Difference<'_, T, A>
impl<T, A> Debug for taproot_eyra::collections::vec_deque::Drain<'_, T, A>
impl<T, A> Debug for taproot_eyra::vec::Drain<'_, T, A>
impl<T, A> Debug for taproot_eyra::collections::btree_set::Entry<'_, T, A>
impl<T, A> Debug for taproot_eyra::collections::btree_set::Intersection<'_, T, A>
impl<T, A> Debug for taproot_eyra::collections::binary_heap::IntoIter<T, A>
impl<T, A> Debug for taproot_eyra::collections::linked_list::IntoIter<T, A>
impl<T, A> Debug for taproot_eyra::collections::vec_deque::IntoIter<T, A>
impl<T, A> Debug for taproot_eyra::vec::IntoIter<T, A>
impl<T, A> Debug for taproot_eyra::collections::btree_set::IntoIter<T, A>
impl<T, A> Debug for IntoIterSorted<T, A>
impl<T, A> Debug for LinkedList<T, A>
impl<T, A> Debug for taproot_eyra::collections::btree_set::OccupiedEntry<'_, T, A>
impl<T, A> Debug for taproot_eyra::vec::PeekMut<'_, T, A>
impl<T, A> Debug for taproot_eyra::collections::binary_heap::PeekMut<'_, T, A>
impl<T, A> Debug for Rc<T, A>
impl<T, A> Debug for UniqueArc<T, A>
impl<T, A> Debug for UniqueRc<T, A>
impl<T, A> Debug for taproot_eyra::collections::btree_set::VacantEntry<'_, T, A>
impl<T, A> Debug for Vec<T, A>
impl<T, A> Debug for VecDeque<T, A>
impl<T, A> Debug for taproot_eyra::rc::Weak<T, A>
impl<T, A> Debug for taproot_eyra::sync::Weak<T, A>
impl<T, E> Debug for Result<T, E>
impl<T, F, A> Debug for taproot_eyra::collections::linked_list::ExtractIf<'_, T, F, A>
impl<T, F, A> Debug for taproot_eyra::collections::vec_deque::ExtractIf<'_, T, F, A>
impl<T, F, A> Debug for taproot_eyra::vec::ExtractIf<'_, T, F, A>
impl<T, F, S> Debug for ScopeGuard<T, F, S>
impl<T, F> Debug for DropGuard<T, F>
impl<T, F> Debug for LazyCell<T, F>where
T: Debug,
impl<T, F> Debug for LazyLock<T, F>where
T: Debug,
impl<T, F> Debug for Successors<T, F>where
T: Debug,
impl<T, P> Debug for taproot_eyra::slice::RSplit<'_, T, P>
impl<T, P> Debug for RSplitMut<'_, T, P>
impl<T, P> Debug for taproot_eyra::slice::RSplitN<'_, T, P>
impl<T, P> Debug for RSplitNMut<'_, T, P>
impl<T, P> Debug for taproot_eyra::slice::Split<'_, T, P>
impl<T, P> Debug for taproot_eyra::slice::SplitInclusive<'_, T, P>
impl<T, P> Debug for SplitInclusiveMut<'_, T, P>
impl<T, P> Debug for SplitMut<'_, T, P>
impl<T, P> Debug for taproot_eyra::slice::SplitN<'_, T, P>
impl<T, P> Debug for SplitNMut<'_, T, P>
impl<T, R, F, A> Debug for taproot_eyra::collections::btree_set::ExtractIf<'_, T, R, F, A>
impl<T, S, A> Debug for taproot_eyra::collections::hash_set::Difference<'_, T, S, A>
impl<T, S, A> Debug for taproot_eyra::collections::hash_set::Entry<'_, T, S, A>
impl<T, S, A> Debug for HashSet<T, S, A>
impl<T, S, A> Debug for taproot_eyra::collections::hash_set::Intersection<'_, T, S, A>
impl<T, S, A> Debug for taproot_eyra::collections::hash_set::OccupiedEntry<'_, T, S, A>
impl<T, S, A> Debug for taproot_eyra::collections::hash_set::SymmetricDifference<'_, T, S, A>
impl<T, S, A> Debug for taproot_eyra::collections::hash_set::Union<'_, T, S, A>
impl<T, S, A> Debug for taproot_eyra::collections::hash_set::VacantEntry<'_, T, S, A>
impl<T, S> Debug for UnwindContext<T, S>where
T: ReaderOffset,
S: UnwindContextStorage<T>,
impl<T, S> Debug for UnwindTableRow<T, S>where
T: ReaderOffset,
S: UnwindContextStorage<T>,
impl<T, U> Debug for taproot_eyra::io::Chain<T, U>
impl<T, const N: usize, A> Debug for BoxedArrayIntoIter<T, N, A>
impl<T, const N: usize> Debug for taproot_eyra::array::IntoIter<T, N>where
T: Debug,
impl<T, const N: usize> Debug for Mask<T, N>where
T: MaskElement + Debug,
impl<T, const N: usize> Debug for Simd<T, N>where
T: SimdElement + Debug,
impl<T, const N: usize> Debug for [T; N]where
T: Debug,
impl<T, const SHM: bool> Debug for rustix_futex_sync::once_lock::OnceLock<T, SHM>where
T: Debug,
impl<T, const VARIANT: u32, const FIELD: u32> Debug for FieldRepresentingType<T, VARIANT, FIELD>where
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for AssertUnwindSafe<T>where
T: Debug,
impl<T> Debug for Atomic<*mut T>
target_has_atomic_load_store=ptr only.