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
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 (std
, core
, alloc
, etc.) are not stable, and
may also change with future Rust versions.
ยงExamples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
There are a number of helper methods on the Formatter
struct to help you with manual
implementations, such as debug_struct
.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter
trait (debug_struct
, debug_tuple
,
debug_list
, debug_set
, debug_map
) can do something totally custom by
manually writing an arbitrary representation to the Formatter
.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}
Debug
implementations using either derive
or the debug builder API
on Formatter
support pretty-printing using the alternate flag: {:#?}
.
Pretty-printing with #?
:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);
Required Methodsยง
1.0.0 ยท Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
ยงErrors
This function should return Err
if, and only if, the provided Formatter
returns Err
.
String formatting is considered an infallible operation; this function only
returns a Result
because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
ยงExamples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");
Implementorsยง
impl Debug for AttributeDiscriminant
impl Debug for pub_just::cmp::Ordering
impl Debug for pub_just::completions::Shell
impl Debug for ConditionalOperator
impl Debug for ConfigError
impl Debug for Delimiter
impl Debug for DumpFormat
impl Debug for VarError
impl Debug for pub_just::fmt::Alignment
impl Debug for TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for Infallible
impl Debug for c_void
impl Debug for IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for core::net::socket_addr::SocketAddr
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for Shutdown
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 AhoCorasickKind
impl Debug for aho_corasick::packed::api::MatchKind
impl Debug for aho_corasick::util::error::MatchErrorKind
impl Debug for Candidate
impl Debug for aho_corasick::util::search::Anchored
impl Debug for aho_corasick::util::search::MatchKind
impl Debug for StartKind
impl Debug for Colour
impl Debug for anstyle_parse::state::definitions::Action
impl Debug for anstyle_parse::state::definitions::State
impl Debug for AnsiColor
impl Debug for anstyle::color::Color
impl Debug for BigEndian
impl Debug for LittleEndian
impl Debug for Colons
impl Debug for Fixed
impl Debug for Numeric
impl Debug for OffsetPrecision
impl Debug for Pad
impl Debug for ParseErrorKind
impl Debug for SecondsFormat
impl Debug for Month
impl Debug for RoundingError
impl Debug for Weekday
impl Debug for ArgAction
impl Debug for ArgPredicate
impl Debug for ValueHint
impl Debug for ContextKind
impl Debug for ContextValue
impl Debug for clap_builder::error::kind::ErrorKind
impl Debug for MatchesError
impl Debug for ValueSource
impl Debug for clap_builder::util::color::ColorChoice
impl Debug for clap_complete::aot::shells::shell::Shell
impl Debug for colorchoice::ColorChoice
impl Debug for ctrlc::error::Error
impl Debug for SignalType
impl Debug for TruncSide
impl Debug for dotenvy::errors::Error
impl Debug for GetTimezoneError
impl Debug for DIR
impl Debug for FILE
impl Debug for fpos_t
impl Debug for libc::unix::linux_like::timezone
impl Debug for fpos64_t
impl Debug for tpacket_versions
impl Debug for fsconfig_command
impl Debug for membarrier_cmd
impl Debug for membarrier_cmd_flag
impl Debug for PrefilterConfig
impl Debug for memmap2::advice::Advice
impl Debug for UncheckedAdvice
impl Debug for nix::errno::consts::Errno
impl Debug for FlockArg
impl Debug for PosixFadviseAdvice
impl Debug for PrctlMCEKillPolicy
impl Debug for SigHandler
impl Debug for SigevNotify
impl Debug for SigmaskHow
impl Debug for Signal
impl Debug for FchmodatFlags
impl Debug for UtimensatFlags
impl Debug for WaitStatus
impl Debug for ForkResult
impl Debug for UnlinkatFlags
impl Debug for Whence
impl Debug for FloatErrorKind
impl Debug for BernoulliError
impl Debug for WeightedError
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
impl Debug for Yield
impl Debug for StartError
impl Debug for WhichCaptures
impl Debug for regex_automata::nfa::thompson::nfa::State
impl Debug for regex_automata::util::look::Look
impl Debug for regex_automata::util::search::Anchored
impl Debug for regex_automata::util::search::MatchErrorKind
impl Debug for regex_automata::util::search::MatchKind
impl Debug for AssertionKind
impl Debug for regex_syntax::ast::Ast
impl Debug for ClassAsciiKind
impl Debug for ClassPerlKind
impl Debug for ClassSet
impl Debug for ClassSetBinaryOpKind
impl Debug for ClassSetItem
impl Debug for ClassUnicodeKind
impl Debug for ClassUnicodeOpKind
impl Debug for regex_syntax::ast::ErrorKind
impl Debug for regex_syntax::ast::Flag
impl Debug for FlagsItemKind
impl Debug for GroupKind
impl Debug for HexLiteralKind
impl Debug for LiteralKind
impl Debug for RepetitionKind
impl Debug for RepetitionRange
impl Debug for SpecialLiteralKind
impl Debug for regex_syntax::error::Error
impl Debug for Class
impl Debug for Dot
impl Debug for regex_syntax::hir::ErrorKind
impl Debug for HirKind
impl Debug for regex_syntax::hir::Look
impl Debug for ExtractKind
impl Debug for Utf8Sequence
impl Debug for regex::error::Error
impl Debug for Inline
impl Debug for rustix::backend::fs::types::Advice
impl Debug for rustix::backend::fs::types::FileType
impl Debug for FlockOperation
impl Debug for rustix::fs::seek_from::SeekFrom
impl Debug for Direction
impl Debug for rustix::termios::types::Action
impl Debug for OptionalActions
impl Debug for QueueSelector
impl Debug for Op
impl Debug for Category
impl Debug for Value
impl Debug for Algorithm
impl Debug for ChangeTag
impl Debug for DiffOp
impl Debug for DiffTag
impl Debug for StrSimError
impl Debug for strum::ParseError
impl Debug for SpooledData
impl Debug for GraphemeIncomplete
impl Debug for Variant
impl Debug for uuid::Version
impl Debug for pub_just::io::ErrorKind
impl Debug for pub_just::io::SeekFrom
impl Debug for Keyword
impl Debug for OutputError
impl Debug for ParameterKind
impl Debug for SearchConfig
impl Debug for SearchError
impl Debug for SearchStep
impl Debug for StringDelimiter
impl Debug for Subcommand
impl Debug for TokenKind
impl Debug for UnstableFeature
impl Debug for UseColor
impl Debug for Verbosity
impl Debug for Warning
impl Debug for bool
impl Debug for char
impl Debug for f16
impl Debug for f32
impl Debug for f64
impl Debug for f128
impl Debug for i8
impl Debug for i16
impl Debug for i32
impl Debug for i64
impl Debug for i128
impl Debug for isize
impl Debug for !
impl Debug for str
impl Debug for u8
impl Debug for u16
impl Debug for u32
impl Debug for u64
impl Debug for u128
impl Debug for ()
impl Debug for usize
impl Debug for pub_just::color::Color
impl Debug for pub_just::config::Config
impl Debug for CurrentDirContext
impl Debug for SearchDirConflictContext
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 pub_just::fmt::Error
impl Debug for DirBuilder
impl Debug for pub_just::fs::DirEntry
impl Debug for File
impl Debug for FileTimes
impl Debug for pub_just::fs::FileType
impl Debug for Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for Global
impl Debug for UnorderedKeyError
impl Debug for 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 __m128h
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for bf16
impl Debug for CStr
impl Debug for FromBytesUntilNulError
impl Debug for FromBytesWithNulError
impl Debug for SipHasher
impl Debug for PhantomPinned
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for core::num::dec2flt::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for PanicMessage<'_>
impl Debug for core::ptr::alignment::Alignment
impl Debug for AtomicBool
impl Debug for AtomicI8
impl Debug for AtomicI16
impl Debug for AtomicI32
impl Debug for AtomicI64
impl Debug for AtomicIsize
impl Debug for AtomicU8
impl Debug for AtomicU16
impl Debug for AtomicU32
impl Debug for AtomicU64
impl Debug for AtomicUsize
impl Debug for Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for Duration
impl Debug for TryFromFloatSecsError
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for std::ffi::os_str::OsStr
impl Debug for DefaultHasher
impl Debug for RandomState
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 PipeReader
impl Debug for PipeWriter
impl Debug for DefaultRandomSource
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 std::thread::scoped::Scope<'_, '_>
impl Debug for std::thread::Builder
impl Debug for Thread
impl Debug for ThreadId
impl Debug for Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for AhoCorasick
impl Debug for AhoCorasickBuilder
impl Debug for aho_corasick::automaton::OverlappingState
impl Debug for aho_corasick::dfa::Builder
impl Debug for aho_corasick::dfa::DFA
impl Debug for aho_corasick::nfa::contiguous::Builder
impl Debug for aho_corasick::nfa::contiguous::NFA
impl Debug for aho_corasick::nfa::noncontiguous::Builder
impl Debug for aho_corasick::nfa::noncontiguous::NFA
impl Debug for aho_corasick::packed::api::Builder
impl Debug for aho_corasick::packed::api::Config
impl Debug for aho_corasick::packed::api::Searcher
impl Debug for aho_corasick::util::error::BuildError
impl Debug for aho_corasick::util::error::MatchError
impl Debug for aho_corasick::util::prefilter::Prefilter
impl Debug for aho_corasick::util::primitives::PatternID
impl Debug for aho_corasick::util::primitives::PatternIDError
impl Debug for aho_corasick::util::primitives::StateID
impl Debug for aho_corasick::util::primitives::StateIDError
impl Debug for aho_corasick::util::search::Match
impl Debug for aho_corasick::util::search::Span
impl Debug for Infix
impl Debug for ansi_term::ansi::Prefix
impl Debug for Suffix
impl Debug for ansi_term::style::Style
Styles have a special Debug
implementation that only shows the fields that
are set. Fields that havenโt been touched arenโt included in the output.
This behaviour gets bypassed when using the alternate formatting mode
format!("{:#?}")
.
use ansi_term::Colour::{Red, Blue};
assert_eq!("Style { fg(Red), on(Blue), bold, italic }",
format!("{:?}", Red.on(Blue).bold().italic()));
impl Debug for StripBytes
impl Debug for StripStr
impl Debug for WinconBytes
impl Debug for Params
impl Debug for AsciiParser
impl Debug for Utf8Parser
impl Debug for Ansi256Color
impl Debug for RgbColor
impl Debug for EffectIter
impl Debug for Effects
ยงExamples
let effects = anstyle::Effects::new();
assert_eq!(format!("{:?}", effects), "Effects()");
let effects = anstyle::Effects::BOLD | anstyle::Effects::UNDERLINE;
assert_eq!(format!("{:?}", effects), "Effects(BOLD | UNDERLINE)");
impl Debug for Reset
impl Debug for anstyle::style::Style
impl Debug for bitflags::parser::ParseError
impl Debug for Hash
impl Debug for Hasher
impl Debug for HexError
impl Debug for OutputReader
impl Debug for Eager
impl Debug for block_buffer::Error
impl Debug for block_buffer::Lazy
impl Debug for FromPathBufError
impl Debug for FromPathError
impl Debug for camino::Iter<'_>
impl Debug for ReadDirUtf8
impl Debug for Utf8DirEntry
impl Debug for Utf8PathBuf
impl Debug for Parsed
impl Debug for InternalFixed
impl Debug for InternalNumeric
impl Debug for OffsetFormat
impl Debug for chrono::format::ParseError
impl Debug for Months
impl Debug for ParseMonthError
impl Debug for NaiveDate
The Debug
output of the naive date d
is the same as
d.format("%Y-%m-%d")
.
The string printed can be readily parsed via the parse
method on str
.
ยงExample
use chrono::NaiveDate;
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(2015, 9, 5).unwrap()), "2015-09-05");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 1).unwrap()), "0000-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(9999, 12, 31).unwrap()), "9999-12-31");
ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(-1, 1, 1).unwrap()), "-0001-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(10000, 12, 31).unwrap()), "+10000-12-31");
impl Debug for NaiveDateDaysIterator
impl Debug for NaiveDateWeeksIterator
impl Debug for NaiveDateTime
The Debug
output of the naive date and time dt
is the same as
dt.format("%Y-%m-%dT%H:%M:%S%.f")
.
The string printed can be readily parsed via the parse
method on str
.
It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesnโt matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)
ยงExample
use chrono::NaiveDate;
let dt = NaiveDate::from_ymd_opt(2016, 11, 15).unwrap().and_hms_opt(7, 39, 24).unwrap();
assert_eq!(format!("{:?}", dt), "2016-11-15T07:39:24");
Leap seconds may also be used.
let dt =
NaiveDate::from_ymd_opt(2015, 6, 30).unwrap().and_hms_milli_opt(23, 59, 59, 1_500).unwrap();
assert_eq!(format!("{:?}", dt), "2015-06-30T23:59:60.500");
impl Debug for IsoWeek
The Debug
output of the ISO week w
is the same as
d.format("%G-W%V")
where d
is any NaiveDate
value in that week.
ยงExample
use chrono::{Datelike, NaiveDate};
assert_eq!(
format!("{:?}", NaiveDate::from_ymd_opt(2015, 9, 5).unwrap().iso_week()),
"2015-W36"
);
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 3).unwrap().iso_week()), "0000-W01");
assert_eq!(
format!("{:?}", NaiveDate::from_ymd_opt(9999, 12, 31).unwrap().iso_week()),
"9999-W52"
);
ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 2).unwrap().iso_week()), "-0001-W52");
assert_eq!(
format!("{:?}", NaiveDate::from_ymd_opt(10000, 12, 31).unwrap().iso_week()),
"+10000-W52"
);
impl Debug for Days
impl Debug for NaiveWeek
impl Debug for NaiveTime
The Debug
output of the naive time t
is the same as
t.format("%H:%M:%S%.f")
.
The string printed can be readily parsed via the parse
method on str
.
It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesnโt matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)
ยงExample
use chrono::NaiveTime;
assert_eq!(format!("{:?}", NaiveTime::from_hms_opt(23, 56, 4).unwrap()), "23:56:04");
assert_eq!(
format!("{:?}", NaiveTime::from_hms_milli_opt(23, 56, 4, 12).unwrap()),
"23:56:04.012"
);
assert_eq!(
format!("{:?}", NaiveTime::from_hms_micro_opt(23, 56, 4, 1234).unwrap()),
"23:56:04.001234"
);
assert_eq!(
format!("{:?}", NaiveTime::from_hms_nano_opt(23, 56, 4, 123456).unwrap()),
"23:56:04.000123456"
);
Leap seconds may also be used.
assert_eq!(
format!("{:?}", NaiveTime::from_hms_milli_opt(6, 59, 59, 1_500).unwrap()),
"06:59:60.500"
);
impl Debug for FixedOffset
impl Debug for Local
impl Debug for Utc
impl Debug for OutOfRange
impl Debug for OutOfRangeError
impl Debug for TimeDelta
impl Debug for ParseWeekdayError
impl Debug for Arg
impl Debug for ArgGroup
impl Debug for clap_builder::builder::command::Command
impl Debug for clap_builder::builder::os_str::OsStr
impl Debug for PossibleValue
impl Debug for ValueRange
impl Debug for Str
impl Debug for StyledStr
impl Debug for Styles
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 UnknownArgumentValueParser
impl Debug for ValueParser
impl Debug for ArgMatches
impl Debug for clap_builder::util::id::Id
impl Debug for Bash
impl Debug for Elvish
impl Debug for Fish
impl Debug for PowerShell
impl Debug for Zsh
impl Debug for ArgCursor
impl Debug for RawArgs
impl Debug for Collector
impl Debug for LocalHandle
impl Debug for Guard
impl Debug for Backoff
impl Debug for Parker
impl Debug for Unparker
impl Debug for WaitGroup
impl Debug for crossbeam_utils::thread::Scope<'_>
impl Debug for InvalidLength
impl Debug for InvalidBufferSize
impl Debug for InvalidOutputSize
impl Debug for Rng
impl Debug for getrandom::error::Error
impl Debug for in6_addr
impl Debug for libc::unix::linux_like::linux::arch::generic::termios2
impl Debug for sem_t
impl Debug for msqid_ds
impl Debug for semid_ds
impl Debug for sigset_t
impl Debug for sysinfo
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::align::clone_args
impl Debug for statvfs
impl Debug for _libc_fpstate
impl Debug for _libc_fpxreg
impl Debug for _libc_xmmreg
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::flock64
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::flock
impl Debug for ipc_perm
impl Debug for mcontext_t
impl Debug for pthread_attr_t
impl Debug for ptrace_rseq_configuration
impl Debug for shmid_ds
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::sigaction
impl Debug for siginfo_t
impl Debug for stack_t
impl Debug for stat64
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::stat
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs64
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs
impl Debug for statvfs64
impl Debug for ucontext_t
impl Debug for user
impl Debug for user_fpregs_struct
impl Debug for user_regs_struct
impl Debug for Elf32_Chdr
impl Debug for Elf64_Chdr
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 __exit_status
impl Debug for __timeval
impl Debug for aiocb
impl Debug for cmsghdr
impl Debug for fanotify_event_info_error
impl Debug for fanotify_event_info_pidfd
impl Debug for glob64_t
impl Debug for iocb
impl Debug for mallinfo2
impl Debug for mallinfo
impl Debug for msghdr
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for ntptimeval
impl Debug for ptrace_peeksiginfo_args
impl Debug for ptrace_syscall_info
impl Debug for regex_t
impl Debug for rtentry
impl Debug for seminfo
impl Debug for sockaddr_xdp
impl Debug for libc::unix::linux_like::linux::gnu::statx
impl Debug for libc::unix::linux_like::linux::gnu::statx_timestamp
impl Debug for tcp_info
impl Debug for libc::unix::linux_like::linux::gnu::termios
impl Debug for timex
impl Debug for utmpx
impl Debug for xdp_desc
impl Debug for xdp_mmap_offsets
impl Debug for xdp_mmap_offsets_v1
impl Debug for xdp_options
impl Debug for xdp_ring_offset
impl Debug for xdp_ring_offset_v1
impl Debug for xdp_statistics
impl Debug for xdp_statistics_v1
impl Debug for xdp_umem_reg
impl Debug for xdp_umem_reg_v1
impl Debug for libc::unix::linux_like::linux::non_exhaustive::open_how
impl Debug for Elf32_Ehdr
impl Debug for Elf32_Phdr
impl Debug for Elf32_Shdr
impl Debug for Elf32_Sym
impl Debug for Elf64_Ehdr
impl Debug for Elf64_Phdr
impl Debug for Elf64_Shdr
impl Debug for Elf64_Sym
impl Debug for __c_anonymous__kernel_fsid_t
impl Debug for __c_anonymous_elf32_rel
impl Debug for __c_anonymous_elf64_rel
impl Debug for __c_anonymous_ifru_map
impl Debug for __c_anonymous_sockaddr_can_j1939
impl Debug for __c_anonymous_sockaddr_can_tp
impl Debug for af_alg_iv
impl Debug for arpd_request
impl Debug for can_filter
impl Debug for cpu_set_t
impl Debug for dirent64
impl Debug for dirent
impl Debug for dl_phdr_info
impl Debug for dqblk
impl Debug for epoll_params
impl Debug for fanotify_event_info_fid
impl Debug for fanotify_event_info_header
impl Debug for fanotify_event_metadata
impl Debug for fanotify_response
impl Debug for fanout_args
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 libc::unix::linux_like::linux::file_clone_range
impl Debug for fsid_t
impl Debug for genlmsghdr
impl Debug for glob_t
impl Debug for hwtstamp_config
impl Debug for if_nameindex
impl Debug for ifconf
impl Debug for ifreq
impl Debug for in6_ifreq
impl Debug for in6_pktinfo
impl Debug for libc::unix::linux_like::linux::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 libc::unix::linux_like::linux::itimerspec
impl Debug for j1939_filter
impl Debug for mntent
impl Debug for mq_attr
impl Debug for msginfo
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for option
impl Debug for packet_mreq
impl Debug for passwd
impl Debug for posix_spawn_file_actions_t
impl Debug for posix_spawnattr_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 regmatch_t
impl Debug for libc::unix::linux_like::linux::rlimit64
impl Debug for sched_attr
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 sembuf
impl Debug for signalfd_siginfo
impl Debug for sock_extended_err
impl Debug for sock_filter
impl Debug for sock_fprog
impl Debug for sockaddr_alg
impl Debug for sockaddr_nl
impl Debug for sockaddr_pkt
impl Debug for sockaddr_vm
impl Debug for spwd
impl Debug for tls12_crypto_info_aes_gcm_128
impl Debug for tls12_crypto_info_aes_gcm_256
impl Debug for tls12_crypto_info_chacha20_poly1305
impl Debug for tls_crypto_info
impl Debug for tpacket2_hdr
impl Debug for tpacket3_hdr
impl Debug for tpacket_auxdata
impl Debug for tpacket_bd_ts
impl Debug for tpacket_hdr
impl Debug for tpacket_hdr_v1
impl Debug for tpacket_hdr_variant1
impl Debug for tpacket_req3
impl Debug for tpacket_req
impl Debug for tpacket_rollover_stats
impl Debug for tpacket_stats
impl Debug for tpacket_stats_v3
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 Dl_info
impl Debug for addrinfo
impl Debug for arphdr
impl Debug for arpreq
impl Debug for arpreq_old
impl Debug for libc::unix::linux_like::epoll_event
impl Debug for fd_set
impl Debug for ifaddrs
impl Debug for in6_rtmsg
impl Debug for in_addr
impl Debug for in_pktinfo
impl Debug for ip_mreq
impl Debug for ip_mreq_source
impl Debug for ip_mreqn
impl Debug for lconv
impl Debug for mmsghdr
impl Debug for sched_param
impl Debug for sigevent
impl Debug for sockaddr
impl Debug for sockaddr_in6
impl Debug for sockaddr_in
impl Debug for sockaddr_ll
impl Debug for sockaddr_storage
impl Debug for sockaddr_un
impl Debug for tm
impl Debug for utsname
impl Debug for group
impl Debug for hostent
impl Debug for libc::unix::iovec
impl Debug for ipv6_mreq
impl Debug for libc::unix::itimerval
impl Debug for linger
impl Debug for libc::unix::pollfd
impl Debug for protoent
impl Debug for libc::unix::rlimit
impl Debug for libc::unix::rusage
impl Debug for servent
impl Debug for sigval
impl Debug for libc::unix::timespec
impl Debug for libc::unix::timeval
impl Debug for tms
impl Debug for utimbuf
impl Debug for libc::unix::winsize
impl Debug for __kernel_fd_set
impl Debug for __kernel_fsid_t
impl Debug for __kernel_itimerspec
impl Debug for __kernel_old_itimerval
impl Debug for __kernel_old_timespec
impl Debug for __kernel_old_timeval
impl Debug for __kernel_sock_timeval
impl Debug for __kernel_timespec
impl Debug for __old_kernel_stat
impl Debug for __sifields__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_4
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3
impl Debug for __sifields__bindgen_ty_6
impl Debug for __sifields__bindgen_ty_7
impl Debug for __user_cap_data_struct
impl Debug for __user_cap_header_struct
impl Debug for linux_raw_sys::general::clone_args
impl Debug for compat_statfs64
impl Debug for linux_raw_sys::general::epoll_event
impl Debug for f_owner_ex
impl Debug for linux_raw_sys::general::file_clone_range
impl Debug for file_dedupe_range
impl Debug for file_dedupe_range_info
impl Debug for files_stat_struct
impl Debug for linux_raw_sys::general::flock64
impl Debug for linux_raw_sys::general::flock
impl Debug for fscrypt_key
impl Debug for fscrypt_policy_v1
impl Debug for fscrypt_policy_v2
impl Debug for fscrypt_provisioning_key_payload
impl Debug for fstrim_range
impl Debug for fsxattr
impl Debug for futex_waitv
impl Debug for inodes_stat_t
impl Debug for linux_raw_sys::general::inotify_event
impl Debug for linux_raw_sys::general::iovec
impl Debug for linux_raw_sys::general::itimerspec
impl Debug for linux_raw_sys::general::itimerval
impl Debug for kernel_sigaction
impl Debug for kernel_sigset_t
impl Debug for ktermios
impl Debug for linux_dirent64
impl Debug for mount_attr
impl Debug for linux_raw_sys::general::open_how
impl Debug for linux_raw_sys::general::pollfd
impl Debug for rand_pool_info
impl Debug for linux_raw_sys::general::rlimit64
impl Debug for linux_raw_sys::general::rlimit
impl Debug for robust_list
impl Debug for robust_list_head
impl Debug for linux_raw_sys::general::rusage
impl Debug for linux_raw_sys::general::sigaction
impl Debug for sigaltstack
impl Debug for sigevent__bindgen_ty_1__bindgen_ty_1
impl Debug for linux_raw_sys::general::stat
impl Debug for linux_raw_sys::general::statfs64
impl Debug for linux_raw_sys::general::statfs
impl Debug for linux_raw_sys::general::statx
impl Debug for linux_raw_sys::general::statx_timestamp
impl Debug for termio
impl Debug for linux_raw_sys::general::termios2
impl Debug for linux_raw_sys::general::termios
impl Debug for linux_raw_sys::general::timespec
impl Debug for linux_raw_sys::general::timeval
impl Debug for linux_raw_sys::general::timezone
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_2
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_3
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_4
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_5
impl Debug for uffdio_api
impl Debug for uffdio_continue
impl Debug for uffdio_copy
impl Debug for uffdio_range
impl Debug for uffdio_register
impl Debug for uffdio_writeprotect
impl Debug for uffdio_zeropage
impl Debug for user_desc
impl Debug for vfs_cap_data
impl Debug for vfs_cap_data__bindgen_ty_1
impl Debug for vfs_ns_cap_data
impl Debug for vfs_ns_cap_data__bindgen_ty_1
impl Debug for linux_raw_sys::general::winsize
impl Debug for memchr::arch::all::memchr::One
impl Debug for memchr::arch::all::memchr::Three
impl Debug for memchr::arch::all::memchr::Two
impl Debug for memchr::arch::all::packedpair::Finder
impl Debug for Pair
impl Debug for memchr::arch::all::rabinkarp::Finder
impl Debug for memchr::arch::all::rabinkarp::FinderRev
impl Debug for memchr::arch::all::shiftor::Finder
impl Debug for memchr::arch::all::twoway::Finder
impl Debug for memchr::arch::all::twoway::FinderRev
impl Debug for memchr::arch::x86_64::avx2::memchr::One
impl Debug for memchr::arch::x86_64::avx2::memchr::Three
impl Debug for memchr::arch::x86_64::avx2::memchr::Two
impl Debug for memchr::arch::x86_64::avx2::packedpair::Finder
impl Debug for memchr::arch::x86_64::sse2::memchr::One
impl Debug for memchr::arch::x86_64::sse2::memchr::Three
impl Debug for memchr::arch::x86_64::sse2::memchr::Two
impl Debug for memchr::arch::x86_64::sse2::packedpair::Finder
impl Debug for FinderBuilder
impl Debug for Mmap
impl Debug for MmapMut
impl Debug for MmapOptions
impl Debug for MmapRaw
impl Debug for RemapOptions
impl Debug for nix::fcntl::AtFlags
impl Debug for nix::fcntl::FallocateFlags
impl Debug for FdFlag
impl Debug for OFlag
impl Debug for OpenHow
impl Debug for nix::fcntl::RenameFlags
impl Debug for ResolveFlag
impl Debug for SealFlag
impl Debug for MemFdCreateFlag
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 nix::sys::stat::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 TimeSpec
impl Debug for TimeVal
impl Debug for WaitPidFlag
impl Debug for AccessFlags
impl Debug for nix::unistd::Pid
impl Debug for num_traits::ParseFloatError
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for Bernoulli
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for Alphanumeric
impl Debug for Standard
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for ReadError
impl Debug for StepRng
impl Debug for StdRng
impl Debug for ThreadRng
impl Debug for ChaCha8Core
impl Debug for ChaCha8Rng
impl Debug for ChaCha12Core
impl Debug for ChaCha12Rng
impl Debug for ChaCha20Core
impl Debug for ChaCha20Rng
impl Debug for rand_core::error::Error
impl Debug for OsRng
impl Debug for ThreadBuilder
impl Debug for Configuration
impl Debug for FnContext
impl Debug for ThreadPoolBuildError
impl Debug for ThreadPool
impl Debug for regex_automata::dfa::onepass::BuildError
impl Debug for regex_automata::dfa::onepass::Builder
impl Debug for regex_automata::dfa::onepass::Cache
impl Debug for regex_automata::dfa::onepass::Config
impl Debug for regex_automata::dfa::onepass::DFA
impl Debug for regex_automata::hybrid::dfa::Builder
impl Debug for regex_automata::hybrid::dfa::Cache
impl Debug for regex_automata::hybrid::dfa::Config
impl Debug for regex_automata::hybrid::dfa::DFA
impl Debug for regex_automata::hybrid::dfa::OverlappingState
impl Debug for regex_automata::hybrid::error::BuildError
impl Debug for CacheError
impl Debug for LazyStateID
impl Debug for regex_automata::hybrid::regex::Builder
impl Debug for regex_automata::hybrid::regex::Cache
impl Debug for regex_automata::hybrid::regex::Regex
impl Debug for regex_automata::meta::error::BuildError
impl Debug for regex_automata::meta::regex::Builder
impl Debug for regex_automata::meta::regex::Cache
impl Debug for regex_automata::meta::regex::Config
impl Debug for regex_automata::meta::regex::Regex
impl Debug for BoundedBacktracker
impl Debug for regex_automata::nfa::thompson::backtrack::Builder
impl Debug for regex_automata::nfa::thompson::backtrack::Cache
impl Debug for regex_automata::nfa::thompson::backtrack::Config
impl Debug for regex_automata::nfa::thompson::builder::Builder
impl Debug for Compiler
impl Debug for regex_automata::nfa::thompson::compiler::Config
impl Debug for regex_automata::nfa::thompson::error::BuildError
impl Debug for DenseTransitions
impl Debug for regex_automata::nfa::thompson::nfa::NFA
impl Debug for SparseTransitions
impl Debug for Transition
impl Debug for regex_automata::nfa::thompson::pikevm::Builder
impl Debug for regex_automata::nfa::thompson::pikevm::Cache
impl Debug for regex_automata::nfa::thompson::pikevm::Config
impl Debug for PikeVM
impl Debug for ByteClasses
impl Debug for Unit
impl Debug for regex_automata::util::captures::Captures
impl Debug for GroupInfo
impl Debug for GroupInfoError
impl Debug for DebugByte
impl Debug for LookMatcher
impl Debug for regex_automata::util::look::LookSet
impl Debug for regex_automata::util::look::LookSetIter
impl Debug for UnicodeWordBoundaryError
impl Debug for regex_automata::util::prefilter::Prefilter
impl Debug for NonMaxUsize
impl Debug for regex_automata::util::primitives::PatternID
impl Debug for regex_automata::util::primitives::PatternIDError
impl Debug for SmallIndex
impl Debug for SmallIndexError
impl Debug for regex_automata::util::primitives::StateID
impl Debug for regex_automata::util::primitives::StateIDError
impl Debug for HalfMatch
impl Debug for regex_automata::util::search::Match
impl Debug for regex_automata::util::search::MatchError
impl Debug for PatternSet
impl Debug for PatternSetInsertError
impl Debug for regex_automata::util::search::Span
impl Debug for regex_automata::util::start::Config
impl Debug for regex_automata::util::syntax::Config
impl Debug for DeserializeError
impl Debug for SerializeError
impl Debug for regex_syntax::ast::parse::Parser
impl Debug for regex_syntax::ast::parse::ParserBuilder
impl Debug for regex_syntax::ast::print::Printer
impl Debug for Alternation
impl Debug for Assertion
impl Debug for CaptureName
impl Debug for ClassAscii
impl Debug for ClassBracketed
impl Debug for ClassPerl
impl Debug for ClassSetBinaryOp
impl Debug for ClassSetRange
impl Debug for ClassSetUnion
impl Debug for regex_syntax::ast::ClassUnicode
impl Debug for Comment
impl Debug for Concat
impl Debug for regex_syntax::ast::Error
impl Debug for Flags
impl Debug for FlagsItem
impl Debug for Group
impl Debug for regex_syntax::ast::Literal
impl Debug for regex_syntax::ast::Position
impl Debug for regex_syntax::ast::Repetition
impl Debug for RepetitionOp
impl Debug for SetFlags
impl Debug for regex_syntax::ast::Span
impl Debug for WithComments
impl Debug for Extractor
impl Debug for regex_syntax::hir::literal::Literal
impl Debug for Seq
impl Debug for regex_syntax::hir::print::Printer
impl Debug for Capture
impl Debug for ClassBytes
impl Debug for ClassBytesRange
impl Debug for regex_syntax::hir::ClassUnicode
impl Debug for ClassUnicodeRange
impl Debug for regex_syntax::hir::Error
impl Debug for Hir
impl Debug for regex_syntax::hir::Literal
impl Debug for regex_syntax::hir::LookSet
impl Debug for regex_syntax::hir::LookSetIter
impl Debug for Properties
impl Debug for regex_syntax::hir::Repetition
impl Debug for Translator
impl Debug for TranslatorBuilder
impl Debug for regex_syntax::parser::Parser
impl Debug for regex_syntax::parser::ParserBuilder
impl Debug for CaseFoldError
impl Debug for UnicodeWordError
impl Debug for Utf8Range
impl Debug for Utf8Sequences
impl Debug for regex::builders::bytes::RegexBuilder
impl Debug for regex::builders::bytes::RegexSetBuilder
impl Debug for regex::builders::string::RegexBuilder
impl Debug for regex::builders::string::RegexSetBuilder
impl Debug for regex::regex::bytes::CaptureLocations
impl Debug for regex::regex::bytes::Regex
impl Debug for regex::regex::string::CaptureLocations
impl Debug for regex::regexset::bytes::RegexSet
impl Debug for regex::regexset::bytes::SetMatches
impl Debug for regex::regexset::bytes::SetMatchesIntoIter
impl Debug for regex::regexset::string::RegexSet
impl Debug for regex::regexset::string::SetMatches
impl Debug for regex::regexset::string::SetMatchesIntoIter
impl Debug for Roff
impl Debug for Dir
impl Debug for rustix::backend::fs::dir::DirEntry
impl Debug for CreateFlags
impl Debug for ReadFlags
impl Debug for WatchFlags
impl Debug for Access
impl Debug for rustix::backend::fs::types::AtFlags
impl Debug for rustix::backend::fs::types::FallocateFlags
impl Debug for MemfdFlags
impl Debug for rustix::backend::fs::types::Mode
impl Debug for OFlags
impl Debug for rustix::backend::fs::types::RenameFlags
impl Debug for ResolveFlags
impl Debug for SealFlags
impl Debug for StatVfsMountFlags
impl Debug for StatxFlags
impl Debug for rustix::backend::io::errno::Errno
impl Debug for DupFlags
impl Debug for FdFlags
impl Debug for ReadWriteFlags
impl Debug for MountFlags
impl Debug for MountPropagationFlags
impl Debug for UnmountFlags
impl Debug for Timestamps
impl Debug for XattrFlags
impl Debug for Opcode
impl Debug for rustix::pid::Pid
impl Debug for ControlModes
impl Debug for InputModes
impl Debug for LocalModes
impl Debug for OutputModes
impl Debug for SpecialCodeIndex
impl Debug for SpecialCodes
impl Debug for Termios
impl Debug for Gid
impl Debug for Uid
impl Debug for semver::parse::Error
impl Debug for BuildMetadata
impl Debug for Comparator
impl Debug for Prerelease
impl Debug for semver::Version
impl Debug for VersionReq
impl Debug for IgnoredAny
impl Debug for serde::de::value::Error
impl Debug for serde_json::error::Error
impl Debug for serde_json::map::Map<String, Value>
impl Debug for Number
impl Debug for CompactFormatter
impl Debug for Sha256VarCore
impl Debug for Sha512VarCore
impl Debug for TextDiffConfig
impl Debug for snafu::Location
impl Debug for Whatever
impl Debug for TempDir
impl Debug for PathPersistError
impl Debug for TempPath
impl Debug for SpooledTempFile
impl Debug for Height
impl Debug for Width
impl Debug for ATerm
impl Debug for B0
impl Debug for B1
impl Debug for Z0
impl Debug for Equal
impl Debug for Greater
impl Debug for Less
impl Debug for UTerm
impl Debug for GraphemeCursor
impl Debug for utf8parse::Parser
impl Debug for uuid::builder::Builder
impl Debug for uuid::error::Error
impl Debug for Braced
impl Debug for Hyphenated
impl Debug for Simple
impl Debug for Urn
impl Debug for Uuid
impl Debug for NoContext
impl Debug for Timestamp
impl Debug for BorrowedBuf<'_>
impl Debug for pub_just::io::Empty
impl Debug for pub_just::io::Error
impl Debug for pub_just::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 ModulePath
impl Debug for Components<'_>
impl Debug for pub_just::path::Display<'_>
impl Debug for pub_just::path::Iter<'_>
impl Debug for StripPrefixError
impl Debug for pub_just::position::Position
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for ExitCode
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for Search
impl Debug for GlobalJustfileInitSnafu
impl Debug for GlobalJustfileNotFoundSnafu
impl Debug for NotFoundSnafu
impl Debug for EncodeUtf16<'_>
impl Debug for ParseBoolError
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for StringKind
impl Debug for Chars<'_>
impl Debug for pub_just::Command
impl Debug for ExitStatus
impl Debug for OsString
impl Debug for Path
impl Debug for PathBuf
impl Debug for pub_just::Regex
impl Debug for Stdio
impl Debug for Utf8Path
impl Debug for __c_anonymous_ptrace_syscall_info_data
impl Debug for __c_anonymous_ifc_ifcu
impl Debug for __c_anonymous_ifr_ifru
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Sync + Send
impl<'a> Debug for Utf8Component<'a>
impl<'a> Debug for Utf8Prefix<'a>
impl<'a> Debug for chrono::format::Item<'a>
impl<'a> Debug for FcntlArg<'a>
impl<'a> Debug for IndexVecIter<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for pub_just::path::Prefix<'a>
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Request<'a>
impl<'a> Debug for core::error::Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for core::panic::location::Location<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for Utf8Ancestors<'a>
impl<'a> Debug for Utf8Components<'a>
impl<'a> Debug for Utf8PrefixComponent<'a>
impl<'a> Debug for StrftimeItems<'a>
impl<'a> Debug for IdsRef<'a>
impl<'a> Debug for Indices<'a>
impl<'a> Debug for RawValues<'a>
impl<'a> Debug for SigSetIter<'a>
impl<'a> Debug for PercentDecode<'a>
impl<'a> Debug for BroadcastContext<'a>
impl<'a> Debug for PatternIter<'a>
impl<'a> Debug for ByteClassElements<'a>
impl<'a> Debug for ByteClassIter<'a>
impl<'a> Debug for ByteClassRepresentatives<'a>
impl<'a> Debug for CapturesPatternIter<'a>
impl<'a> Debug for GroupInfoAllNames<'a>
impl<'a> Debug for GroupInfoPatternNames<'a>
impl<'a> Debug for DebugHaystack<'a>
impl<'a> Debug for PatternSetIter<'a>
impl<'a> Debug for ClassBytesIter<'a>
impl<'a> Debug for ClassUnicodeIter<'a>
impl<'a> Debug for regex::regexset::bytes::SetMatchesIter<'a>
impl<'a> Debug for regex::regexset::string::SetMatchesIter<'a>
impl<'a> Debug for InotifyEvent<'a>
impl<'a> Debug for RawDirEntry<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for GraphemeIndices<'a>
impl<'a> Debug for Graphemes<'a>
impl<'a> Debug for USentenceBoundIndices<'a>
impl<'a> Debug for USentenceBounds<'a>
impl<'a> Debug for UnicodeSentences<'a>
impl<'a> Debug for UWordBoundIndices<'a>
impl<'a> Debug for UWordBounds<'a>
impl<'a> Debug for UnicodeWordIndices<'a>
impl<'a> Debug for UnicodeWords<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'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 CharSearcher<'a>
impl<'a> Debug for pub_just::str::Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for pub_just::str::EscapeDebug<'a>
impl<'a> Debug for pub_just::str::EscapeDefault<'a>
impl<'a> Debug for pub_just::str::EscapeUnicode<'a>
impl<'a> Debug for pub_just::str::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, 'b> Debug for ChainCompat<'a, 'b>
impl<'a, 'b> Debug for tempfile::Builder<'a, 'b>
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, 'h> Debug for aho_corasick::ahocorasick::FindIter<'a, 'h>
impl<'a, 'h> Debug for aho_corasick::ahocorasick::FindOverlappingIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::TwoIter<'a, 'h>
impl<'a, 'h, A> Debug for aho_corasick::automaton::FindIter<'a, 'h, A>where
A: Debug,
impl<'a, 'h, A> Debug for aho_corasick::automaton::FindOverlappingIter<'a, 'h, A>where
A: Debug,
impl<'a, A> Debug for core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, A, R> Debug for aho_corasick::automaton::StreamFindIter<'a, A, R>
impl<'a, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
impl<'a, E> Debug for StrDeserializer<'a, E>
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I, A> Debug for Splice<'a, I, A>
impl<'a, K, F> Debug for std::collections::hash::set::ExtractIf<'a, K, F>
impl<'a, K, V, F> Debug for std::collections::hash::map::ExtractIf<'a, K, V, F>
impl<'a, P> Debug for MatchIndices<'a, P>
impl<'a, P> Debug for pub_just::str::Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for pub_just::str::RSplit<'a, P>
impl<'a, P> Debug for pub_just::str::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for pub_just::str::Split<'a, P>
impl<'a, P> Debug for pub_just::str::SplitInclusive<'a, P>
impl<'a, P> Debug for pub_just::str::SplitN<'a, P>
impl<'a, P> Debug for SplitTerminator<'a, P>
impl<'a, R> Debug for aho_corasick::ahocorasick::StreamFindIter<'a, R>where
R: Debug,
impl<'a, R> Debug for regex::regex::bytes::ReplacerRef<'a, R>
impl<'a, R> Debug for regex::regex::string::ReplacerRef<'a, R>
impl<'a, S> Debug for ANSIGenericString<'a, S>
impl<'a, S> Debug for ANSIGenericStrings<'a, S>
impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>
impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ValuesRef<'a, T>where
T: Debug,
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for Slice<'a, T>where
T: Debug,
impl<'a, T> Debug for Ptr<'a, T>where
T: 'a + ?Sized,
impl<'a, T, A> Debug for alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, F> Debug for PoolGuard<'a, T, F>
impl<'a, T, F, A> Debug for pub_just::vec::ExtractIf<'a, T, F, 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 core::slice::iter::ArrayChunks<'a, T, N>where
T: Debug + 'a,
impl<'a, T, const N: usize> Debug for ArrayChunksMut<'a, T, N>where
T: Debug + 'a,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'c, 'h> Debug for regex::regex::bytes::SubCaptureMatches<'c, 'h>
impl<'c, 'h> Debug for regex::regex::string::SubCaptureMatches<'c, 'h>
impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>
impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>
impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
impl<'f> Debug for VaListImpl<'f>
impl<'fd> Debug for nix::sys::wait::Id<'fd>
impl<'h> Debug for aho_corasick::util::search::Input<'h>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'h> Debug for regex_automata::util::iter::Searcher<'h>
impl<'h> Debug for regex_automata::util::search::Input<'h>
impl<'h> Debug for regex::regex::bytes::Captures<'h>
impl<'h> Debug for regex::regex::bytes::Match<'h>
impl<'h> Debug for regex::regex::string::Captures<'h>
impl<'h> Debug for regex::regex::string::Match<'h>
impl<'h, 'n> Debug for memchr::memmem::FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'h, F> Debug for CapturesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for HalfMatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for MatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for TryCapturesIter<'h, F>
impl<'h, F> Debug for TryHalfMatchesIter<'h, F>
impl<'h, F> Debug for TryMatchesIter<'h, F>
impl<'key, V: Debug + Keyed<'key>> Debug for Table<'key, V>
impl<'n> Debug for memchr::memmem::Finder<'n>
impl<'n> Debug for memchr::memmem::FinderRev<'n>
impl<'old, 'new, Old, New, D> Debug for Compact<'old, 'new, Old, New, D>
impl<'r> Debug for regex::regex::bytes::CaptureNames<'r>
impl<'r> Debug for regex::regex::string::CaptureNames<'r>
impl<'r, 'c, 'h> Debug for regex_automata::hybrid::regex::FindMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for TryCapturesMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for TryFindMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for regex_automata::nfa::thompson::pikevm::CapturesMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for regex_automata::nfa::thompson::pikevm::FindMatches<'r, 'c, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::CapturesMatches<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::FindMatches<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::Split<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::SplitN<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::Matches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::Split<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::SplitN<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::Matches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::Split<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::SplitN<'r, 'h>
impl<'run> Debug for ArgumentGroup<'run>
impl<'s> Debug for StripBytesIter<'s>
impl<'s> Debug for StripStrIter<'s>
impl<'s> Debug for StrippedBytes<'s>
impl<'s> Debug for StrippedStr<'s>
impl<'s> Debug for WinconBytesIter<'s>
impl<'s> Debug for ParsedArg<'s>
impl<'s> Debug for ShortFlags<'s>
impl<'s> Debug for regex::regex::bytes::NoExpand<'s>
impl<'s> Debug for regex::regex::string::NoExpand<'s>
impl<'s, 'h> Debug for aho_corasick::packed::api::FindIter<'s, 'h>
impl<'scope> Debug for rayon_core::scope::Scope<'scope>
impl<'scope> Debug for ScopeFifo<'scope>
impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env>
impl<'scope, T> Debug for std::thread::scoped::ScopedJoinHandle<'scope, T>
impl<'src> Debug for Attribute<'src>
impl<'src> Debug for CompileErrorKind<'src>
impl<'src> Debug for pub_just::error::Error<'src>
impl<'src> Debug for Expression<'src>
impl<'src> Debug for Fragment<'src>
impl<'src> Debug for pub_just::item::Item<'src>
impl<'src> Debug for Setting<'src>
impl<'src> Debug for Thunk<'src>
impl<'src> Debug for pub_just::ast::Ast<'src>
impl<'src> Debug for Compilation<'src>
impl<'src> Debug for CompileError<'src>
impl<'src> Debug for Condition<'src>
impl<'src> Debug for Dependency<'src>
impl<'src> Debug for Interpreter<'src>
impl<'src> Debug for Justfile<'src>
impl<'src> Debug for Line<'src>
impl<'src> Debug for Name<'src>
impl<'src> Debug for Namepath<'src>
impl<'src> Debug for Parameter<'src>
impl<'src> Debug for Set<'src>
impl<'src> Debug for Settings<'src>
impl<'src> Debug for pub_just::source::Source<'src>
impl<'src> Debug for StringLiteral<'src>
impl<'src> Debug for Suggestion<'src>
impl<'src> Debug for Token<'src>
impl<'src> Debug for UnresolvedDependency<'src>
impl<'src, D: Debug> Debug for Recipe<'src, D>
impl<'src, T: Debug> Debug for Alias<'src, T>
impl<'src, V: Debug> Debug for Binding<'src, V>
impl<'src: 'run, 'run> Debug for pub_just::scope::Scope<'src, 'run>
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for IterRange<A>where
A: Debug,
impl<A> Debug for IterRangeFrom<A>where
A: Debug,
impl<A> Debug for IterRangeInclusive<A>where
A: Debug,
impl<A> Debug for EnumAccessDeserializer<A>where
A: Debug,
impl<A> Debug for MapAccessDeserializer<A>where
A: Debug,
impl<A> Debug for SeqAccessDeserializer<A>where
A: Debug,
impl<A> Debug for pub_just::iter::Repeat<A>where
A: Debug,
impl<A> Debug for RepeatN<A>where
A: Debug,
impl<A, B> Debug for pub_just::iter::Chain<A, B>
impl<A, B> Debug for Zip<A, B>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for bitflags::traits::Flag<B>where
B: Debug,
impl<B> Debug for pub_just::io::Lines<B>where
B: Debug,
impl<B> Debug for pub_just::io::Split<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>
impl<B, T> Debug for AlignAs<B, T>
impl<BlockSize, Kind> Debug for BlockBuffer<BlockSize, Kind>where
BlockSize: Debug + ArrayLength<u8> + IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>,
Kind: Debug + BufferKind,
<BlockSize as IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>>::Output: NonZero,
impl<C> Debug for anstyle_parse::Parser<C>where
C: Debug,
impl<C> Debug for ThreadLocalContext<C>
impl<D, F, T, S> Debug for DistMap<D, F, T, S>
impl<D, R, T> Debug for DistIter<D, R, T>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for std::error::Report<E>
impl<E> Debug for EnumValueParser<E>
impl<E> Debug for BoolDeserializer<E>
impl<E> Debug for CharDeserializer<E>
impl<E> Debug for F32Deserializer<E>
impl<E> Debug for F64Deserializer<E>
impl<E> Debug for I8Deserializer<E>
impl<E> Debug for I16Deserializer<E>
impl<E> Debug for I32Deserializer<E>
impl<E> Debug for I64Deserializer<E>
impl<E> Debug for I128Deserializer<E>
impl<E> Debug for IsizeDeserializer<E>
impl<E> Debug for StringDeserializer<E>
impl<E> Debug for U8Deserializer<E>
impl<E> Debug for U16Deserializer<E>
impl<E> Debug for U32Deserializer<E>
impl<E> Debug for U64Deserializer<E>
impl<E> Debug for U128Deserializer<E>
impl<E> Debug for UnitDeserializer<E>
impl<E> Debug for UsizeDeserializer<E>
impl<E> Debug for LookupError<E>where
E: Debug,
impl<E> Debug for snafu::report::Report<E>where
E: Error,
impl<F> Debug for pub_just::fmt::FromFn<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for clap_builder::error::Error<F>where
F: ErrorFormatter,
impl<F> Debug for NamedTempFile<F>
impl<F> Debug for PersistError<F>
impl<F> Debug for pub_just::iter::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for RepeatWith<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<H> Debug for BuildHasherDefault<H>
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for DelayedFormat<I>where
I: Debug,
impl<I> Debug for Cloned<I>where
I: Debug,
impl<I> Debug for Copied<I>where
I: Debug,
impl<I> Debug for Cycle<I>where
I: Debug,
impl<I> Debug for Enumerate<I>where
I: Debug,
impl<I> Debug for Fuse<I>where
I: Debug,
impl<I> Debug for Intersperse<I>
impl<I> Debug for Peekable<I>
impl<I> Debug for Skip<I>where
I: Debug,
impl<I> Debug for StepBy<I>where
I: Debug,
impl<I> Debug for pub_just::iter::Take<I>where
I: Debug,
impl<I, E> Debug for SeqDeserializer<I, E>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 pub_just::iter::Map<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for IntersperseWith<I, G>
impl<I, P> Debug for Filter<I, P>where
I: Debug,
impl<I, P> Debug for MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeWhile<I, P>where
I: Debug,
impl<I, St, F> Debug for Scan<I, St, F>
impl<I, U> Debug for Flatten<I>
impl<I, U, F> Debug for FlatMap<I, U, F>
impl<I, const N: usize> Debug for pub_just::iter::ArrayChunks<I, N>
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for pub_just::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for pub_just::RangeInclusive<Idx>where
Idx: Debug,
impl<K> Debug for alloc::collections::btree::set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Drain<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::IntoIter<K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Drain<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, F> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, F>
impl<K, V, S> Debug for RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for RawVacantEntryMut<'_, K, V, S>
impl<K, V, S> Debug for HashMap<K, V, S>
impl<O> Debug for F32<O>where
O: ByteOrder,
impl<O> Debug for F64<O>where
O: ByteOrder,
impl<O> Debug for I16<O>where
O: ByteOrder,
impl<O> Debug for I32<O>where
O: ByteOrder,
impl<O> Debug for I64<O>where
O: ByteOrder,
impl<O> Debug for I128<O>where
O: ByteOrder,
impl<O> Debug for U16<O>where
O: ByteOrder,
impl<O> Debug for U32<O>where
O: ByteOrder,
impl<O> Debug for U64<O>where
O: ByteOrder,
impl<O> Debug for U128<O>where
O: ByteOrder,
impl<Opcode> Debug for NoArg<Opcode>where
Opcode: CompileTimeOpcode,
impl<Opcode, Input> Debug for Setter<Opcode, Input>where
Opcode: CompileTimeOpcode,
Input: Debug,
impl<Opcode, Output> Debug for Getter<Opcode, Output>where
Opcode: CompileTimeOpcode,
impl<P, F> Debug for MapValueParser<P, F>
impl<P, F> Debug for TryMapValueParser<P, F>
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<R> Debug for ReadRng<R>where
R: Debug,
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 pub_just::io::Bytes<R>where
R: Debug,
impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>
impl<S> Debug for AutoStream<S>
impl<S> Debug for StripStream<S>
impl<S> Debug for ThreadPoolBuilder<S>
impl<Storage> Debug for __BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for TrySendError<T>
impl<T> Debug for TryLockError<T>
impl<T> Debug for LocalResult<T>where
T: Debug,
impl<T> Debug for Resettable<T>where
T: Debug,
impl<T> Debug for Steal<T>
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (Tโ, Tโ, โฆ, Tโ)
This trait is implemented for tuples up to twelve items long.