Trait usenetnews_dynexp2::prelude::Debug
1.0.0 · source · 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
derive
d 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
enum
s, 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 (libstd
, libcore
, liballoc
, 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 };
assert_eq!(format!("The origin is: {origin:#?}"),
"The origin is: Point {
x: 0,
y: 0,
}");
Required Methods§
sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
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 usenetnews_dynexp2::prelude::Ordering
impl Debug for VarError
impl Debug for usenetnews_dynexp2::prelude::fmt::Alignment
impl Debug for TryReserveErrorKind
impl Debug for Infallible
impl Debug for Which
impl Debug for c_void
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for SearchStep
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for std::net::Shutdown
impl Debug for std::net::ip_addr::IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for std::net::socket_addr::SocketAddr
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for RecvTimeoutError
impl Debug for TryRecvError
impl Debug for _Unwind_Reason_Code
impl Debug for ArgAction
impl Debug for AppSettings
impl Debug for ArgSettings
impl Debug for ValueHint
impl Debug for ContextKind
impl Debug for ContextValue
impl Debug for clap::error::kind::ErrorKind
impl Debug for MatchesError
impl Debug for ValueSource
impl Debug for clap::util::color::ColorChoice
impl Debug for humantime::date::Error
impl Debug for humantime::duration::Error
impl Debug for Type
impl Debug for Errno
impl Debug for FlockArg
impl Debug for PosixFadviseAdvice
impl Debug for AioCancelStat
impl Debug for AioFsyncMode
impl Debug for LioMode
impl Debug for EpollOp
impl Debug for MmapAdvise
impl Debug for Event
impl Debug for Request
impl Debug for QuotaFmt
impl Debug for QuotaType
impl Debug for RebootMode
impl Debug for Resource
impl Debug for UsageWho
impl Debug for SigHandler
impl Debug for SigevNotify
impl Debug for SigmaskHow
impl Debug for Signal
impl Debug for AddressFamily
impl Debug for InetAddr
impl Debug for nix::sys::socket::addr::IpAddr
impl Debug for SockAddr
impl Debug for ControlMessageOwned
impl Debug for nix::sys::socket::Shutdown
impl Debug for SockProtocol
impl Debug for nix::sys::socket::SockType
impl Debug for FchmodatFlags
impl Debug for UtimensatFlags
impl Debug for BaudRate
impl Debug for FlowArg
impl Debug for FlushArg
impl Debug for SetArg
impl Debug for SpecialCharacterIndices
impl Debug for Expiration
impl Debug for nix::sys::timerfd::ClockId
impl Debug for Id
impl Debug for WaitStatus
impl Debug for FchownatFlags
impl Debug for ForkResult
impl Debug for LinkatFlags
impl Debug for PathconfVar
impl Debug for SysconfVar
impl Debug for UnlinkatFlags
impl Debug for Whence
impl Debug for LineEnding
impl Debug for WordSeparator
impl Debug for WordSplitter
impl Debug for WrapAlgorithm
impl Debug for usenetnews_dynexp2::prelude::io::ErrorKind
impl Debug for SeekFrom
impl Debug for bool
impl Debug for char
impl Debug for f32
impl Debug for f64
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 Loaded
impl Debug for LogCollection
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 Arguments<'_>
impl Debug for usenetnews_dynexp2::prelude::fmt::Error
impl Debug for DirBuilder
impl Debug for DirEntry
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 Global
impl Debug for alloc::collections::TryReserveError
impl Debug for CString
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 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 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 __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512i
impl Debug for CStr
impl Debug for FromBytesUntilNulError
impl Debug for FromBytesWithNulError
impl Debug for SipHasher
impl Debug for PhantomPinned
impl Debug for ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for NonZeroI8
impl Debug for NonZeroI16
impl Debug for NonZeroI32
impl Debug for NonZeroI64
impl Debug for NonZeroI128
impl Debug for NonZeroIsize
impl Debug for NonZeroU8
impl Debug for NonZeroU16
impl Debug for NonZeroU32
impl Debug for NonZeroU64
impl Debug for NonZeroU128
impl Debug for NonZeroUsize
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 RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for core::time::Duration
impl Debug for TryFromFloatSecsError
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for DefaultHasher
impl Debug for RandomState
impl Debug for OsStr
impl Debug for OsString
impl Debug for std::net::ip_addr::Ipv4Addr
impl Debug for std::net::ip_addr::Ipv6Addr
impl Debug for AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
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 Display<'_>
impl Debug for std::path::Iter<'_>
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 Barrier
impl Debug for BarrierWaitResult
impl Debug for Condvar
impl Debug for WaitTimeoutResult
impl Debug for RecvError
impl Debug for std::sync::once::Once
impl Debug for OnceState
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 anyhow::Error
impl Debug for BoolValueParser
impl Debug for BoolishValueParser
impl Debug for FalseyValueParser
impl Debug for NonEmptyStringValueParser
impl Debug for OsStringValueParser
impl Debug for PathBufValueParser
impl Debug for PossibleValuesParser
impl Debug for StringValueParser
impl Debug for ValueParser
impl Debug for clap::error::Error
impl Debug for ArgMatches
impl Debug for Rfc3339Timestamp
impl Debug for FormattedDuration
impl Debug for humantime::wrapper::Duration
impl Debug for Timestamp
impl Debug for Dir
impl Debug for nix::dir::Entry
impl Debug for OwningIter
impl Debug for ClearEnvError
impl Debug for AtFlags
impl Debug for FallocateFlags
impl Debug for FdFlag
impl Debug for OFlag
impl Debug for RenameFlags
impl Debug for SealFlag
impl Debug for SpliceFFlags
impl Debug for InterfaceAddress
impl Debug for InterfaceAddressIterator
impl Debug for DeleteModuleFlags
impl Debug for ModuleInitFlags
impl Debug for MntFlags
impl Debug for nix::mount::linux::MsFlags
impl Debug for MQ_OFlag
impl Debug for MqAttr
impl Debug for MqdT
impl Debug for Interface
impl Debug for Interfaces
impl Debug for InterfaceFlags
impl Debug for PollFd
impl Debug for PollFlags
impl Debug for ForkptyResult
impl Debug for OpenptyResult
impl Debug for PtyMaster
impl Debug for CpuSet
impl Debug for CloneFlags
impl Debug for AioFsync
impl Debug for EpollCreateFlags
impl Debug for EpollEvent
impl Debug for EpollFlags
impl Debug for EfdFlags
impl Debug for AddWatchFlags
impl Debug for InitFlags
impl Debug for Inotify
impl Debug for InotifyEvent
impl Debug for WatchDescriptor
impl Debug for MemFdCreateFlag
impl Debug for MRemapFlags
impl Debug for MapFlags
impl Debug for MlockAllFlags
impl Debug for nix::sys::mman::MsFlags
impl Debug for ProtFlags
impl Debug for Persona
impl Debug for nix::sys::ptrace::linux::Options
impl Debug for Dqblk
impl Debug for QuotaValidFlags
impl Debug for Usage
impl Debug for FdSet
impl Debug for SigEvent
impl Debug for SaFlags
impl Debug for SigAction
impl Debug for SigSet
impl Debug for SignalIterator
impl Debug for SfdFlags
impl Debug for SignalFd
impl Debug for AlgAddr
impl Debug for LinkAddr
impl Debug for NetlinkAddr
impl Debug for nix::sys::socket::addr::Ipv4Addr
impl Debug for nix::sys::socket::addr::Ipv6Addr
impl Debug for SockaddrIn6
impl Debug for SockaddrIn
impl Debug for UnixAddr
impl Debug for VsockAddr
impl Debug for AcceptConn
impl Debug for AlgSetAeadAuthSize
impl Debug for BindToDevice
impl Debug for Broadcast
impl Debug for DontRoute
impl Debug for Ip6tOriginalDst
impl Debug for IpAddMembership
impl Debug for IpDropMembership
impl Debug for IpFreebind
impl Debug for IpMtu
impl Debug for IpMulticastLoop
impl Debug for IpMulticastTtl
impl Debug for IpTos
impl Debug for IpTransparent
impl Debug for Ipv4OrigDstAddr
impl Debug for Ipv4PacketInfo
impl Debug for Ipv4RecvErr
impl Debug for Ipv4Ttl
impl Debug for Ipv6AddMembership
impl Debug for Ipv6DontFrag
impl Debug for Ipv6DropMembership
impl Debug for Ipv6OrigDstAddr
impl Debug for Ipv6RecvErr
impl Debug for Ipv6RecvPacketInfo
impl Debug for Ipv6TClass
impl Debug for Ipv6Ttl
impl Debug for Ipv6V6Only
impl Debug for KeepAlive
impl Debug for Linger
impl Debug for Mark
impl Debug for OobInline
impl Debug for OriginalDst
impl Debug for PassCred
impl Debug for PeerCredentials
impl Debug for Priority
impl Debug for RcvBuf
impl Debug for RcvBufForce
impl Debug for ReceiveTimeout
impl Debug for ReceiveTimestamp
impl Debug for ReceiveTimestampns
impl Debug for ReuseAddr
impl Debug for ReusePort
impl Debug for RxqOvfl
impl Debug for SendTimeout
impl Debug for SndBuf
impl Debug for SndBufForce
impl Debug for nix::sys::socket::sockopt::SockType
impl Debug for SocketError
impl Debug for TcpCongestion
impl Debug for TcpKeepCount
impl Debug for TcpKeepIdle
impl Debug for TcpKeepInterval
impl Debug for TcpMaxSeg
impl Debug for TcpNoDelay
impl Debug for TcpRepair
impl Debug for TcpUserTimeout
impl Debug for Timestamping
impl Debug for TxTime
impl Debug for UdpGroSegment
impl Debug for UdpGsoSegment
impl Debug for IpMembershipRequest
impl Debug for Ipv6MembershipRequest
impl Debug for MsgFlags
impl Debug for SockFlag
impl Debug for TimestampingFlag
impl Debug for Timestamps
impl Debug for UnixCredentials
impl Debug for Mode
impl Debug for SFlag
impl Debug for FsType
impl Debug for Statfs
impl Debug for FsFlags
impl Debug for Statvfs
impl Debug for SysInfo
impl Debug for ControlFlags
impl Debug for InputFlags
impl Debug for LocalFlags
impl Debug for OutputFlags
impl Debug for Termios
impl Debug for TimeSpec
impl Debug for TimeVal
impl Debug for TimerSetTimeFlags
impl Debug for Timer
impl Debug for TimerFd
impl Debug for TimerFlags
impl Debug for RemoteIoVec
impl Debug for UtsName
impl Debug for WaitPidFlag
impl Debug for nix::time::ClockId
impl Debug for UContext
impl Debug for ResGid
impl Debug for ResUid
impl Debug for AccessFlags
impl Debug for Gid
impl Debug for Group
impl Debug for Pid
impl Debug for Uid
impl Debug for User
impl Debug for BorrowedBuf<'_>
impl Debug for usenetnews_dynexp2::prelude::io::Empty
impl Debug for usenetnews_dynexp2::prelude::io::Error
impl Debug for usenetnews_dynexp2::prelude::io::Repeat
impl Debug for Sink
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 WriterPanicked
impl Debug for Assume
impl Debug for RangeFull
impl Debug for File
impl Debug for SockaddrStorage
impl Debug for ArgCursor
impl Debug for Color
impl Debug for ColorChoice
impl Debug for ColorSpec
impl Debug for DIR
impl Debug for Dl_info
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 EncodingError
impl Debug for FILE
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for ParseColorError
impl Debug for RawArgs
impl Debug for RawOsStr
impl Debug for RawOsString
impl Debug for StrSimError
impl Debug for Stream
impl Debug for TryReserveError
impl Debug for __c_anonymous_ifr_ifru
impl Debug for __c_anonymous_ifru_map
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_j1939
impl Debug for __c_anonymous_sockaddr_can_tp
impl Debug for __exit_status
impl Debug for __timeval
impl Debug for _libc_fpstate
impl Debug for _libc_fpxreg
impl Debug for _libc_xmmreg
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 can_filter
impl Debug for clone_args
impl Debug for cmsghdr
impl Debug for cpu_set_t
impl Debug for dirent
impl Debug for dirent64
impl Debug for dl_phdr_info
impl Debug for dqblk
impl Debug for dyn Any + 'static
impl Debug for dyn Any + Send + 'static
impl Debug for dyn Any + Send + Sync + 'static
impl Debug for epoll_event
impl Debug for fanotify_event_metadata
impl Debug for fanotify_response
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 file_clone_range
impl Debug for flock
impl Debug for flock64
impl Debug for fpos64_t
impl Debug for fpos_t
impl Debug for fsid_t
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 if_nameindex
impl Debug for ifaddrs
impl Debug for ifreq
impl Debug for in6_addr
impl Debug for in6_ifreq
impl Debug for in6_pktinfo
impl Debug for in6_rtmsg
impl Debug for in_addr
impl Debug for in_pktinfo
impl Debug for 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 iovec
impl Debug for ip_mreq
impl Debug for ip_mreq_source
impl Debug for ip_mreqn
impl Debug for ipc_perm
impl Debug for ipv6_mreq
impl Debug for itimerspec
impl Debug for itimerval
impl Debug for j1939_filter
impl Debug for lconv
impl Debug for linger
impl Debug for mallinfo
impl Debug for mallinfo2
impl Debug for mcontext_t
impl Debug for mmsghdr
impl Debug for mntent
impl Debug for mq_attr
impl Debug for msghdr
impl Debug for msginfo
impl Debug for msqid_ds
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for ntptimeval
impl Debug for open_how
impl Debug for option
impl Debug for packet_mreq
impl Debug for passwd
impl Debug for pollfd
impl Debug for posix_spawn_file_actions_t
impl Debug for posix_spawnattr_t
impl Debug for protoent
impl Debug for pthread_attr_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 ptrace_peeksiginfo_args
impl Debug for ptrace_rseq_configuration
impl Debug for ptrace_syscall_info
impl Debug for regex_t
impl Debug for regmatch_t
impl Debug for rlimit
impl Debug for rlimit64
impl Debug for rtentry
impl Debug for rusage
impl Debug for sched_param
impl Debug for seccomp_data
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 sigaction
impl Debug for sigevent
impl Debug for siginfo_t
impl Debug for signalfd_siginfo
impl Debug for sigset_t
impl Debug for sigval
impl Debug for sock_extended_err
impl Debug for sock_filter
impl Debug for sock_fprog
impl Debug for sockaddr
impl Debug for sockaddr_alg
impl Debug for sockaddr_in
impl Debug for sockaddr_in6
impl Debug for sockaddr_ll
impl Debug for sockaddr_nl
impl Debug for sockaddr_storage
impl Debug for sockaddr_un
impl Debug for sockaddr_vm
impl Debug for spwd
impl Debug for stack_t
impl Debug for stat
impl Debug for stat64
impl Debug for statfs
impl Debug for statfs64
impl Debug for statvfs
impl Debug for statvfs64
impl Debug for statx
impl Debug for statx_timestamp
impl Debug for sysinfo
impl Debug for termios
impl Debug for termios2
impl Debug for timespec
impl Debug for timeval
impl Debug for timex
impl Debug for timezone
impl Debug for tm
impl Debug for tms
impl Debug for ucontext_t
impl Debug for ucred
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 user_fpregs_struct
impl Debug for user_regs_struct
impl Debug for utimbuf
impl Debug for utmpx
impl Debug for utsname
impl Debug for winsize
impl<'a> Debug for Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for FcntlArg<'a>
impl<'a> Debug for ControlMessage<'a>
impl<'a> Debug for Demand<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for Location<'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 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 Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for Indices<'a>
impl<'a> Debug for OsValues<'a>
impl<'a> Debug for RawValues<'a>
impl<'a> Debug for clap::parser::matches::arg_matches::Values<'a>
impl<'a> Debug for InterfacesIter<'a>
impl<'a> Debug for AioRead<'a>
impl<'a> Debug for AioWrite<'a>
impl<'a> Debug for Fds<'a>
impl<'a> Debug for SigSetIter<'a>
impl<'a> Debug for CmsgIterator<'a>
impl<'a> Debug for IoSliceIterator<'a>
impl<'a> Debug for Word<'a>
impl<'a> Debug for textwrap::Options<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'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, 's, S> Debug for RecvMsg<'a, 's, S>where
S: Debug,
impl<'a, A> Debug for core::option::Iter<'a, A>where
A: 'a + Debug,
impl<'a, A> Debug for core::option::IterMut<'a, A>where
A: 'a + Debug,
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I, A> Debug for Splice<'a, I, A>where
I: 'a + Debug + Iterator,
A: 'a + Debug + Allocator,
<I as Iterator>::Item: Debug,
impl<'a, K, F> Debug for std::collections::hash::set::DrainFilter<'a, K, F>where
F: FnMut(&K) -> bool,
impl<'a, K, V, F> Debug for std::collections::hash::map::DrainFilter<'a, K, V, F>where
F: FnMut(&K, &mut V) -> bool,
impl<'a, P> Debug for MatchIndices<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for Matches<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for RMatchIndices<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for RMatches<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for core::str::iter::RSplit<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for core::str::iter::RSplitN<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for RSplitTerminator<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for core::str::iter::Split<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for core::str::iter::SplitInclusive<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for core::str::iter::SplitN<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for SplitTerminator<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, S> Debug for MultiResults<'a, S>where
S: Debug,
impl<'a, T> Debug for alloc::collections::binary_heap::Drain<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for DrainSorted<'a, T>where
T: Debug + Ord,
impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for core::result::Iter<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for core::result::IterMut<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for Chunks<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for ChunksExact<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for ChunksExactMut<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for ChunksMut<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for RChunks<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for RChunksExact<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for RChunksExactMut<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for RChunksMut<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for Windows<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for TryIter<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for ValuesRef<'a, T>where
T: Debug,
impl<'a, T, F, A> Debug for alloc::vec::drain_filter::DrainFilter<'a, T, F, A>where
T: Debug,
F: Debug + FnMut(&mut T) -> bool,
A: Debug + Allocator,
impl<'a, T, P> Debug for GroupBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for GroupByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for core::slice::iter::ArrayChunks<'a, T, N>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayChunksMut<'a, T, N>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: 'a + Debug,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'d> Debug for nix::dir::Iter<'d>
impl<'f> Debug for VaListImpl<'f>
impl<'help> Debug for Arg<'help>
impl<'help> Debug for ArgGroup<'help>
impl<'help> Debug for App<'help>
impl<'help> Debug for PossibleValue<'help>
impl<'s> Debug for ParsedArg<'s>
impl<'s> Debug for ShortFlags<'s>
impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for usenetnews_dynexp2::prelude::iter::Repeat<A>where
A: Debug,
impl<A, B> Debug for usenetnews_dynexp2::prelude::iter::Chain<A, B>where
A: Debug,
B: Debug,
impl<A, B> Debug for Zip<A, B>where
A: Debug,
B: Debug,
impl<B> Debug for Cow<'_, B>where
B: Debug + ToOwned + ?Sized,
<B as ToOwned>::Owned: Debug,
impl<B> Debug for usenetnews_dynexp2::prelude::io::Lines<B>where
B: Debug,
impl<B> Debug for usenetnews_dynexp2::prelude::io::Split<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>where
B: Debug,
C: Debug,
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for Report<E>where
Report<E>: Display,
impl<E> Debug for EnumValueParser<E>where
E: 'static + Debug + ValueEnum + Clone + Send + Sync,
impl<F> Debug for PollFn<F>
impl<F> Debug for CharPredicateSearcher<'_, F>where
F: FnMut(char) -> bool,
impl<F> Debug for FromFn<F>
impl<F> Debug for OnceWith<F>where
F: Debug,
impl<F> Debug for RepeatWith<F>where
F: Debug,
impl<H> Debug for BuildHasherDefault<H>
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>where
I: Debug + Iterator<Item = u16>,
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>where
I: Debug + Iterator,
<I as Iterator>::Item: Clone + Debug,
impl<I> Debug for Peekable<I>where
I: Debug + Iterator,
<I as Iterator>::Item: Debug,
impl<I> Debug for Skip<I>where
I: Debug,
impl<I> Debug for StepBy<I>where
I: Debug,
impl<I> Debug for usenetnews_dynexp2::prelude::iter::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, G> Debug for IntersperseWith<I, G>where
I: Iterator + Debug,
<I as Iterator>::Item: Debug,
G: Debug,
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>where
I: Debug,
St: Debug,
impl<I, U> Debug for Flatten<I>where
I: Debug + Iterator,
<I as Iterator>::Item: IntoIterator<IntoIter = U, Item = <U as Iterator>::Item>,
U: Debug + Iterator,
impl<I, U, F> Debug for FlatMap<I, U, F>where
I: Debug,
U: IntoIterator,
<U as IntoIterator>::IntoIter: Debug,
impl<I, const N: usize> Debug for usenetnews_dynexp2::prelude::iter::ArrayChunks<I, N>where
I: Debug + Iterator,
<I as Iterator>::Item: Debug,
impl<Idx> Debug for usenetnews_dynexp2::prelude::ops::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeToInclusive<Idx>where
Idx: 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> Debug for Iter<'_, K>where
K: Debug,
impl<K, A> Debug for Drain<'_, K, A>where
K: Debug,
A: Allocator + Clone,
impl<K, A> Debug for IntoIter<K, A>where
K: Debug,
A: Allocator + Clone,
impl<K, Q, V, S, A> Debug for EntryRef<'_, '_, K, Q, V, S, A>where
K: Borrow<Q>,
Q: Debug + ?Sized,
V: Debug,
A: Allocator + Clone,
impl<K, Q, V, S, A> Debug for OccupiedEntryRef<'_, '_, K, Q, V, S, A>where
K: Borrow<Q>,
Q: Debug + ?Sized,
V: Debug,
A: Allocator + Clone,
impl<K, Q, V, S, A> Debug for VacantEntryRef<'_, '_, K, Q, V, S, A>where
K: Borrow<Q>,
Q: Debug + ?Sized,
A: Allocator + Clone,
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for indexmap::map::core::Entry<'_, K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>where
K: Debug,
V: Debug,
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>where
K: Debug,
V: Debug,
impl<K, V> Debug for RangeMut<'_, K, V>where
K: Debug,
V: Debug,
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>where
K: Debug,
V: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>where
K: Debug,
V: Debug,
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>where
K: Debug,
V: Debug,
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>where
K: Debug,
V: Debug,
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>where
K: Debug,
V: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>where
K: Debug,
V: Debug,
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> Debug for indexmap::map::core::raw::OccupiedEntry<'_, K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for indexmap::map::core::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::Drain<'_, K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for indexmap::map::IntoIter<K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for indexmap::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::Iter<'_, K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for indexmap::map::IterMut<'_, K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for indexmap::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for Iter<'_, K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for IterMut<'_, K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for ValuesMut<'_, K, V>where
V: Debug,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>where
K: Debug + Ord,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>where
K: Debug + Ord,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>where
K: Debug + Ord,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>where
K: Debug + Ord,
A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>where
K: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>where
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for BTreeMap<K, V, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for Drain<'_, K, V, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for IntoIter<K, V, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for IntoKeys<K, V, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for IntoValues<K, V, A>where
V: Debug,
A: Allocator + Clone,
impl<K, V, F> Debug for alloc::collections::btree::map::DrainFilter<'_, K, V, F, Global>where
K: Debug,
V: Debug,
F: FnMut(&K, &mut V) -> bool,
impl<K, V, S> Debug for std::collections::hash::map::RawEntryMut<'_, K, V, S>where
K: Debug,
V: Debug,
impl<K, V, S> Debug for std::collections::hash::map::RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawOccupiedEntryMut<'_, K, V, S>where
K: Debug,
V: Debug,
impl<K, V, S> Debug for std::collections::hash::map::RawVacantEntryMut<'_, K, V, S>
impl<K, V, S> Debug for IndexMap<K, V, S>where
K: Debug,
V: Debug,
impl<K, V, S> Debug for usenetnews_dynexp2::prelude::HashMap<K, V, S>where
K: Debug,
V: Debug,
impl<K, V, S, A> Debug for Entry<'_, K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for HashMap<K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for OccupiedEntry<'_, K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for OccupiedError<'_, K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for RawEntryBuilder<'_, K, V, S, A>where
A: Allocator + Clone,
impl<K, V, S, A> Debug for RawEntryBuilderMut<'_, K, V, S, A>where
A: Allocator + Clone,
impl<K, V, S, A> Debug for RawEntryMut<'_, K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for RawOccupiedEntryMut<'_, K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for RawVacantEntryMut<'_, K, V, S, A>where
A: Allocator + Clone,
impl<K, V, S, A> Debug for VacantEntry<'_, K, V, S, A>where
K: Debug,
A: Allocator + Clone,
impl<P> Debug for Pin<P>where
P: Debug,
impl<P> Debug for Split<'_, P>where
P: Pattern,
impl<R> Debug for usenetnews_dynexp2::prelude::io::Bytes<R>where
R: Debug,
impl<R> Debug for BufReader<R>where
R: Debug,
impl<Ret, T> Debug for fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C-unwind" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C-unwind" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C-unwind" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C-unwind" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<S> Debug for MultiHeaders<S>where
S: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for TrySendError<T>
impl<T> Debug for TryLockError<T>
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &Twhere
T: Debug + ?Sized,
impl<T> Debug for &mut Twhere
T: Debug + ?Sized,
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug + ?Sized,
This trait is implemented for tuples up to twelve items long.