pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}Expand description
? formatting.
Debug should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive a Debug implementation.
When used with the alternate format specifier #?, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive] if all fields implement Debug. When
derived for structs, it will use the name of the struct, then {, then a
comma-separated list of each field’s name and Debug value, then }. For
enums, it will use the name of the variant and, if applicable, (, then the
Debug values of the fields, then ).
§Stability
Derived Debug formats are not stable, and so may change with future Rust
versions. Additionally, Debug implementations of types provided by the
standard library (std, core, alloc, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);There are a number of helper methods on the Formatter struct to help you with manual
implementations, such as debug_struct.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter trait (debug_struct, debug_tuple,
debug_list, debug_set, debug_map) can do something totally custom by
manually writing an arbitrary representation to the Formatter.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}Debug implementations using either derive or the debug builder API
on Formatter support pretty-printing using the alternate flag: {:#?}.
Pretty-printing with #?:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err if, and only if, the provided Formatter returns Err.
String formatting is considered an infallible operation; this function only
returns a Result because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");Implementors§
impl Debug for TryReserveErrorKind
impl Debug for solar::ast::bumpalo::core_alloc::slice::GetDisjointMutError
impl Debug for SearchStep
impl Debug for Base
impl Debug for BinOpKind
impl Debug for CommentKind
impl Debug for ContractKind
impl Debug for DataLocation
impl Debug for ElementaryType
impl Debug for EtherSubDenomination
impl Debug for FunctionKind
impl Debug for IdentOrStrLit
impl Debug for ItemKind<'_>
impl Debug for LitKind<'_>
impl Debug for Op
impl Debug for SemverReqComponentKind
impl Debug for SemverVersionNumber
impl Debug for solar::ast::StateMutability
impl Debug for StrKind
impl Debug for SubDenomination
impl Debug for TimeSubDenomination
impl Debug for solar::ast::TypeKind<'_>
impl Debug for UnOpKind
impl Debug for UserDefinableOperator
impl Debug for VarMut
impl Debug for Visibility
impl Debug for BinOpToken
impl Debug for Delimiter
impl Debug for TokenDescription
impl Debug for TokenKind
impl Debug for TokenLitKind
impl Debug for solar::config::ColorChoice
impl Debug for CompilerOutput
impl Debug for CompilerStage
impl Debug for DumpKind
impl Debug for ErrorFormat
impl Debug for EvmVersion
impl Debug for HumanEmitterKind
impl Debug for Language
impl Debug for Applicability
impl Debug for solar::interface::diagnostics::Level
impl Debug for solar::interface::diagnostics::Style
impl Debug for SuggestionStyle
impl Debug for Suggestions
impl Debug for FileName
impl Debug for ResolveError
impl Debug for SpanLinesError
impl Debug for SpanSnippetError
impl Debug for Recovered
impl Debug for RawLiteralKind
impl Debug for RawTokenKind
impl Debug for EscapeError
impl Debug for Builtin
impl Debug for EvalErrorKind
impl Debug for solar::sema::hir::ItemId
impl Debug for LoopSource
impl Debug for Res
impl Debug for VarKind
impl Debug for Recursiveness
impl Debug for TyAbiPrinterMode
impl Debug for CollectionAllocErr
impl Debug for solar::data_structures::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for solar::data_structures::fmt::Sign
impl Debug for AsciiChar
impl Debug for core::cmp::Ordering
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for AtomicOrdering
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 VarError
impl Debug for std::fs::TryLockError
impl Debug for SeekFrom
impl Debug for std::io::error::ErrorKind
impl Debug for Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for RecvTimeoutError
impl Debug for TryRecvError
impl Debug for InternalType
impl Debug for AddressError
impl Debug for TxKind
impl Debug for SignatureError
impl Debug for ParseSignedError
impl Debug for alloy_primitives::signed::sign::Sign
impl Debug for DecimalSeparator
impl Debug for ParseUnits
impl Debug for UnitsError
impl Debug for Storage
impl Debug for alloy_sol_type_parser::state_mutability::StateMutability
impl Debug for DecorStyle
impl Debug for AnnotationKind
impl Debug for Action
impl Debug for anstyle_parse::state::definitions::State
impl Debug for AnsiColor
impl Debug for anstyle::color::Color
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 FromHexError
impl Debug for BinaryError
impl Debug for hashbrown::TryReserveError
impl Debug for hashbrown::TryReserveError
impl Debug for indexmap::GetDisjointMutError
impl Debug for DIR
impl Debug for FILE
impl Debug for timezone
impl Debug for tpacket_versions
impl Debug for log::Level
impl Debug for log::LevelFilter
impl Debug for PrefilterConfig
impl Debug for TargetGround
impl Debug for nu_ansi_term::style::Color
impl Debug for num_bigint::bigint::Sign
impl Debug for FloatErrorKind
impl Debug for parking_lot::once::OnceState
impl Debug for FilterOp
impl Debug for ParkResult
impl Debug for RequeueOp
impl Debug for Yield
impl Debug for StartError
impl Debug for StartKind
impl Debug for WhichCaptures
impl Debug for regex_automata::nfa::thompson::nfa::State
impl Debug for regex_automata::util::look::Look
impl Debug for Anchored
impl Debug for MatchErrorKind
impl Debug for MatchKind
impl Debug for AssertionKind
impl Debug for 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 BaseConvertError
impl Debug for ToFieldError
impl Debug for ruint::string::ParseError
impl Debug for Always
impl Debug for Category
impl Debug for Value
impl Debug for StrSimError
impl Debug for strum::ParseError
impl Debug for Endianness
impl Debug for Needed
impl Debug for StrContext
impl Debug for StrContextValue
impl Debug for CompareResult
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 AllocError
impl Debug for Global
impl Debug for Layout
impl Debug for LayoutError
impl Debug for ByteStr
impl Debug for ByteString
impl Debug for UnorderedKeyError
impl Debug for solar::ast::bumpalo::core_alloc::collections::TryReserveError
impl Debug for CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for solar::ast::bumpalo::core_alloc::str::Chars<'_>
impl Debug for solar::ast::bumpalo::core_alloc::str::EncodeUtf16<'_>
impl Debug for ParseBoolError
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for solar::ast::bumpalo::core_alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for String
impl Debug for AllocErr
impl Debug for BinOp
impl Debug for DocComment
impl Debug for DocComments<'_>
impl Debug for Ident
impl Debug for solar::ast::ItemId
impl Debug for solar::ast::Path
impl Debug for PathSlice
impl Debug for SemverReqComponent
impl Debug for SemverVersion
impl Debug for SourceUnit<'_>
impl Debug for solar::ast::Span
impl Debug for StrLit
impl Debug for solar::ast::Symbol
impl Debug for TypeFixedSize
impl Debug for TypeSize
impl Debug for UnOp
impl Debug for Token
impl Debug for TokenLit
impl Debug for TokenRepr
impl Debug for CompilerOutputIter
impl Debug for CompilerStageIter
impl Debug for Dump
impl Debug for DumpKindIter
impl Debug for ErrorFormatIter
impl Debug for EvmVersionIter
impl Debug for HumanEmitterKindIter
impl Debug for ImportRemapping
impl Debug for LanguageIter
impl Debug for Opts
impl Debug for Threads
impl Debug for UnstableOpts
impl Debug for BugAbort
impl Debug for CodeSuggestion
impl Debug for Diag
impl Debug for DiagCtxt
impl Debug for DiagCtxtFlags
impl Debug for DiagId
impl Debug for DiagMsg
impl Debug for EmittedDiagnostics
impl Debug for ErrorGuaranteed
impl Debug for LocalEmitter
impl Debug for MultiSpan
impl Debug for SpanLabel
impl Debug for SubDiagnostic
impl Debug for Substitution
impl Debug for SubstitutionPart
impl Debug for DistinctSources
impl Debug for LineInfo
impl Debug for Loc
impl Debug for MalformedSourceMapPositions
impl Debug for MultiByteChar
impl Debug for OffsetOverflowError
impl Debug for SourceFile
impl Debug for SourceFileAndBytePos
impl Debug for SourceFileAndLine
impl Debug for SpanLoc
impl Debug for BytePos
impl Debug for ByteSymbol
impl Debug for CharPos
impl Debug for RelativeBytePos
impl Debug for Session
impl Debug for SourceMap
impl Debug for RawToken
impl Debug for EvalError
impl Debug for ContractId
impl Debug for EnumId
impl Debug for ErrorId
impl Debug for EventId
impl Debug for ExprId
impl Debug for FunctionId
impl Debug for solar::sema::hir::Source<'_>
impl Debug for SourceId
impl Debug for StructId
impl Debug for UdvtId
impl Debug for VariableId
impl Debug for solar::sema::Compiler
impl Debug for CompilerRef<'_>
impl Debug for solar::sema::Source<'_>
impl Debug for Sources<'_>
impl Debug for Ty<'_>
impl Debug for GlobalCtxt<'_>
impl Debug for TyData<'_>
impl Debug for TyFlags
impl Debug for BaseIndex32
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
Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
impl Debug for FromBytesUntilNulError
impl Debug for SipHasher
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomPinned
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for Assume
impl Debug for 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 Location<'_>
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 core::task::wake::Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for Duration
impl Debug for TryFromFloatSecsError
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for std::ffi::os_str::OsStr
impl Debug for OsString
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for File
impl Debug for FileTimes
impl Debug for FileType
impl Debug for std::fs::Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for std::hash::random::DefaultHasher
impl Debug for std::hash::random::RandomState
impl Debug for WriterPanicked
impl Debug for std::io::error::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for Stderr
impl Debug for StderrLock<'_>
impl Debug for Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdout
impl Debug for StdoutLock<'_>
impl Debug for std::io::util::Empty
impl Debug for std::io::util::Repeat
impl Debug for Sink
impl Debug for IntoIncoming
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for UdpSocket
impl Debug for BorrowedFd<'_>
impl Debug for OwnedFd
impl Debug for PidFd
impl Debug for std::os::unix::net::addr::SocketAddr
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for UCred
impl Debug for Components<'_>
impl Debug for std::path::Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for NormalizeError
impl Debug for std::path::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 std::process::Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for Stdio
impl Debug for DefaultRandomSource
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for RecvError
impl Debug for std::sync::nonpoison::condvar::Condvar
impl Debug for WouldBlock
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for std::sync::poison::once::Once
impl Debug for std::sync::poison::once::OnceState
impl Debug for std::sync::WaitTimeoutResult
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 std::time::SystemTime
impl Debug for SystemTimeError
impl Debug for ContractObject
impl Debug for IntoItems
impl Debug for JsonAbi
impl Debug for Constructor
impl Debug for alloy_json_abi::item::Error
impl Debug for alloy_json_abi::item::Event
impl Debug for Fallback
impl Debug for alloy_json_abi::item::Function
impl Debug for Receive
impl Debug for EventParam
impl Debug for Param
impl Debug for ToSolConfig
impl Debug for Address
impl Debug for AddressChecksumBuffer
impl Debug for Bloom
impl Debug for alloy_primitives::bits::function::Function
impl Debug for alloy_primitives::bytes_::Bytes
impl Debug for LogData
impl Debug for Signature
impl Debug for BigIntConversionError
impl Debug for Keccak256
impl Debug for alloy_primitives::utils::units::Unit
impl Debug for alloy_sol_type_parser::error::Error
impl Debug for Renderer
impl Debug for Padding
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 UninitSlice
impl Debug for bytes::bytes::Bytes
impl Debug for BytesMut
impl Debug for TryGetError
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 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 dashmap::TryReserveError
impl Debug for WrongVariantError
impl Debug for UnitError
impl Debug for FromStrError
impl Debug for foldhash::fast::FixedState
impl Debug for foldhash::fast::RandomState
impl Debug for foldhash::fast::SeedableRandomState
impl Debug for foldhash::quality::FixedState
impl Debug for foldhash::quality::RandomState
impl Debug for foldhash::quality::SeedableRandomState
impl Debug for DefaultHashBuilder
impl Debug for indexmap::TryReserveError
impl Debug for inturn::symbol::Symbol
impl Debug for j1939_filter
impl Debug for __c_anonymous_sockaddr_can_j1939
impl Debug for __c_anonymous_sockaddr_can_tp
impl Debug for can_filter
impl Debug for can_frame
impl Debug for canfd_frame
impl Debug for canxl_frame
impl Debug for sockaddr_can
impl Debug for termios2
impl Debug for pthread_attr_t
impl Debug for semid_ds
impl Debug for sigset_t
impl Debug for stat
impl Debug for statvfs
impl Debug for sysinfo
impl Debug for timex
impl Debug for _libc_fpreg
impl Debug for _libc_fpstate
impl Debug for flock64
impl Debug for flock
impl Debug for ipc_perm
impl Debug for max_align_t
impl Debug for mcontext_t
impl Debug for msqid_ds
impl Debug for shmid_ds
impl Debug for sigaction
impl Debug for siginfo_t
impl Debug for stack_t
impl Debug for stat64
impl Debug for statfs64
impl Debug for statfs
impl Debug for statvfs64
impl Debug for ucontext_t
impl Debug for user
impl Debug for user_fpregs_struct
impl Debug for user_fpxregs_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 fpos64_t
impl Debug for fpos_t
impl Debug for glob64_t
impl Debug for iocb
impl Debug for mallinfo2
impl Debug for mallinfo
impl Debug for mbstate_t
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_sud_config
impl Debug for ptrace_syscall_info
impl Debug for regex_t
impl Debug for rtentry
impl Debug for sem_t
impl Debug for seminfo
impl Debug for tcp_info
impl Debug for termios
impl Debug for timespec
impl Debug for utmpx
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_elf32_rela
impl Debug for __c_anonymous_elf64_rel
impl Debug for __c_anonymous_elf64_rela
impl Debug for __c_anonymous_ifru_map
impl Debug for af_alg_iv
impl Debug for arpd_request
impl Debug for cpu_set_t
impl Debug for dirent64
impl Debug for dirent
impl Debug for dl_phdr_info
impl Debug for dmabuf_cmsg
impl Debug for dmabuf_token
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 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 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 itimerspec
impl Debug for iw_discarded
impl Debug for iw_encode_ext
impl Debug for iw_event
impl Debug for iw_freq
impl Debug for iw_michaelmicfailure
impl Debug for iw_missed
impl Debug for iw_mlme
impl Debug for iw_param
impl Debug for iw_pmkid_cand
impl Debug for iw_pmksa
impl Debug for iw_point
impl Debug for iw_priv_args
impl Debug for iw_quality
impl Debug for iw_range
impl Debug for iw_scan_req
impl Debug for iw_statistics
impl Debug for iw_thrspy
impl Debug for iwreq
impl Debug for mnt_ns_info
impl Debug for mntent
impl Debug for mount_attr
impl Debug for mq_attr
impl Debug for msginfo
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for open_how
impl Debug for option
impl Debug for packet_mreq
impl Debug for passwd
impl Debug for pidfd_info
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 ptp_clock_caps
impl Debug for ptp_clock_time
impl Debug for ptp_extts_event
impl Debug for ptp_extts_request
impl Debug for ptp_perout_request
impl Debug for ptp_pin_desc
impl Debug for ptp_sys_offset
impl Debug for ptp_sys_offset_extended
impl Debug for ptp_sys_offset_precise
impl Debug for regmatch_t
impl Debug for 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_txtime
impl Debug for sockaddr_alg
impl Debug for sockaddr_nl
impl Debug for sockaddr_pkt
impl Debug for sockaddr_vm
impl Debug for sockaddr_xdp
impl Debug for spwd
impl Debug for tls12_crypto_info_aes_ccm_128
impl Debug for tls12_crypto_info_aes_gcm_128
impl Debug for tls12_crypto_info_aes_gcm_256
impl Debug for tls12_crypto_info_aria_gcm_128
impl Debug for tls12_crypto_info_aria_gcm_256
impl Debug for tls12_crypto_info_chacha20_poly1305
impl Debug for tls12_crypto_info_sm4_ccm
impl Debug for tls12_crypto_info_sm4_gcm
impl Debug for tls_crypto_info
impl Debug for tpacket2_hdr
impl Debug for tpacket3_hdr
impl Debug for tpacket_auxdata
impl Debug for tpacket_bd_ts
impl Debug for tpacket_block_desc
impl Debug for tpacket_hdr
impl Debug for tpacket_hdr_v1
impl Debug for tpacket_hdr_variant1
impl Debug for tpacket_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 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 xsk_tx_metadata
impl Debug for xsk_tx_metadata_completion
impl Debug for xsk_tx_metadata_request
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 epoll_event
impl Debug for fd_set
impl Debug for file_clone_range
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 sock_filter
impl Debug for sock_fprog
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 statx
impl Debug for statx_timestamp
impl Debug for tm
impl Debug for utsname
impl Debug for group
impl Debug for hostent
impl Debug for in6_addr
impl Debug for iovec
impl Debug for ipv6_mreq
impl Debug for itimerval
impl Debug for linger
impl Debug for pollfd
impl Debug for protoent
impl Debug for rlimit
impl Debug for rusage
impl Debug for servent
impl Debug for sigval
impl Debug for timeval
impl Debug for tms
impl Debug for utimbuf
impl Debug for winsize
impl Debug for log::ParseLevelError
impl Debug for SetLoggerError
impl Debug for One
impl Debug for Three
impl Debug for 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 FinderBuilder
impl Debug for Infix
impl Debug for nu_ansi_term::ansi::Prefix
impl Debug for Suffix
impl Debug for Gradient
impl Debug for Rgb
impl Debug for nu_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 nu_ansi_term::Color::{Red, Blue};
assert_eq!("Style { fg(Red), on(Blue), bold, italic }",
format!("{:?}", Red.on(Blue).bold().italic()));impl Debug for BigInt
impl Debug for BigUint
impl Debug for ParseBigIntError
impl Debug for ParseRatioError
impl Debug for num_traits::ParseFloatError
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for once_map::DefaultHasher
impl Debug for once_map::RandomState
impl Debug for parking_lot::condvar::Condvar
impl Debug for parking_lot::condvar::WaitTimeoutResult
impl Debug for parking_lot::once::Once
impl Debug for ParkToken
impl Debug for UnparkResult
impl Debug for UnparkToken
impl Debug for ThreadBuilder
impl Debug for Configuration
impl Debug for FnContext
impl Debug for ThreadPoolBuildError
impl Debug for ThreadPool
impl Debug for OverlappingState
impl Debug for regex_automata::dfa::dense::BuildError
impl Debug for regex_automata::dfa::dense::Builder
impl Debug for regex_automata::dfa::dense::Config
impl Debug for regex_automata::dfa::regex::Builder
impl Debug for regex_automata::nfa::thompson::builder::Builder
impl Debug for regex_automata::nfa::thompson::compiler::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 NFA
impl Debug for SparseTransitions
impl Debug for Transition
impl Debug for ByteClasses
impl Debug for regex_automata::util::alphabet::Unit
impl Debug for 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 Prefilter
impl Debug for NonMaxUsize
impl Debug for PatternID
impl Debug for PatternIDError
impl Debug for SmallIndex
impl Debug for SmallIndexError
impl Debug for StateID
impl Debug for StateIDError
impl Debug for HalfMatch
impl Debug for Match
impl Debug for 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 regex_syntax::ast::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 regex_syntax::hir::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 Matrix
impl Debug for semver::parse::Error
impl Debug for BuildMetadata
impl Debug for Comparator
impl Debug for Prerelease
impl Debug for Version
impl Debug for VersionReq
impl Debug for IgnoredAny
impl Debug for serde_core::de::value::Error
impl Debug for serde_json::error::Error
impl Debug for serde_json::map::IntoIter
impl Debug for serde_json::map::IntoValues
impl Debug for serde_json::map::Map<String, Value>
impl Debug for Number
impl Debug for CompactFormatter
impl Debug for DefaultConfig
impl Debug for DefaultCallsite
impl Debug for Identifier
impl Debug for DefaultGuard
impl Debug for Dispatch
impl Debug for SetGlobalDefaultError
impl Debug for WeakDispatch
impl Debug for tracing_core::field::Empty
impl Debug for Field
impl Debug for FieldSet
impl Debug for tracing_core::field::Iter
impl Debug for ValueSet<'_>
impl Debug for Kind
impl Debug for tracing_core::metadata::Level
impl Debug for tracing_core::metadata::LevelFilter
impl Debug for tracing_core::metadata::Metadata<'_>
impl Debug for tracing_core::metadata::ParseLevelError
impl Debug for ParseLevelFilterError
impl Debug for Current
impl Debug for tracing_core::span::Id
impl Debug for Interest
impl Debug for NoSubscriber
impl Debug for tracing_log::log_tracer::Builder
impl Debug for LogTracer
impl Debug for tracing_subscriber::filter::directive::ParseError
impl Debug for tracing_subscriber::filter::env::builder::Builder
impl Debug for Directive
impl Debug for BadName
impl Debug for EnvFilter
impl Debug for FromEnvError
impl Debug for FilterId
impl Debug for tracing_subscriber::filter::targets::IntoIter
impl Debug for Targets
impl Debug for Pretty
impl Debug for PrettyFields
impl Debug for Compact
impl Debug for DefaultFields
impl Debug for FmtSpan
impl Debug for Full
impl Debug for tracing_subscriber::fmt::format::Writer<'_>
impl Debug for tracing_subscriber::fmt::time::SystemTime
impl Debug for Uptime
impl Debug for BoxMakeWriter
impl Debug for TestWriter
impl Debug for Identity
impl Debug for Registry
impl Debug for tracing_subscriber::reload::Error
impl Debug for TryInitError
impl Debug for EnteredSpan
impl Debug for tracing::span::Span
impl Debug for utf8parse::Parser
impl Debug for EmptyError
impl Debug for BStr
impl Debug for winnow::stream::bytes::Bytes
impl Debug for winnow::stream::range::Range
impl Debug for Arguments<'_>
impl Debug for solar::data_structures::fmt::Error
impl Debug for FormattingOptions
impl Debug for __c_anonymous_sockaddr_can_can_addr
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 __c_anonymous_iwreq
impl Debug for __c_anonymous_ptp_perout_request_1
impl Debug for __c_anonymous_ptp_perout_request_2
impl Debug for __c_anonymous_xsk_tx_metadata_union
impl Debug for iwreq_data
impl Debug for tpacket_bd_header_u
impl Debug for tpacket_req_u
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl Debug for dyn Value
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for std::path::Prefix<'a>
impl<'a> Debug for AbiItem<'a>
impl<'a> Debug for BloomInput<'a>
impl<'a> Debug for TypeStem<'a>
impl<'a> Debug for Element<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for solar::ast::bumpalo::core_alloc::str::Bytes<'a>
impl<'a> Debug for solar::ast::bumpalo::core_alloc::str::CharIndices<'a>
impl<'a> Debug for solar::ast::bumpalo::core_alloc::str::EscapeDebug<'a>
impl<'a> Debug for solar::ast::bumpalo::core_alloc::str::EscapeDefault<'a>
impl<'a> Debug for solar::ast::bumpalo::core_alloc::str::EscapeUnicode<'a>
impl<'a> Debug for solar::ast::bumpalo::core_alloc::str::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for solar::ast::bumpalo::core_alloc::str::SplitAsciiWhitespace<'a>
impl<'a> Debug for solar::ast::bumpalo::core_alloc::str::SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for FileResolver<'a>
impl<'a> Debug for CursorWithPosition<'a>
impl<'a> Debug for solar::parse::Cursor<'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 BorrowedCursor<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for Items<'a>
impl<'a> Debug for ParameterSpecifier<'a>
impl<'a> Debug for Parameters<'a>
impl<'a> Debug for RootType<'a>
impl<'a> Debug for TupleSpecifier<'a>
impl<'a> Debug for TypeSpecifier<'a>
impl<'a> Debug for annotate_snippets::level::Level<'a>
impl<'a> Debug for Annotation<'a>
impl<'a> Debug for annotate_snippets::snippet::Group<'a>
impl<'a> Debug for Message<'a>
impl<'a> Debug for OptionCow<'a>
impl<'a> Debug for Origin<'a>
impl<'a> Debug for Patch<'a>
impl<'a> Debug for Title<'a>
impl<'a> Debug for IdsRef<'a>
impl<'a> Debug for Indices<'a>
impl<'a> Debug for RawValues<'a>
impl<'a> Debug for log::Metadata<'a>
impl<'a> Debug for MetadataBuilder<'a>
impl<'a> Debug for log::Record<'a>
impl<'a> Debug for RecordBuilder<'a>
impl<'a> Debug for BroadcastContext<'a>
impl<'a> Debug for rayon::string::Drain<'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 serde_json::map::Iter<'a>
impl<'a> Debug for serde_json::map::IterMut<'a>
impl<'a> Debug for serde_json::map::Keys<'a>
impl<'a> Debug for serde_json::map::Values<'a>
impl<'a> Debug for serde_json::map::ValuesMut<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for tracing_core::event::Event<'a>
impl<'a> Debug for Attributes<'a>
impl<'a> Debug for tracing_core::span::Record<'a>
impl<'a> Debug for tracing_subscriber::filter::targets::Iter<'a>
impl<'a> Debug for PrettyVisitor<'a>
impl<'a> Debug for DefaultVisitor<'a>
impl<'a> Debug for Extensions<'a>
impl<'a> Debug for ExtensionsMut<'a>
impl<'a> Debug for tracing_subscriber::registry::sharded::Data<'a>
impl<'a> Debug for Entered<'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, 'h> Debug for OneIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for TwoIter<'a, 'h>
impl<'a, 'hir> Debug for solar::sema::hir::Item<'a, 'hir>
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, 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> Debug for itertools::format::Format<'a, I>
impl<'a, I, A> Debug for solar::ast::bumpalo::core_alloc::vec::Splice<'a, I, A>
impl<'a, I, E> Debug for ProcessResults<'a, I, E>
impl<'a, I, F> Debug for TakeWhileRef<'a, I, F>
impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F>
impl<'a, K, V> Debug for dashmap::mapref::one::Ref<'a, K, V>
impl<'a, K, V> Debug for dashmap::mapref::one::RefMut<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::btree_map::Iter<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::btree_map::IterMut<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::Drain<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::Iter<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::IterMut<'a, K, V>
impl<'a, K, V, T> Debug for MappedRef<'a, K, V, T>
impl<'a, K, V, T> Debug for MappedRefMut<'a, K, V, T>
impl<'a, P> Debug for solar::ast::bumpalo::core_alloc::str::MatchIndices<'a, P>
impl<'a, P> Debug for solar::ast::bumpalo::core_alloc::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 solar::ast::bumpalo::core_alloc::str::RSplit<'a, P>
impl<'a, P> Debug for solar::ast::bumpalo::core_alloc::str::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for solar::ast::bumpalo::core_alloc::str::Split<'a, P>
impl<'a, P> Debug for solar::ast::bumpalo::core_alloc::str::SplitInclusive<'a, P>
impl<'a, P> Debug for solar::ast::bumpalo::core_alloc::str::SplitN<'a, P>
impl<'a, P> Debug for solar::ast::bumpalo::core_alloc::str::SplitTerminator<'a, P>
impl<'a, R> Debug for tracing_subscriber::registry::Scope<'a, R>where
R: Debug,
impl<'a, R> Debug for ScopeFromRoot<'a, R>where
R: LookupSpan<'a>,
impl<'a, R> Debug for SpanRef<'a, R>
impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T>
impl<'a, R, T> Debug for lock_api::mutex::MappedMutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::mutex::MutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockWriteGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockWriteGuard<'a, R, T>
impl<'a, S> Debug for AnsiGenericString<'a, S>
impl<'a, S> Debug for AnsiGenericStrings<'a, S>
impl<'a, S> Debug for tracing_subscriber::layer::context::Context<'a, S>where
S: Debug,
impl<'a, T> Debug for solar::ast::bumpalo::boxed::Box<'a, T>
impl<'a, T> Debug for solar::ast::bumpalo::core_alloc::collections::btree_set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for solar::ast::bumpalo::core_alloc::slice::Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for solar::ast::bumpalo::core_alloc::slice::ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for solar::ast::bumpalo::core_alloc::slice::ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for solar::ast::bumpalo::core_alloc::slice::ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for solar::ast::bumpalo::core_alloc::slice::RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for solar::ast::bumpalo::core_alloc::slice::RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for solar::ast::bumpalo::core_alloc::slice::RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for solar::ast::bumpalo::core_alloc::slice::RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for solar::ast::bumpalo::core_alloc::slice::Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for solar::sema::thread_local::Iter<'a, T>
impl<'a, T> Debug for solar::sema::thread_local::IterMut<'a, T>
impl<'a, T> Debug for solar::data_structures::smallvec::Drain<'a, T>
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 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 Snippet<'a, T>where
T: Debug,
impl<'a, T> Debug for ValuesRef<'a, T>where
T: Debug,
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for rayon::collections::binary_heap::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::binary_heap::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::btree_set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::hash_set::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::hash_set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::linked_list::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::linked_list::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::option::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::option::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::result::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::result::IterMut<'a, T>where
T: Debug,
impl<'a, T, A> Debug for solar::ast::bumpalo::core_alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, C> Debug for UniqueIter<'a, T, C>
impl<'a, T, C> Debug for sharded_slab::pool::Ref<'a, T, C>
impl<'a, T, C> Debug for sharded_slab::pool::RefMut<'a, T, C>
impl<'a, T, C> Debug for sharded_slab::Entry<'a, T, C>
impl<'a, T, C> Debug for sharded_slab::VacantEntry<'a, T, C>
impl<'a, T, F> Debug for PoolGuard<'a, T, F>
impl<'a, T, P> Debug for solar::ast::bumpalo::core_alloc::slice::ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for solar::ast::bumpalo::core_alloc::slice::ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, W> Debug for MutexGuardWriter<'a, W>where
W: Debug,
impl<'a, const MIN_ALIGN: usize> Debug for ChunkIter<'a, MIN_ALIGN>
impl<'a, const MIN_ALIGN: usize> Debug for ChunkRawIter<'a, MIN_ALIGN>
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'ast> Debug for solar::ast::CallArgsKind<'ast>
impl<'ast> Debug for solar::ast::ExprKind<'ast>
impl<'ast> Debug for ImportItems<'ast>
impl<'ast> Debug for IndexKind<'ast>
impl<'ast> Debug for PragmaTokens<'ast>
impl<'ast> Debug for solar::ast::StmtKind<'ast>
impl<'ast> Debug for UsingList<'ast>
impl<'ast> Debug for solar::ast::yul::ExprKind<'ast>
impl<'ast> Debug for solar::ast::yul::StmtKind<'ast>
impl<'ast> Debug for AstPath<'ast>
impl<'ast> Debug for solar::ast::Block<'ast>
impl<'ast> Debug for solar::ast::CallArgs<'ast>
impl<'ast> Debug for solar::ast::Expr<'ast>
impl<'ast> Debug for FunctionHeader<'ast>
impl<'ast> Debug for ImportDirective<'ast>
impl<'ast> Debug for solar::ast::Item<'ast>
impl<'ast> Debug for ItemContract<'ast>
impl<'ast> Debug for ItemEnum<'ast>
impl<'ast> Debug for ItemError<'ast>
impl<'ast> Debug for ItemEvent<'ast>
impl<'ast> Debug for ItemFunction<'ast>
impl<'ast> Debug for ItemStruct<'ast>
impl<'ast> Debug for ItemUdvt<'ast>
impl<'ast> Debug for Lit<'ast>
impl<'ast> Debug for solar::ast::Modifier<'ast>
impl<'ast> Debug for solar::ast::NamedArg<'ast>
impl<'ast> Debug for Override<'ast>
impl<'ast> Debug for ParameterList<'ast>
impl<'ast> Debug for PragmaDirective<'ast>
impl<'ast> Debug for SemverReq<'ast>
impl<'ast> Debug for SemverReqCon<'ast>
impl<'ast> Debug for solar::ast::Stmt<'ast>
impl<'ast> Debug for StmtAssembly<'ast>
impl<'ast> Debug for solar::ast::StmtTry<'ast>
impl<'ast> Debug for StorageLayoutSpecifier<'ast>
impl<'ast> Debug for solar::ast::TryCatchClause<'ast>
impl<'ast> Debug for solar::ast::Type<'ast>
impl<'ast> Debug for solar::ast::TypeArray<'ast>
impl<'ast> Debug for solar::ast::TypeFunction<'ast>
impl<'ast> Debug for solar::ast::TypeMapping<'ast>
impl<'ast> Debug for UsingDirective<'ast>
impl<'ast> Debug for VariableDefinition<'ast>
impl<'ast> Debug for solar::ast::yul::Block<'ast>
impl<'ast> Debug for CodeBlock<'ast>
impl<'ast> Debug for solar::ast::yul::Data<'ast>
impl<'ast> Debug for solar::ast::yul::Expr<'ast>
impl<'ast> Debug for ExprCall<'ast>
impl<'ast> Debug for solar::ast::yul::Function<'ast>
impl<'ast> Debug for Object<'ast>
impl<'ast> Debug for solar::ast::yul::Stmt<'ast>
impl<'ast> Debug for StmtFor<'ast>
impl<'ast> Debug for StmtSwitch<'ast>
impl<'ast> Debug for StmtSwitchCase<'ast>
impl<'ch> Debug for rayon::str::Bytes<'ch>
impl<'ch> Debug for rayon::str::CharIndices<'ch>
impl<'ch> Debug for rayon::str::Chars<'ch>
impl<'ch> Debug for rayon::str::EncodeUtf16<'ch>
impl<'ch> Debug for rayon::str::Lines<'ch>
impl<'ch> Debug for rayon::str::SplitAsciiWhitespace<'ch>
impl<'ch> Debug for rayon::str::SplitWhitespace<'ch>
impl<'ch, P> Debug for rayon::str::MatchIndices<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::Matches<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::Split<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::SplitInclusive<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::SplitTerminator<'ch, P>where
P: Debug + Pattern,
impl<'data, T> Debug for rayon::slice::chunks::Chunks<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksExact<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksExactMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunks<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExact<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExactMut<'data, T>
impl<'data, T> Debug for rayon::slice::rchunks::RChunksMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::Iter<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::IterMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::Windows<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::vec::Drain<'data, T>
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<'gcx> Debug for TyKind<'gcx>
impl<'gcx> Debug for Member<'gcx>
impl<'gcx> Debug for Gcx<'gcx>
impl<'gcx> Debug for InterfaceFunction<'gcx>
impl<'gcx> Debug for InterfaceFunctions<'gcx>
impl<'gcx> Debug for TyFnPtr<'gcx>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'h> Debug for Searcher<'h>
impl<'h> Debug for Input<'h>
impl<'h, 'n> Debug for 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<'hir> Debug for solar::sema::hir::CallArgsKind<'hir>
impl<'hir> Debug for solar::sema::hir::ExprKind<'hir>
impl<'hir> Debug for solar::sema::hir::StmtKind<'hir>
impl<'hir> Debug for solar::sema::hir::TypeKind<'hir>
impl<'hir> Debug for solar::sema::hir::Block<'hir>
impl<'hir> Debug for solar::sema::hir::CallArgs<'hir>
impl<'hir> Debug for Contract<'hir>
impl<'hir> Debug for Enum<'hir>
impl<'hir> Debug for solar::sema::hir::Error<'hir>
impl<'hir> Debug for solar::sema::hir::Event<'hir>
impl<'hir> Debug for solar::sema::hir::Expr<'hir>
impl<'hir> Debug for solar::sema::hir::Function<'hir>
impl<'hir> Debug for solar::sema::hir::Modifier<'hir>
impl<'hir> Debug for solar::sema::hir::NamedArg<'hir>
impl<'hir> Debug for solar::sema::hir::Stmt<'hir>
impl<'hir> Debug for solar::sema::hir::StmtTry<'hir>
impl<'hir> Debug for Struct<'hir>
impl<'hir> Debug for solar::sema::hir::TryCatchClause<'hir>
impl<'hir> Debug for solar::sema::hir::Type<'hir>
impl<'hir> Debug for solar::sema::hir::TypeArray<'hir>
impl<'hir> Debug for solar::sema::hir::TypeFunction<'hir>
impl<'hir> Debug for solar::sema::hir::TypeMapping<'hir>
impl<'hir> Debug for Udvt<'hir>
impl<'hir> Debug for Variable<'hir>
impl<'hir> Debug for solar::sema::Hir<'hir>
impl<'n> Debug for memchr::memmem::Finder<'n>
impl<'n> Debug for memchr::memmem::FinderRev<'n>
impl<'r, 'h, A> Debug for FindMatches<'r, 'h, A>where
A: Debug,
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<'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<A> Debug for solar::data_structures::smallvec::IntoIter<A>
impl<A> Debug for SmallVec<A>
impl<A> Debug for core::iter::sources::repeat::Repeat<A>where
A: Debug,
impl<A> Debug for core::iter::sources::repeat_n::RepeatN<A>where
A: Debug,
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for IterRange<A>where
A: Debug,
impl<A> Debug for IterRangeFrom<A>where
A: Debug,
impl<A> Debug for IterRangeInclusive<A>where
A: Debug,
impl<A> Debug for itertools::repeatn::RepeatN<A>where
A: Debug,
impl<A> Debug for Matcher<A>where
A: Debug,
impl<A> Debug for Pattern<A>where
A: Debug,
impl<A> Debug for ExtendedGcd<A>where
A: Debug,
impl<A> Debug for Regex<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, B> Debug for EitherOrBoth<A, B>
impl<A, B> Debug for EitherWriter<A, B>
impl<A, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for core::iter::adapters::zip::Zip<A, B>
impl<A, B> Debug for rayon::iter::chain::Chain<A, B>
impl<A, B> Debug for rayon::iter::zip::Zip<A, B>
impl<A, B> Debug for rayon::iter::zip_eq::ZipEq<A, B>
impl<A, B> Debug for OrElse<A, B>
impl<A, B> Debug for tracing_subscriber::fmt::writer::Tee<A, B>
impl<A, B, S> Debug for And<A, B, S>
impl<A, B, S> Debug for Or<A, B, S>
impl<A, B, S> Debug for Layered<A, B, S>
impl<A, S> Debug for Not<A, S>where
A: Debug,
impl<B> Debug for Cow<'_, B>
impl<B> Debug for std::io::Lines<B>where
B: Debug,
impl<B> Debug for std::io::Split<B>where
B: Debug,
impl<B> Debug for bitflags::traits::Flag<B>where
B: Debug,
impl<B> Debug for Reader<B>where
B: Debug,
impl<B> Debug for bytes::buf::writer::Writer<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>
impl<B, T> Debug for AlignAs<B, T>
impl<C> Debug for anstyle_parse::Parser<C>where
C: Debug,
impl<C> Debug for ContextError<C>where
C: Debug,
impl<D, S> Debug for rayon::iter::splitter::Split<D, S>where
D: Debug,
impl<D, V> Debug for Delimited<D, V>
impl<D, V> Debug for VisitDelimited<D, V>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for AllocOrInitError<E>where
E: Debug,
impl<E> Debug for ErrMode<E>where
E: Debug,
impl<E> Debug for 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 FormattedFields<E>where
E: ?Sized,
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for PollFn<F>
impl<F> Debug for core::iter::sources::from_fn::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for RepeatWith<F>
impl<F> Debug for clap_builder::error::Error<F>where
F: ErrorFormatter,
impl<F> Debug for RepeatCall<F>
impl<F> Debug for FilterFn<F>
impl<F> Debug for FieldFn<F>where
F: Debug,
impl<F> Debug for FieldFnVisitor<'_, F>
impl<F> Debug for solar::data_structures::fmt::FromFn<F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<F, L, S> Debug for Filtered<F, L, S>
impl<F, T> Debug for tracing_subscriber::fmt::format::Format<F, T>
impl<G> Debug for DiagBuilder<'_, G>where
G: EmissionGuarantee,
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<H, T> Debug for RawThinSlice<H, T>where
T: Debug,
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for core::iter::adapters::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::copied::Copied<I>where
I: Debug,
impl<I> Debug for Cycle<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for Fuse<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::intersperse::Intersperse<I>
impl<I> Debug for Peekable<I>
impl<I> Debug for core::iter::adapters::skip::Skip<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<I> Debug for MultiProduct<I>
impl<I> Debug for PutBack<I>
impl<I> Debug for Step<I>where
I: Debug,
impl<I> Debug for itertools::adaptors::WhileSome<I>where
I: Debug,
impl<I> Debug for Combinations<I>
impl<I> Debug for CombinationsWithReplacement<I>
impl<I> Debug for ExactlyOneError<I>
impl<I> Debug for GroupingMap<I>where
I: Debug,
impl<I> Debug for MultiPeek<I>
impl<I> Debug for PeekNth<I>
impl<I> Debug for Permutations<I>
impl<I> Debug for Powerset<I>
impl<I> Debug for PutBackN<I>
impl<I> Debug for RcIter<I>where
I: Debug,
impl<I> Debug for itertools::tee::Tee<I>
impl<I> Debug for Unique<I>
impl<I> Debug for ExponentialBlocks<I>where
I: Debug,
impl<I> Debug for UniformBlocks<I>where
I: Debug,
impl<I> Debug for rayon::iter::chunks::Chunks<I>where
I: Debug,
impl<I> Debug for rayon::iter::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for rayon::iter::copied::Copied<I>where
I: Debug,
impl<I> Debug for rayon::iter::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for rayon::iter::flatten::Flatten<I>where
I: Debug,
impl<I> Debug for FlattenIter<I>where
I: Debug,
impl<I> Debug for rayon::iter::intersperse::Intersperse<I>
impl<I> Debug for MaxLen<I>where
I: Debug,
impl<I> Debug for MinLen<I>where
I: Debug,
impl<I> Debug for PanicFuse<I>where
I: Debug,
impl<I> Debug for rayon::iter::rev::Rev<I>where
I: Debug,
impl<I> Debug for rayon::iter::skip::Skip<I>where
I: Debug,
impl<I> Debug for SkipAny<I>where
I: Debug,
impl<I> Debug for rayon::iter::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for rayon::iter::take::Take<I>where
I: Debug,
impl<I> Debug for TakeAny<I>where
I: Debug,
impl<I> Debug for rayon::iter::while_some::WhileSome<I>where
I: Debug,
impl<I> Debug for InputError<I>
impl<I> Debug for TreeErrorBase<I>where
I: Debug,
impl<I> Debug for LocatingSlice<I>where
I: Debug,
impl<I> Debug for Partial<I>where
I: Debug,
impl<I, C> Debug for TreeError<I, C>
impl<I, C> Debug for TreeErrorFrame<I, C>
impl<I, C> Debug for TreeErrorContext<I, C>
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, E> Debug for winnow::error::ParseError<I, E>
impl<I, ElemF> Debug for itertools::intersperse::IntersperseWith<I, ElemF>
impl<I, F> Debug for core::iter::adapters::filter_map::FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::inspect::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::map::Map<I, F>where
I: Debug,
impl<I, F> Debug for Batching<I, F>where
I: Debug,
impl<I, F> Debug for FilterMapOk<I, F>where
I: Debug,
impl<I, F> Debug for FilterOk<I, F>where
I: Debug,
impl<I, F> Debug for itertools::adaptors::Positions<I, F>where
I: Debug,
impl<I, F> Debug for itertools::adaptors::Update<I, F>where
I: Debug,
impl<I, F> Debug for KMergeBy<I, F>
impl<I, F> Debug for PadUsing<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::flat_map::FlatMap<I, F>where
I: Debug,
impl<I, F> Debug for FlatMapIter<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::inspect::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::map::Map<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::update::Update<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for core::iter::adapters::intersperse::IntersperseWith<I, G>
impl<I, ID, F> Debug for Fold<I, ID, F>where
I: Debug,
impl<I, ID, F> Debug for FoldChunks<I, ID, F>where
I: Debug,
impl<I, INIT, F> Debug for MapInit<I, INIT, F>where
I: Debug,
impl<I, J> Debug for itertools::adaptors::Interleave<I, J>
impl<I, J> Debug for itertools::adaptors::InterleaveShortest<I, J>
impl<I, J> Debug for Product<I, J>
impl<I, J> Debug for ConsTuples<I, J>
impl<I, J> Debug for itertools::zip_eq_impl::ZipEq<I, J>
impl<I, J> Debug for rayon::iter::interleave::Interleave<I, J>
impl<I, J> Debug for rayon::iter::interleave_shortest::InterleaveShortest<I, J>
impl<I, J, F> Debug for MergeBy<I, J, F>
impl<I, J, F> Debug for MergeJoinBy<I, J, F>
impl<I, K, V, S> Debug for indexmap::map::iter::Splice<'_, I, K, V, S>
impl<I, P> Debug for core::iter::adapters::filter::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, P> Debug for rayon::iter::filter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for rayon::iter::filter_map::FilterMap<I, P>where
I: Debug,
impl<I, P> Debug for rayon::iter::positions::Positions<I, P>where
I: Debug,
impl<I, P> Debug for SkipAnyWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeAnyWhile<I, P>where
I: Debug,
impl<I, S> Debug for Stateful<I, S>
impl<I, St, F> Debug for Scan<I, St, F>
impl<I, T> Debug for IndexSlice<I, T>
impl<I, T> Debug for IndexVec<I, T>
impl<I, T> Debug for TupleCombinations<I, T>
impl<I, T> Debug for CircularTupleWindows<I, T>
impl<I, T> Debug for TupleWindows<I, T>
impl<I, T> Debug for Tuples<I, T>where
I: Debug + Iterator<Item = <T as TupleCollect>::Item>,
T: Debug + HomogeneousTuple,
<T as TupleCollect>::Buffer: Debug,
impl<I, T, E> Debug for FlattenOk<I, T, E>where
I: Iterator<Item = Result<T, E>> + Debug,
T: IntoIterator,
<T as IntoIterator>::IntoIter: Debug,
impl<I, T, F> Debug for MapWith<I, T, F>
impl<I, T, S> Debug for indexmap::set::iter::Splice<'_, I, T, S>
impl<I, U> Debug for core::iter::adapters::flatten::Flatten<I>
impl<I, U, F> Debug for core::iter::adapters::flatten::FlatMap<I, U, F>
impl<I, U, F> Debug for FoldWith<I, U, F>
impl<I, U, F> Debug for FoldChunksWith<I, U, F>
impl<I, U, F> Debug for TryFoldWith<I, U, F>
impl<I, V, F> Debug for UniqueBy<I, V, F>
impl<I, const N: usize> Debug for ArrayChunks<I, N>
impl<Idx> Debug for core::ops::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<Iter> Debug for IterBridge<Iter>where
Iter: Debug,
impl<K> Debug for solar::ast::bumpalo::core_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> Debug for hashbrown::set::Iter<'_, K>where
K: Debug,
impl<K> Debug for hashbrown::set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, A> Debug for hashbrown::set::Drain<'_, K, A>where
K: Debug,
A: Allocator,
impl<K, A> Debug for hashbrown::set::Drain<'_, K, A>where
K: Debug,
A: Allocator,
impl<K, A> Debug for hashbrown::set::IntoIter<K, A>where
K: Debug,
A: Allocator,
impl<K, A> Debug for hashbrown::set::IntoIter<K, A>where
K: Debug,
A: Allocator,
impl<K, F> Debug for std::collections::hash::set::ExtractIf<'_, K, F>where
K: Debug,
impl<K, Q, V, S, A> Debug for hashbrown::map::EntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for hashbrown::map::EntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for OccupiedEntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for hashbrown::map::VacantEntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for hashbrown::map::VacantEntryRef<'_, '_, K, Q, V, S, A>
impl<K, S> Debug for DashSet<K, S>
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::entry::Entry<'_, K, V>
impl<K, V> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::Cursor<'_, K, V>
impl<K, V> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::Iter<'_, K, V>
impl<K, V> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::IterMut<'_, K, V>
impl<K, V> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for solar::ast::bumpalo::core_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> Debug for hashbrown::map::Iter<'_, K, V>
impl<K, V> Debug for hashbrown::map::Iter<'_, K, V>
impl<K, V> Debug for hashbrown::map::IterMut<'_, K, V>
impl<K, V> Debug for hashbrown::map::IterMut<'_, K, V>
impl<K, V> Debug for hashbrown::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for hashbrown::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for hashbrown::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashbrown::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashbrown::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashbrown::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for IndexedEntry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::entry::OccupiedEntry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::entry::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::Drain<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::IntoIter<K, V>
impl<K, V> Debug for indexmap::map::iter::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::iter::Iter<'_, K, V>
impl<K, V> Debug for IterMut2<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::IterMut<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::iter::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::slice::Slice<K, V>
impl<K, V> Debug for rayon::collections::btree_map::IntoIter<K, V>
impl<K, V> Debug for rayon::collections::hash_map::IntoIter<K, V>
impl<K, V, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::Entry<'_, K, V, A>
impl<K, V, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::IntoIter<K, V, A>
impl<K, V, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::IntoKeys<K, V, A>
impl<K, V, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::IntoValues<K, V, A>
impl<K, V, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for hashbrown::map::Drain<'_, K, V, A>
impl<K, V, A> Debug for hashbrown::map::Drain<'_, K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoIter<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoIter<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoValues<K, V, A>where
V: Debug,
A: Allocator,
impl<K, V, A> Debug for hashbrown::map::IntoValues<K, V, A>where
V: Debug,
A: Allocator,
impl<K, V, F> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F>
impl<K, V, F> Debug for indexmap::map::iter::ExtractIf<'_, K, V, F>
impl<K, V, R, F, A> Debug for solar::ast::bumpalo::core_alloc::collections::btree_map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S> Debug for indexmap::map::core::raw_entry_v1::RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::HashMap<K, V, S>
impl<K, V, S> Debug for dashmap::read_only::ReadOnlyView<K, V, S>
impl<K, V, S> Debug for DashMap<K, V, S>
impl<K, V, S> Debug for indexmap::map::core::raw_entry_v1::RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for indexmap::map::core::raw_entry_v1::RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for indexmap::map::core::raw_entry_v1::RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for indexmap::map::core::raw_entry_v1::RawVacantEntryMut<'_, K, V, S>
impl<K, V, S> Debug for IndexMap<K, V, S>
impl<K, V, S> Debug for once_map::sync::LazyMap<K, V, S>
impl<K, V, S> Debug for once_map::sync::OnceMap<K, V, S>
impl<K, V, S> Debug for once_map::sync::ReadOnlyView<'_, K, V, S>
impl<K, V, S> Debug for once_map::unsync::LazyMap<K, V, S>
impl<K, V, S> Debug for once_map::unsync::OnceMap<K, V, S>
impl<K, V, S> Debug for once_map::unsync::ReadOnlyView<'_, K, V, S>
impl<K, V, S, A> Debug for hashbrown::map::Entry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::Entry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::RawEntryMut<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::HashMap<K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::HashMap<K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedEntry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedEntry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedError<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedError<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::RawEntryBuilder<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for hashbrown::map::RawEntryBuilderMut<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for hashbrown::map::RawOccupiedEntryMut<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::RawVacantEntryMut<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for hashbrown::map::VacantEntry<'_, K, V, S, A>where
K: Debug,
A: Allocator,
impl<K, V, S, A> Debug for hashbrown::map::VacantEntry<'_, K, V, S, A>where
K: Debug,
A: Allocator,
impl<L, R> Debug for Either<L, R>
impl<L, R> Debug for IterEither<L, R>
impl<L, S> Debug for Handle<L, S>
impl<L, S> Debug for tracing_subscriber::reload::Layer<L, S>
impl<M> Debug for WithMaxLevel<M>where
M: Debug,
impl<M> Debug for WithMinLevel<M>where
M: Debug,
impl<M, F> Debug for WithFilter<M, F>
impl<N, E, F, W> Debug for Subscriber<N, E, F, W>
impl<N, E, F, W> Debug for SubscriberBuilder<N, E, F, W>
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 TryResult<R>where
R: Debug,
impl<R> Debug for BufReader<R>
impl<R> Debug for std::io::Bytes<R>where
R: Debug,
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, T> Debug for lock_api::mutex::Mutex<R, T>
impl<R, T> Debug for lock_api::rwlock::RwLock<R, T>
impl<S> Debug for AutoStream<S>
impl<S> Debug for StripStream<S>
impl<S> Debug for ThreadPoolBuilder<S>
impl<S, B> Debug for WalkTree<S, B>
impl<S, B> Debug for WalkTreePostfix<S, B>
impl<S, B> Debug for WalkTreePrefix<S, B>
impl<S, F, R> Debug for DynFilterFn<S, F, R>
impl<S, N> Debug for FmtContext<'_, S, N>
impl<S, N, E, W> Debug for tracing_subscriber::fmt::fmt_layer::Layer<S, N, E, W>
impl<St, F> Debug for Iterate<St, F>where
St: Debug,
impl<St, F> Debug for Unfold<St, F>where
St: Debug,
impl<T> Debug for SpannedOption<T>where
T: Debug,
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for TrySendError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for Resettable<T>where
T: Debug,
impl<T> Debug for Steal<T>
impl<T> Debug for FoldWhile<T>where
T: Debug,
impl<T> Debug for MinMaxResult<T>where
T: Debug,
impl<T> Debug for itertools::with_position::Position<T>where
T: Debug,
impl<T> Debug for FromUintError<T>where
T: Debug,
impl<T> Debug for ToUintError<T>where
T: Debug,
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.