pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}Expand description
? formatting.
Debug should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive a Debug implementation.
When used with the alternate format specifier #?, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive] if all fields implement Debug. When
derived for structs, it will use the name of the struct, then {, then a
comma-separated list of each field’s name and Debug value, then }. For
enums, it will use the name of the variant and, if applicable, (, then the
Debug values of the fields, then ).
§Stability
Derived Debug formats are not stable, and so may change with future Rust
versions. Additionally, Debug implementations of types provided by the
standard library (std, core, alloc, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);There are a number of helper methods on the Formatter struct to help you with manual
implementations, such as debug_struct.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter trait (debug_struct, debug_tuple,
debug_list, debug_set, debug_map) can do something totally custom by
manually writing an arbitrary representation to the Formatter.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}Debug implementations using either derive or the debug builder API
on Formatter support pretty-printing using the alternate flag: {:#?}.
Pretty-printing with #?:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err if, and only if, the provided Formatter returns Err.
String formatting is considered an infallible operation; this function only
returns a Result because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl Debug for PathResolveContext
impl Debug for PathResolveMethod
impl Debug for ShapelibConfig1
impl Debug for otter_support::imports::BigEndian
impl Debug for otter_support::imports::ErrorKind
impl Debug for otter_support::imports::IpAddr
impl Debug for otter_support::imports::LittleEndian
impl Debug for otter_support::imports::Ordering
impl Debug for otter_support::imports::SocketAddr
impl Debug for VarError
impl Debug for otter_support::imports::fs::TryLockError
impl Debug for SeekFrom
impl Debug for FchownatFlags
impl Debug for ForkResult
impl Debug for LinkatFlags
impl Debug for PathconfVar
impl Debug for SysconfVar
impl Debug for UnlinkatFlags
impl Debug for Whence
impl Debug for AncillaryError
impl Debug for PacketFrameReadError
impl Debug for PacketFrameWriteError
impl Debug for otter_support::progress::Value
impl Debug for otter_support::slotmap_slot_idx::Error
impl Debug for otter_support::toml_de::Error
impl Debug for Void
impl Debug for otter_support::prelude::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for Sign
impl Debug for DecodeErrKind
impl Debug for TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for CharCase
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for Locality
impl Debug for AtomicOrdering
impl Debug for SimdAlign
impl Debug for Ipv6MulticastScope
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for core::slice::GetDisjointMutError
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for std::net::Shutdown
impl Debug for BacktraceStyle
impl Debug for std::sync::mpsc::RecvTimeoutError
impl Debug for std::sync::mpsc::TryRecvError
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 Stream
impl Debug for Tz
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 chrono::month::Month
impl Debug for RoundingError
impl Debug for chrono::weekday::Weekday
impl Debug for Key
impl Debug for TermFamily
impl Debug for TermTarget
impl Debug for console::utils::Alignment
impl Debug for Attribute
impl Debug for Color
impl Debug for TruncSide
impl Debug for FlexiLoggerError
impl Debug for Duplicate
impl Debug for ErrorChannel
impl Debug for Age
impl Debug for Cleanup
impl Debug for Criterion
impl Debug for Naming
impl Debug for WriteMode
impl Debug for GetTimezoneError
impl Debug for DIR
impl Debug for FILE
impl Debug for timezone
impl Debug for tpacket_versions
impl Debug for Level
impl Debug for LevelFilter
impl Debug for PrefilterConfig
impl Debug for nix::dir::Type
impl Debug for Errno
impl Debug for FlockArg
impl Debug for PosixFadviseAdvice
impl Debug for AioCancelStat
impl Debug for AioFsyncMode
impl Debug for LioMode
impl Debug for LioOpcode
impl Debug for EpollOp
impl Debug for MmapAdvise
impl Debug for nix::sys::ptrace::linux::Event
impl Debug for nix::sys::ptrace::linux::Request
impl Debug for QuotaFmt
impl Debug for QuotaType
impl Debug for RebootMode
impl Debug for Resource
impl Debug for SigHandler
impl Debug for SigevNotify
impl Debug for SigmaskHow
impl Debug for Signal
impl Debug for AddressFamily
impl Debug for InetAddr
impl Debug for nix::sys::socket::addr::IpAddr
impl Debug for SockAddr
impl Debug for ControlMessageOwned
impl Debug for nix::sys::socket::Shutdown
impl Debug for SockProtocol
impl Debug for nix::sys::socket::SockType
impl Debug for FchmodatFlags
impl Debug for UtimensatFlags
impl Debug for BaudRate
impl Debug for FlowArg
impl Debug for FlushArg
impl Debug for SetArg
impl Debug for SpecialCharacterIndices
impl Debug for Expiration
impl Debug for nix::sys::timerfd::ClockId
impl Debug for Id
impl Debug for WaitStatus
impl Debug for DebouncedEvent
impl Debug for notify::Error
impl Debug for RecursiveMode
impl Debug for FloatErrorKind
impl Debug for LogicError
impl Debug for RangeImpossible
impl Debug for parking_lot::once::OnceState
impl Debug for FilterOp
impl Debug for ParkResult
impl Debug for RequeueOp
impl Debug for PwdError
impl Debug for BernoulliError
impl Debug for WeightedError
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
impl Debug for StartError
impl Debug for WhichCaptures
impl Debug for 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 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 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 BytesMode
impl Debug for rmp_serde::decode::Error
impl Debug for rmp_serde::encode::Error
impl Debug for BytesReadError
impl Debug for LenError
impl Debug for Marker
impl Debug for Always
impl Debug for slab::GetDisjointMutError
impl Debug for CollectionAllocErr
impl Debug for strum::ParseError
impl Debug for time::error::Error
impl Debug for time::error::format::Format
impl Debug for InvalidFormatDescription
impl Debug for Parse
impl Debug for ParseFromDescription
impl Debug for TryFromParsed
impl Debug for time::format_description::component::Component
impl Debug for FormatItem<'_>
alloc only.impl Debug for MonthRepr
impl Debug for Padding
impl Debug for SubsecondDigits
impl Debug for WeekNumberRepr
impl Debug for WeekdayRepr
impl Debug for YearRepr
impl Debug for time::month::Month
impl Debug for time::weekday::Weekday
impl Debug for toml::ser::Error
impl Debug for toml::value::Value
impl Debug for zerocopy::byteorder::BigEndian
impl Debug for zerocopy::byteorder::LittleEndian
impl Debug for Abi
impl Debug for Generic
impl Debug for TypeKind
impl Debug for otter_support::prelude::serde_json::Value
impl Debug for Category
impl Debug for SearchStep
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 AuthorisationError
impl Debug for otter_support::authproofs::Global
impl Debug for ServerConfig
impl Debug for ServerConfigSpec
impl Debug for ShapelibExplicit1
impl Debug for WholeServerConfig
impl Debug for FakeRngSpec
impl Debug for RngIsReal
impl Debug for RngWrap
impl Debug for FakeTimeConfig
impl Debug for FakeTimeSpec
impl Debug for GlobalClock
impl Debug for InvalidFakeTime
impl Debug for TimeIsReal
impl Debug for UnorderedKeyError
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 otter_support::imports::fs::Dir
impl Debug for DirBuilder
impl Debug for otter_support::imports::fs::DirEntry
impl Debug for FileTimes
impl Debug for FileType
impl Debug for otter_support::imports::fs::Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for DefaultHasher
impl Debug for RandomState
impl Debug for BorrowedBuf<'_>
impl Debug for otter_support::imports::io::Empty
impl Debug for otter_support::imports::io::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for otter_support::imports::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 Alphanumeric
impl Debug for Child
impl Debug for Command
impl Debug for otter_support::imports::Duration
impl Debug for File
impl Debug for otter_support::imports::Instant
impl Debug for otter_support::imports::Ipv4Addr
impl Debug for otter_support::imports::Ipv6Addr
impl Debug for LogSpecification
impl Debug for Stdio
impl Debug for TimeSpec
impl Debug for Uid
impl Debug for UnixStream
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for TryFromFloatSecsError
impl Debug for AccessFlags
impl Debug for Gid
impl Debug for otter_support::imports::unistd::Group
impl Debug for Pid
impl Debug for ResGid
impl Debug for ResUid
impl Debug for User
impl Debug for BorrowedFd<'_>
impl Debug for OwnedFd
impl Debug for otter_support::imports::unix::net::SocketAddr
impl Debug for UCred
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for Broken
impl Debug for SenderError
impl Debug for Timestamp
impl Debug for TimedFdRead
impl Debug for TimedFdWrite
impl Debug for Timezone
impl Debug for Arguments<'_>
impl Debug for otter_support::prelude::fmt::Error
impl Debug for FormattingOptions
impl Debug for DecodeErr
impl Debug for alloc::alloc::Global
impl Debug for ByteString
impl Debug for TryReserveError
impl Debug for CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for String
impl Debug for Layout
impl Debug for LayoutError
impl Debug for core::alloc::AllocError
impl Debug for TypeId
impl Debug for TryFromSliceError
impl Debug for core::ascii::EscapeDefault
impl Debug for ByteStr
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for ParseCharError
impl Debug for DecodeUtf16Error
impl Debug for core::char::EscapeDebug
impl Debug for core::char::EscapeDefault
impl Debug for core::char::EscapeUnicode
impl Debug for ToLowercase
impl Debug for ToTitlecase
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 VaList<'_>
impl Debug for core::hash::sip::SipHasher
impl Debug for Last
impl Debug for PhantomPinned
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for ParseIntError
impl Debug for core::num::float_parse::ParseFloatError
impl Debug for RangeFull
impl Debug for Location<'_>
impl Debug for PanicMessage<'_>
impl Debug for Atomic<bool>
target_has_atomic_load_store=8 only.impl Debug for Atomic<i8>
impl Debug for Atomic<i16>
impl Debug for Atomic<i32>
impl Debug for Atomic<i64>
impl Debug for Atomic<isize>
impl Debug for Atomic<u8>
impl Debug for Atomic<u16>
impl Debug for Atomic<u32>
impl Debug for Atomic<u64>
impl Debug for Atomic<usize>
impl Debug for Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for core::task::wake::Waker
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for OsStr
impl Debug for OsString
impl Debug for IntoIncoming
impl Debug for std::net::tcp::TcpListener
impl Debug for std::net::tcp::TcpStream
impl Debug for std::net::udp::UdpSocket
impl Debug for PidFd
impl Debug for Components<'_>
impl Debug for std::path::Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for NormalizeError
impl Debug for Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
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::once::Once
impl Debug for std::sync::once::OnceState
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for std::sync::WaitTimeoutResult
impl Debug for CommandResolvedEnvs
impl Debug for std::thread::builder::Builder
impl Debug for ThreadId
impl Debug for AccessError
impl Debug for Scope<'_, '_>
impl Debug for Thread
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 anyhow::Error
impl Debug for Eager
impl Debug for block_buffer::Error
impl Debug for block_buffer::Lazy
impl Debug for chrono::format::parsed::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 WeekdaySet
Print the underlying bitmask, padded to 7 bits.
§Example
use chrono::Weekday::*;
assert_eq!(format!("{:?}", WeekdaySet::single(Mon)), "WeekdaySet(0000001)");
assert_eq!(format!("{:?}", WeekdaySet::single(Tue)), "WeekdaySet(0000010)");
assert_eq!(format!("{:?}", WeekdaySet::ALL), "WeekdaySet(1111111)");impl Debug for Term
impl Debug for console::utils::Style
impl Debug for InvalidLength
impl Debug for InvalidBufferSize
impl Debug for InvalidOutputSize
impl Debug for FileTime
impl Debug for DeferredNow
impl Debug for FileSpec
impl Debug for LogSpecBuilder
impl Debug for ModuleFilter
impl Debug for FileLogWriterConfig
impl Debug for FileLogWriter
impl Debug for FsStats
impl Debug for getrandom::error::Error
impl Debug for GlobError
impl Debug for MatchOptions
impl Debug for Paths
impl Debug for Pattern
impl Debug for PatternError
impl Debug for inotify_sys::inotify_event
impl Debug for EventMask
impl Debug for inotify::watches::WatchDescriptor
impl Debug for WatchMask
impl Debug for rtentry
impl Debug for bcm_msg_head
impl Debug for bcm_timeval
impl Debug for j1939_filter
impl Debug for can_berr_counter
impl Debug for can_bittiming
impl Debug for can_bittiming_const
impl Debug for can_clock
impl Debug for can_ctrlmode
impl Debug for can_device_stats
impl Debug for __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 nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for sockaddr_nl
impl Debug for pidfd_info
impl Debug for termios2
impl Debug for msqid_ds
impl Debug for semid_ds
impl Debug for sigset_t
impl Debug for sysinfo
impl Debug for timex
impl Debug for statvfs
impl Debug for _libc_fpstate
impl Debug for _libc_fpxreg
impl Debug for _libc_xmmreg
impl Debug for clone_args
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 pthread_attr_t
impl Debug for ptrace_rseq_configuration
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 stat
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_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 ethhdr
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 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 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 __c_anonymous__kernel_fsid_t
impl Debug for af_alg_iv
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 file_handle
impl Debug for genlmsghdr
impl Debug for hwtstamp_config
impl Debug for ifinfomsg
impl Debug for in6_ifreq
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 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 mount_attr
impl Debug for mq_attr
impl Debug for msginfo
impl Debug for open_how
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 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 signalfd_siginfo
impl Debug for sock_extended_err
impl Debug for sock_txtime
impl Debug for sockaddr_alg
impl Debug for sockaddr_pkt
impl Debug for sockaddr_vm
impl Debug for sockaddr_xdp
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 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 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_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 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 fsid_t
impl Debug for glob_t
impl Debug for ifconf
impl Debug for ifreq
impl Debug for in6_pktinfo
impl Debug for itimerspec
impl Debug for mntent
impl Debug for option
impl Debug for packet_mreq
impl Debug for passwd
impl Debug for regmatch_t
impl Debug for rlimit64
impl Debug for sembuf
impl Debug for spwd
impl Debug for ucred
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 if_nameindex
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 ParseLevelError
impl Debug for SetLoggerError
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 Timeout
impl Debug for mio::event::event::Event
When the alternate flag is enabled this will print platform specific
details, for example the fields of the kevent structure on platforms that
use kqueue(2). Note however that the output of this implementation is
not consider a part of the stable API.
impl Debug for mio::event::events::Events
impl Debug for mio::event_imp::Event
impl Debug for PollOpt
impl Debug for mio::event_imp::Ready
impl Debug for Interest
impl Debug for mio::net::tcp::TcpListener
impl Debug for mio::net::tcp::TcpStream
impl Debug for mio::net::udp::UdpSocket
impl Debug for mio::poll::Events
impl Debug for mio::poll::Poll
impl Debug for mio::poll::Poll
impl Debug for Registration
impl Debug for Registry
impl Debug for SetReadiness
impl Debug for mio::sys::unix::pipe::Receiver
impl Debug for mio::sys::unix::pipe::Sender
impl Debug for UnixReady
impl Debug for mio::token::Token
impl Debug for mio::token::Token
impl Debug for mio::waker::Waker
impl Debug for TcpBuilder
impl Debug for UdpBuilder
impl Debug for nix::dir::Dir
impl Debug for nix::dir::Entry
impl Debug for OwningIter
impl Debug for ClearEnvError
impl Debug for AtFlags
impl Debug for FallocateFlags
impl Debug for nix::fcntl::FdFlag
impl Debug for OFlag
impl Debug for RenameFlags
impl Debug for SealFlag
impl Debug for SpliceFFlags
impl Debug for InterfaceAddress
impl Debug for InterfaceAddressIterator
impl Debug for DeleteModuleFlags
impl Debug for ModuleInitFlags
impl Debug for MntFlags
impl Debug for nix::mount::linux::MsFlags
impl Debug for nix::mqueue::FdFlag
impl Debug for MQ_OFlag
impl Debug for MqAttr
impl Debug for MqdT
impl Debug for Interface
impl Debug for Interfaces
impl Debug for InterfaceFlags
impl Debug for PollFd
impl Debug for PollFlags
impl Debug for ForkptyResult
impl Debug for OpenptyResult
impl Debug for PtyMaster
impl Debug for CpuSet
impl Debug for CloneFlags
impl Debug for EpollCreateFlags
impl Debug for EpollEvent
impl Debug for EpollFlags
impl Debug for EfdFlags
impl Debug for AddWatchFlags
impl Debug for InitFlags
impl Debug for Inotify
impl Debug for InotifyEvent
impl Debug for nix::sys::inotify::WatchDescriptor
impl Debug for MemFdCreateFlag
impl Debug for MRemapFlags
impl Debug for MapFlags
impl Debug for MlockAllFlags
impl Debug for nix::sys::mman::MsFlags
impl Debug for ProtFlags
impl Debug for Persona
impl Debug for Options
impl Debug for Dqblk
impl Debug for QuotaValidFlags
impl Debug for FdSet
impl Debug for SigEvent
impl Debug for SaFlags
impl Debug for SigAction
impl Debug for SigSet
impl Debug for SignalIterator
impl Debug for SfdFlags
impl Debug for SignalFd
impl Debug for AlgAddr
impl Debug for LinkAddr
impl Debug for NetlinkAddr
impl Debug for nix::sys::socket::addr::Ipv4Addr
impl Debug for nix::sys::socket::addr::Ipv6Addr
impl Debug for SockaddrIn6
impl Debug for SockaddrIn
impl Debug for UnixAddr
impl Debug for VsockAddr
impl Debug for AcceptConn
impl Debug for AlgSetAeadAuthSize
impl Debug for BindToDevice
impl Debug for Broadcast
impl Debug for Ip6tOriginalDst
impl Debug for IpAddMembership
impl Debug for IpDropMembership
impl Debug for IpFreebind
impl Debug for IpMulticastLoop
impl Debug for IpMulticastTtl
impl Debug for IpTransparent
impl Debug for Ipv4PacketInfo
impl Debug for Ipv4RecvErr
impl Debug for Ipv4Ttl
impl Debug for Ipv6AddMembership
impl Debug for Ipv6DontFrag
impl Debug for Ipv6DropMembership
impl Debug for Ipv6RecvErr
impl Debug for Ipv6RecvPacketInfo
impl Debug for Ipv6Ttl
impl Debug for Ipv6V6Only
impl Debug for KeepAlive
impl Debug for Linger
impl Debug for Mark
impl Debug for OobInline
impl Debug for OriginalDst
impl Debug for PassCred
impl Debug for PeerCredentials
impl Debug for RcvBuf
impl Debug for RcvBufForce
impl Debug for ReceiveTimeout
impl Debug for ReceiveTimestamp
impl Debug for ReceiveTimestampns
impl Debug for ReuseAddr
impl Debug for ReusePort
impl Debug for RxqOvfl
impl Debug for SendTimeout
impl Debug for SndBuf
impl Debug for SndBufForce
impl Debug for nix::sys::socket::sockopt::SockType
impl Debug for SocketError
impl Debug for TcpCongestion
impl Debug for TcpKeepCount
impl Debug for TcpKeepIdle
impl Debug for TcpKeepInterval
impl Debug for TcpMaxSeg
impl Debug for TcpNoDelay
impl Debug for TcpRepair
impl Debug for TcpUserTimeout
impl Debug for Timestamping
impl Debug for TxTime
impl Debug for UdpGroSegment
impl Debug for UdpGsoSegment
impl Debug for IpMembershipRequest
impl Debug for Ipv6MembershipRequest
impl Debug for MsgFlags
impl Debug for SockFlag
impl Debug for TimestampingFlag
impl Debug for Timestamps
impl Debug for UnixCredentials
impl Debug for Mode
impl Debug for SFlag
impl Debug for FsType
impl Debug for Statfs
impl Debug for FsFlags
impl Debug for Statvfs
impl Debug for SysInfo
impl Debug for ControlFlags
impl Debug for InputFlags
impl Debug for LocalFlags
impl Debug for OutputFlags
impl Debug for Termios
impl Debug for TimeVal
impl Debug for TimerSetTimeFlags
impl Debug for Timer
impl Debug for TimerFd
impl Debug for TimerFlags
impl Debug for RemoteIoVec
impl Debug for UtsName
impl Debug for WaitPidFlag
impl Debug for nix::time::ClockId
impl Debug for UContext
impl Debug for Op
impl Debug for RawEvent
impl Debug for num_traits::ParseFloatError
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for PosCFromIteratorError
impl Debug for AddSubRangeDelta
impl Debug for Decrement
impl Debug for Increment
impl Debug for LimbVal
impl Debug for Mutable
impl Debug for MutateFirst
impl Debug for MutateLast
impl Debug for Overflow
impl Debug for otter_base::zcoord::ParseError
impl Debug for TotallyUnboundedRange
impl Debug for ZCoord
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 Passwd
impl Debug for Bernoulli
impl Debug for Open01
impl Debug for OpenClosed01
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 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 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 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::regex::string::Regex
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 DefaultConfig
impl Debug for ExtMeta
impl Debug for ByteBuf
impl Debug for Handle
impl Debug for EnumMap
impl Debug for Flexible
impl Debug for Lowercase
impl Debug for Padded
impl Debug for PreferMany
impl Debug for PreferOne
impl Debug for Strict
impl Debug for Unpadded
impl Debug for Uppercase
impl Debug for BorrowCow
impl Debug for serde_with::Bytes
impl Debug for BytesOrString
impl Debug for CommaSeparator
impl Debug for DisplayFromStr
impl Debug for NoneAsEmptyString
impl Debug for Same
impl Debug for SpaceSeparator
impl Debug for Sha256VarCore
impl Debug for Sha512VarCore
impl Debug for Hash128
impl Debug for siphasher::sip128::SipHasher13
impl Debug for siphasher::sip128::SipHasher24
impl Debug for siphasher::sip128::SipHasher
impl Debug for siphasher::sip::SipHasher13
impl Debug for siphasher::sip::SipHasher24
impl Debug for siphasher::sip::SipHasher
impl Debug for DefaultKey
impl Debug for KeyData
impl Debug for time::date::Date
impl Debug for time::duration::Duration
impl Debug for ComponentRange
impl Debug for ConversionRange
impl Debug for DifferentVariant
impl Debug for IndeterminateOffset
impl Debug for InvalidVariant
impl Debug for Day
impl Debug for Hour
impl Debug for Minute
impl Debug for time::format_description::modifier::Month
impl Debug for OffsetHour
impl Debug for OffsetMinute
impl Debug for OffsetSecond
impl Debug for Ordinal
impl Debug for Period
impl Debug for Second
impl Debug for Subsecond
impl Debug for WeekNumber
impl Debug for time::format_description::modifier::Weekday
impl Debug for Year
impl Debug for Rfc2822
impl Debug for Rfc3339
impl Debug for time::instant::Instant
impl Debug for OffsetDateTime
impl Debug for time::parsing::parsed::Parsed
impl Debug for PrimitiveDateTime
impl Debug for Time
impl Debug for UtcOffset
impl Debug for Datetime
impl Debug for DatetimeParseError
impl Debug for toml::de::Error
impl Debug for toml::map::Map<String, Value>
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 UncasedStr
impl Debug for walkdir::dent::DirEntry
impl Debug for walkdir::error::Error
impl Debug for walkdir::IntoIter
impl Debug for WalkDir
impl Debug for zerocopy::error::AllocError
impl Debug for otter_support::prelude::mem::Alignment
impl Debug for Assume
impl Debug for Array
impl Debug for Bool
impl Debug for Char
impl Debug for Const
impl Debug for DynTrait
impl Debug for DynTraitPredicate
impl Debug for Enum
impl Debug for Field
impl Debug for Float
impl Debug for FnPtr
impl Debug for GenericType
impl Debug for Int
impl Debug for Lifetime
impl Debug for Pointer
impl Debug for otter_support::prelude::mem::type_info::Reference
impl Debug for otter_support::prelude::mem::type_info::Slice
impl Debug for Str
impl Debug for Struct
impl Debug for Trait
impl Debug for Tuple
impl Debug for otter_support::prelude::mem::type_info::Type
impl Debug for otter_support::prelude::mem::type_info::Union
impl Debug for Variant
impl Debug for IgnoredAny
impl Debug for otter_support::prelude::serde::de::value::Error
impl Debug for otter_support::prelude::serde_json::map::IntoIter
impl Debug for otter_support::prelude::serde_json::map::IntoValues
impl Debug for CompactFormatter
impl Debug for otter_support::prelude::serde_json::Error
impl Debug for otter_support::prelude::serde_json::Map<String, Value>
impl Debug for Number
impl Debug for Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for ParseBoolError
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for CoordinateOverflow
impl Debug for Html
impl Debug for HtmlStr
impl Debug for TryFromIntError
impl Debug for __c_anonymous_sockaddr_can_can_addr
impl Debug for __c_anonymous_ptrace_syscall_info_data
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 __c_anonymous_ifc_ifcu
impl Debug for __c_anonymous_ifr_ifru
impl Debug for SockaddrStorage
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl<'a> Debug for std::path::Component<'a>
impl<'a> Debug for std::path::Prefix<'a>
impl<'a> Debug for Item<'a>
impl<'a> Debug for FcntlArg<'a>
impl<'a> Debug for ControlMessage<'a>
impl<'a> Debug for IndexVecIter<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for otter_support::imports::unix::net::Incoming<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for core::error::Request<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for 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 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 StrftimeItems<'a>
impl<'a> Debug for TermFeatures<'a>
impl<'a> Debug for log::Metadata<'a>
impl<'a> Debug for MetadataBuilder<'a>
impl<'a> Debug for Record<'a>
impl<'a> Debug for RecordBuilder<'a>
impl<'a> Debug for mio::event::events::Iter<'a>
impl<'a> Debug for mio::poll::Iter<'a>
impl<'a> Debug for EventedFd<'a>
impl<'a> Debug for SourceFd<'a>
impl<'a> Debug for InterfacesIter<'a>
impl<'a> Debug for AioCb<'a>
impl<'a> Debug for LioCb<'a>
impl<'a> Debug for LioCbBuilder<'a>
impl<'a> Debug for Fds<'a>
impl<'a> Debug for SigSetIter<'a>
impl<'a> Debug for CmsgIterator<'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 rmp::decode::bytes::Bytes<'a>
impl<'a> Debug for otter_support::prelude::serde_json::map::Iter<'a>
impl<'a> Debug for otter_support::prelude::serde_json::map::IterMut<'a>
impl<'a> Debug for otter_support::prelude::serde_json::map::Keys<'a>
impl<'a> Debug for otter_support::prelude::serde_json::map::Values<'a>
impl<'a> Debug for otter_support::prelude::serde_json::map::ValuesMut<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for otter_support::prelude::str::Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for otter_support::prelude::str::EscapeDebug<'a>
impl<'a> Debug for otter_support::prelude::str::EscapeDefault<'a>
impl<'a> Debug for otter_support::prelude::str::EscapeUnicode<'a>
impl<'a> Debug for otter_support::prelude::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 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, '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 DecodeStringError<'a, E>where
E: Debug + RmpReadErr,
impl<'a, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
std or alloc only.impl<'a, E> Debug for StrDeserializer<'a, E>
impl<'a, I> Debug for RecvMmsgData<'a, I>
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I> Debug for otter_support::prelude::itertools::Format<'a, I>
impl<'a, I, A> Debug for alloc::collections::vec_deque::splice::Splice<'a, I, A>
impl<'a, I, A> Debug for alloc::vec::splice::Splice<'a, I, A>
impl<'a, I, C, S> Debug for SendMmsgData<'a, I, C, S>where
I: Debug + AsRef<[IoSlice<'a>]>,
C: Debug + AsRef<[ControlMessage<'a>]>,
S: Debug + SockaddrLike + 'a,
impl<'a, I, E> Debug for ProcessResults<'a, I, E>
impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F>
impl<'a, I, F> Debug for TakeWhileRef<'a, I, F>
impl<'a, K, V> Debug for slotmap_fork_otter::secondary::Entry<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::sparse_secondary::Entry<'a, K, V>
impl<'a, K, V> Debug for phf::map::Entries<'a, K, V>
impl<'a, K, V> Debug for phf::map::Keys<'a, K, V>where
K: Debug,
impl<'a, K, V> Debug for phf::map::Values<'a, K, V>where
V: Debug,
impl<'a, K, V> Debug for phf::ordered_map::Entries<'a, K, V>
impl<'a, K, V> Debug for phf::ordered_map::Keys<'a, K, V>where
K: Debug,
impl<'a, K, V> Debug for phf::ordered_map::Values<'a, K, V>where
V: Debug,
impl<'a, K, V> Debug for slotmap_fork_otter::basic::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::basic::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::basic::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::basic::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::basic::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::basic::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::dense::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::dense::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::dense::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::dense::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::dense::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::dense::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::hop::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::hop::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::hop::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::hop::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::hop::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::hop::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::secondary::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::secondary::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::secondary::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::secondary::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::secondary::OccupiedEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::secondary::VacantEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::secondary::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::secondary::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::sparse_secondary::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::sparse_secondary::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::sparse_secondary::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::sparse_secondary::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::sparse_secondary::OccupiedEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::sparse_secondary::VacantEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::sparse_secondary::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap_fork_otter::sparse_secondary::ValuesMut<'a, K, V>
impl<'a, P> Debug for MatchIndices<'a, P>
impl<'a, P> Debug for otter_support::prelude::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 otter_support::prelude::str::RSplit<'a, P>
impl<'a, P> Debug for otter_support::prelude::str::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for otter_support::prelude::str::Split<'a, P>
impl<'a, P> Debug for otter_support::prelude::str::SplitInclusive<'a, P>
impl<'a, P> Debug for otter_support::prelude::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, R> Debug for ReadRefReader<'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 RecvMsg<'a, S>where
S: Debug,
impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>
impl<'a, T> Debug for otter_support::imports::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 OnceRef<'a, T>
impl<'a, T> Debug for phf::ordered_set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for phf::set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rand::distributions::slice::Slice<'a, T>where
T: Debug,
impl<'a, T> Debug for slab::VacantEntry<'a, T>where
T: Debug,
impl<'a, T> Debug for smallvec::Drain<'a, T>
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, I> Debug for Ptr<'a, T, I>where
T: 'a + ?Sized,
I: Invariants,
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, U> Debug for SerializeAsWrap<'a, T, U>
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, W> Debug for ExtFieldSerializer<'a, W>where
W: Debug,
impl<'a, W> Debug for ExtSerializer<'a, W>where
W: Debug,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'b, 'c, T> Debug for rmp_serde::decode::Reference<'b, 'c, T>
impl<'c, 'h> Debug for regex::regex::bytes::SubCaptureMatches<'c, 'h>
impl<'c, 'h> Debug for regex::regex::string::SubCaptureMatches<'c, 'h>
impl<'d> Debug for nix::dir::Iter<'d>
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<'g, T> Debug for otter_support::debugmutex::MutexGuard<'g, T>where
T: DebugIdentify + Debug,
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>
alloc only.impl<'h, F> Debug for TryHalfMatchesIter<'h, F>
impl<'h, F> Debug for TryMatchesIter<'h, F>
impl<'n> Debug for memchr::memmem::Finder<'n>
impl<'n> Debug for memchr::memmem::FinderRev<'n>
impl<'pi> Debug for Count<'pi>
impl<'pi> Debug for ProgressInfo<'pi>
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<'r, R: Debug + Read> Debug for ReadFrame<'r, R>
impl<'s> Debug for TomlQuote<'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, T> Debug for ScopedJoinHandle<'scope, T>
impl<'w, W: Debug + Write> Debug for WriteFrame<'w, W>
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for OptionFlatten<A>where
A: Debug,
impl<A> Debug for RangeFromIter<A>where
A: Debug,
impl<A> Debug for RangeInclusiveIter<A>where
A: Debug,
impl<A> Debug for RangeIter<A>where
A: Debug,
impl<A> Debug for smallvec::IntoIter<A>
impl<A> Debug for SmallVec<A>
impl<A> Debug for otter_support::prelude::iter::Repeat<A>where
A: Debug,
impl<A> Debug for otter_support::prelude::iter::RepeatN<A>where
A: Debug,
impl<A> Debug for otter_support::prelude::itertools::RepeatN<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 otter_support::prelude::iter::Chain<A, B>
impl<A, B> Debug for otter_support::prelude::iter::Zip<A, B>
impl<A, S, V> Debug for ConvertError<A, S, V>
impl<A: Debug> Debug for Authorisation<A>
impl<ASO, MR> Debug for IteratorCore<ASO, MR>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for otter_support::imports::io::Lines<B>where
B: Debug,
impl<B> Debug for otter_support::imports::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 DebugFormatter<C>
impl<C> Debug for BinaryConfig<C>where
C: Debug,
impl<C> Debug for HumanReadableConfig<C>where
C: Debug,
impl<C> Debug for StructMapConfig<C>where
C: Debug,
impl<C> Debug for StructTupleConfig<C>where
C: Debug,
impl<D> Debug for StyledObject<D>where
D: Debug,
impl<D, F, T, S> Debug for DistMap<D, F, T, S>
impl<D, R, T> Debug for DistIter<D, R, T>
impl<D: Debug + Digest, R: Debug + Read> Debug for DigestRead<D, R>
impl<D: Debug + Digest, W: Debug + Write> Debug for DigestWrite<D, W>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for NumValueReadError<E>where
E: Debug + RmpReadErr,
impl<E> Debug for ValueReadError<E>where
E: Debug + RmpReadErr,
impl<E> Debug for ValueWriteError<E>where
E: Debug + RmpWriteErr,
impl<E> Debug for Report<E>
impl<E> Debug for MarkerReadError<E>where
E: Debug + RmpReadErr,
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>
std or alloc only.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<F> Debug for otter_support::prelude::fmt::FromFn<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for otter_support::prelude::iter::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for RepeatWith<F>
impl<F> Debug for RepeatCall<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<FORMAT, STRICTNESS> Debug for DurationMicroSeconds<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for DurationMicroSecondsWithFrac<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for DurationMilliSeconds<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for DurationMilliSecondsWithFrac<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for DurationNanoSeconds<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for DurationNanoSecondsWithFrac<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for DurationSeconds<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for DurationSecondsWithFrac<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for TimestampMicroSeconds<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for TimestampMicroSecondsWithFrac<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for TimestampMilliSeconds<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for TimestampMilliSecondsWithFrac<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for TimestampNanoSeconds<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for TimestampNanoSecondsWithFrac<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for TimestampSeconds<FORMAT, STRICTNESS>
impl<FORMAT, STRICTNESS> Debug for TimestampSecondsWithFrac<FORMAT, STRICTNESS>
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for 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 otter_support::prelude::iter::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 otter_support::prelude::iter::Take<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 MultiProduct<I>
impl<I> Debug for PeekNth<I>
impl<I> Debug for Permutations<I>
impl<I> Debug for Powerset<I>
impl<I> Debug for PutBack<I>
impl<I> Debug for PutBackN<I>
impl<I> Debug for RcIter<I>where
I: Debug,
impl<I> Debug for Step<I>where
I: Debug,
impl<I> Debug for Tee<I>
impl<I> Debug for Unique<I>
impl<I> Debug for WhileSome<I>where
I: Debug,
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, ElemF> Debug for otter_support::prelude::itertools::IntersperseWith<I, ElemF>
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 otter_support::prelude::iter::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 KMergeBy<I, F>
impl<I, F> Debug for PadUsing<I, F>where
I: Debug,
impl<I, F> Debug for Positions<I, F>where
I: Debug,
impl<I, F> Debug for Update<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for otter_support::prelude::iter::IntersperseWith<I, G>
impl<I, J> Debug for ConsTuples<I, J>
impl<I, J> Debug for Interleave<I, J>
impl<I, J> Debug for InterleaveShortest<I, J>
impl<I, J> Debug for Product<I, J>
impl<I, J> Debug for ZipEq<I, J>
impl<I, J, F> Debug for MergeBy<I, J, F>
impl<I, J, F> Debug for MergeJoinBy<I, J, F>
impl<I, P> Debug for FilterEntry<I, P>
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, T> Debug for CircularTupleWindows<I, T>
impl<I, T> Debug for TupleCombinations<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, U> Debug for Flatten<I>
impl<I, U, F> Debug for FlatMap<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 Clamp<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<K> Debug for otter_support::imports::btree_set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for otter_support::imports::btree_set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for otter_support::imports::btree_set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, A> Debug for std::collections::hash::set::Drain<'_, K, A>
impl<K, A> Debug for std::collections::hash::set::IntoIter<K, A>
impl<K, F, A> Debug for std::collections::hash::set::ExtractIf<'_, K, F, A>
impl<K, V> Debug for otter_support::imports::hash_map::Entry<'_, K, V>
impl<K, V> Debug for otter_support::imports::btree_map::Cursor<'_, K, V>
impl<K, V> Debug for otter_support::imports::btree_map::Iter<'_, K, V>
impl<K, V> Debug for otter_support::imports::btree_map::IterMut<'_, K, V>
impl<K, V> Debug for otter_support::imports::btree_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for otter_support::imports::btree_map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for otter_support::imports::btree_map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for otter_support::imports::btree_map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for otter_support::imports::hash_map::Iter<'_, K, V>
impl<K, V> Debug for otter_support::imports::hash_map::IterMut<'_, K, V>
impl<K, V> Debug for otter_support::imports::hash_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for otter_support::imports::hash_map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for otter_support::imports::hash_map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for DenseSlotMap<K, V>
impl<K, V> Debug for phf::map::Map<K, V>
impl<K, V> Debug for OrderedMap<K, V>
impl<K, V> Debug for slotmap_fork_otter::basic::IntoIter<K, V>
impl<K, V> Debug for SlotMap<K, V>
impl<K, V> Debug for slotmap_fork_otter::dense::IntoIter<K, V>
impl<K, V> Debug for HopSlotMap<K, V>
impl<K, V> Debug for slotmap_fork_otter::hop::IntoIter<K, V>
impl<K, V> Debug for slotmap_fork_otter::secondary::IntoIter<K, V>
impl<K, V> Debug for SecondaryMap<K, V>
impl<K, V> Debug for slotmap_fork_otter::sparse_secondary::IntoIter<K, V>
impl<K, V, A> Debug for otter_support::imports::btree_map::Entry<'_, K, V, A>
impl<K, V, A> Debug for otter_support::imports::btree_map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for otter_support::imports::btree_map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for otter_support::imports::btree_map::IntoIter<K, V, A>
impl<K, V, A> Debug for otter_support::imports::btree_map::IntoKeys<K, V, A>
impl<K, V, A> Debug for otter_support::imports::btree_map::IntoValues<K, V, A>
impl<K, V, A> Debug for otter_support::imports::btree_map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for otter_support::imports::btree_map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for otter_support::imports::btree_map::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for otter_support::imports::hash_map::Drain<'_, K, V, A>
impl<K, V, A> Debug for otter_support::imports::hash_map::IntoIter<K, V, A>
impl<K, V, A> Debug for otter_support::imports::hash_map::IntoKeys<K, V, A>
impl<K, V, A> Debug for otter_support::imports::hash_map::IntoValues<K, V, A>
impl<K, V, A> Debug for otter_support::imports::hash_map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for otter_support::imports::hash_map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for otter_support::imports::hash_map::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, F, A> Debug for otter_support::imports::hash_map::ExtractIf<'_, K, V, F, A>
impl<K, V, R, F, A> Debug for otter_support::imports::btree_map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S> Debug for SparseSecondaryMap<K, V, S>
impl<K, V, S, A> Debug for HashMap<K, V, S, A>
impl<L, R> Debug for Either<L, R>
impl<L, R> Debug for IterEither<L, R>
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 Isize<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<O> Debug for Usize<O>where
O: ByteOrder,
impl<P> Debug for MaybeDangling<P>
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<R> Debug for otter_support::imports::io::Bytes<R>where
R: Debug,
impl<R> Debug for BufReader<R>
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 ReadReader<R>
impl<R, C> Debug for Deserializer<R, C>
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>
impl<R, T> Debug for lock_api::mutex::Mutex<R, T>
impl<R, T> Debug for lock_api::rwlock::RwLock<R, T>
impl<R: Debug + Read> Debug for FrameReader<R>
impl<RW: Debug> Debug for ChildIo<RW>
impl<RW: Debug> Debug for BrokenFuse<RW>
impl<RW: Debug> Debug for otter_support::packetframe::Fuse<RW>
impl<S> Debug for inotify::events::Event<S>where
S: Debug,
impl<S> Debug for BoolFromInt<S>where
S: Debug + Strictness,
impl<Sep, T> Debug for StringWithSeparator<Sep, T>
impl<Src, Dst> Debug for AlignmentError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for SizeError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for ValidityError<Src, Dst>where
Dst: TryFromBytes + ?Sized,
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 Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for core::task::poll::Poll<T>where
T: Debug,
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for std::sync::mpsc::TrySendError<T>
impl<T> Debug for std::sync::oneshot::RecvTimeoutError<T>
impl<T> Debug for std::sync::oneshot::TryRecvError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for LocalResult<T>where
T: Debug,
impl<T> Debug for mio_extras::channel::SendError<T>
impl<T> Debug for mio_extras::channel::TrySendError<T>
impl<T> Debug for RegionC<T>
impl<T> Debug for FoldWhile<T>where
T: Debug,
impl<T> Debug for MinMaxResult<T>where
T: Debug,
impl<T> Debug for otter_support::prelude::itertools::Position<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.
impl<T> Debug for DebugDebugIdentify<'_, T>where
T: DebugIdentify,
impl<T> Debug for otter_support::imports::btree_set::Iter<'_, T>where
T: Debug,
impl<T> Debug for otter_support::imports::btree_set::SymmetricDifference<'_, T>where
T: Debug,
impl<T> Debug for otter_support::imports::btree_set::Union<'_, T>where
T: Debug,
impl<T> Debug for Reverse<T>where
T: Debug,
impl<T> Debug for otter_support::imports::io::Cursor<T>where
T: Debug,
impl<T> Debug for otter_support::imports::io::Take<T>where
T: Debug,
impl<T> Debug for PhantomData<T>where
T: ?Sized,
impl<T> Debug for CapacityError<T>
impl<T> Debug for ThinBox<T>
impl<T> Debug for alloc::collections::binary_heap::Iter<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::linked_list::Iter<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::linked_list::IterMut<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::vec_deque::iter::Iter<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::vec_deque::iter_mut::IterMut<'_, T>where
T: Debug,
impl<T> Debug for core::cell::once::OnceCell<T>where
T: Debug,
impl<T> Debug for Cell<T>
impl<T> Debug for core::cell::Ref<'_, T>
impl<T> Debug for RefCell<T>
impl<T> Debug for RefMut<'_, T>
impl<T> Debug for SyncUnsafeCell<T>where
T: ?Sized,
impl<T> Debug for UnsafeCell<T>where
T: ?Sized,
impl<T> Debug for NumBuffer<T>where
T: NumBufferTrait,
impl<T> Debug for Pending<T>
impl<T> Debug for core::future::ready::Ready<T>where
T: Debug,
impl<T> Debug for PhantomContravariant<T>where
T: ?Sized,
impl<T> Debug for PhantomCovariant<T>where
T: ?Sized,
impl<T> Debug for PhantomInvariant<T>where
T: ?Sized,
impl<T> Debug for NonZero<T>where
T: ZeroablePrimitive + Debug,
impl<T> Debug for Saturating<T>where
T: Debug,
impl<T> Debug for Yeet<T>where
T: Debug,
impl<T> Debug for AssertUnwindSafe<T>where
T: Debug,
impl<T> Debug for UnsafePinned<T>where
T: ?Sized,
impl<T> Debug for NonNull<T>where
T: ?Sized,
impl<T> Debug for core::result::IntoIter<T>where
T: Debug,
impl<T> Debug for core::slice::iter::Iter<'_, T>where
T: Debug,
impl<T> Debug for core::slice::iter::IterMut<'_, T>where
T: Debug,
impl<T> Debug for Atomic<*mut T>
target_has_atomic_load_store=ptr only.