pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}Expand description
? formatting.
Debug should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive a Debug implementation.
When used with the alternate format specifier #?, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive] if all fields implement Debug. When
derived for structs, it will use the name of the struct, then {, then a
comma-separated list of each field’s name and Debug value, then }. For
enums, it will use the name of the variant and, if applicable, (, then the
Debug values of the fields, then ).
§Stability
Derived Debug formats are not stable, and so may change with future Rust
versions. Additionally, Debug implementations of types provided by the
standard library (std, core, alloc, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);There are a number of helper methods on the Formatter struct to help you with manual
implementations, such as debug_struct.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter trait (debug_struct, debug_tuple,
debug_list, debug_set, debug_map) can do something totally custom by
manually writing an arbitrary representation to the Formatter.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}Debug implementations using either derive or the debug builder API
on Formatter support pretty-printing using the alternate flag: {:#?}.
Pretty-printing with #?:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err if, and only if, the provided Formatter returns Err.
String formatting is considered an infallible operation; this function only
returns a Result because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl Debug for !
impl Debug for ()
impl Debug for Abi
impl Debug for AbortHandle
impl Debug for Accepted
impl Debug for AcceptedAlert
impl Debug for AccessError
impl Debug for AcquireError
impl Debug for core::net::parser::AddrParseError
impl Debug for rustls_pki_types::server_name::AddrParseError
impl Debug for AlertDescription
impl Debug for ring::aead::algorithm::Algorithm
impl Debug for ring::aead::quic::Algorithm
impl Debug for ring::agreement::Algorithm
impl Debug for ring::digest::Algorithm
impl Debug for ring::hkdf::Algorithm
impl Debug for ring::hmac::Algorithm
impl Debug for AlgorithmIdentifier
impl Debug for core::mem::alignment::Alignment
impl Debug for http_request::self::Alignment
impl Debug for AllocError
impl Debug for Alnum
impl Debug for rand::distr::other::Alphabetic
impl Debug for icu_properties::props::Alphabetic
impl Debug for Alphanumeric
impl Debug for Always
impl Debug for AlwaysResolvesClientRawPublicKeys
impl Debug for AlwaysResolvesServerRawPublicKeys
impl Debug for AncillaryError
impl Debug for Args
impl Debug for ArgsOs
impl Debug for Arguments<'_>
impl Debug for AsciiChar
impl Debug for AsciiHexDigit
impl Debug for AsciiProbeResult
impl Debug for AsciiSet
impl Debug for Assume
impl Debug for Atomic<bool>
target_has_atomic_load_store=8 only.impl Debug for Atomic<i8>
impl Debug for Atomic<i16>
impl Debug for Atomic<i32>
impl Debug for Atomic<i64>
impl Debug for Atomic<isize>
impl Debug for Atomic<u8>
impl Debug for Atomic<u16>
impl Debug for Atomic<u32>
impl Debug for Atomic<u64>
impl Debug for Atomic<usize>
impl Debug for AtomicOrdering
impl Debug for http_type::attribute::enum::Attribute
impl Debug for icu_locale_core::extensions::unicode::attribute::Attribute
impl Debug for AttributeParseError
impl Debug for Attributes
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for BacktraceStatus
impl Debug for BacktraceStyle
impl Debug for icu_normalizer::provider::Baked
impl Debug for icu_properties::provider::Baked
impl Debug for std::sync::barrier::Barrier
impl Debug for tokio::sync::barrier::Barrier
impl Debug for std::sync::barrier::BarrierWaitResult
impl Debug for tokio::sync::barrier::BarrierWaitResult
impl Debug for BasicEmoji
impl Debug for Bernoulli
impl Debug for BernoulliError
impl Debug for BidiClass
impl Debug for BidiControl
impl Debug for BidiMirrored
impl Debug for BidiMirroringGlyph
impl Debug for BidiPairedBracketType
impl Debug for Blank
impl Debug for BlockSwitch
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for BorrowedFd<'_>
impl Debug for BroCatliResult
impl Debug for BrotliDecoderErrorCode
impl Debug for BrotliDistanceParams
impl Debug for BrotliEncoderMode
impl Debug for BrotliEncoderParameter
impl Debug for BrotliEncoderParams
impl Debug for BrotliEncoderThreadError
impl Debug for BrotliHasherParams
impl Debug for BrotliResult
impl Debug for BufferFormat
impl Debug for BufferMarker
impl Debug for std::thread::builder::Builder
impl Debug for tokio::runtime::builder::Builder
impl Debug for ByteStr
impl Debug for ByteString
impl Debug for bytes::bytes::Bytes
impl Debug for BytesMut
impl Debug for CStr
Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
impl Debug for CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for CalendarAlgorithm
impl Debug for CanonicalCombiningClass
impl Debug for CanonicalCombiningClassMap
impl Debug for CanonicalComposition
impl Debug for CanonicalDecomposition
impl Debug for Cart
impl Debug for CaseIgnorable
impl Debug for CaseSensitive
impl Debug for Cased
impl Debug for Category
impl Debug for CertRevocationListError
impl Debug for CertificateCompressionAlgorithm
impl Debug for CertificateError
impl Debug for CertificateType
impl Debug for CertifiedKey
impl Debug for ChaCha8Rng
impl Debug for ChaCha12Rng
impl Debug for ChaCha20Rng
impl Debug for ChangesWhenCasefolded
impl Debug for ChangesWhenCasemapped
impl Debug for ChangesWhenLowercased
impl Debug for ChangesWhenNfkcCasefolded
impl Debug for ChangesWhenTitlecased
impl Debug for ChangesWhenUppercased
impl Debug for CharCase
impl Debug for CharTryFromError
impl Debug for CharULE
impl Debug for Chars<'_>
impl Debug for std::process::Child
impl Debug for tokio::process::Child
impl Debug for std::process::ChildStderr
impl Debug for tokio::process::ChildStderr
impl Debug for std::process::ChildStdin
impl Debug for tokio::process::ChildStdin
impl Debug for std::process::ChildStdout
impl Debug for tokio::process::ChildStdout
impl Debug for Choice
impl Debug for CipherSuite
impl Debug for ClientCertVerified
impl Debug for ClientCertVerifierBuilder
impl Debug for ClientConfig
impl Debug for http_request::ClientConnection
impl Debug for rustls::quic::connection::ClientConnection
impl Debug for ClientConnectionData
impl Debug for ClientSessionMemoryCache
impl Debug for CodePointInversionListAndStringListULE
impl Debug for CodePointInversionListULE
impl Debug for CodePointSetData
impl Debug for CodePointTrieHeader
impl Debug for CollationCaseFirst
impl Debug for CollationNumericOrdering
impl Debug for CollationType
impl Debug for CollectionAllocErr
impl Debug for std::process::Command
impl Debug for brotli::enc::command::Command
impl Debug for tokio::process::Command
impl Debug for CommandResolvedEnvs
impl Debug for CommonVariantType
impl Debug for CompactFormatter
impl Debug for Components<'_>
impl Debug for ComposingNormalizer
impl Debug for http_request::Compress
impl Debug for flate2::mem::Compress
impl Debug for CompressError
impl Debug for Compression
impl Debug for CompressionCache
impl Debug for CompressionCacheInner
impl Debug for CompressionFailed
impl Debug for miniz_oxide::deflate::CompressionLevel
impl Debug for rustls::compress::CompressionLevel
impl Debug for CompressionStrategy
impl Debug for std::sync::nonpoison::condvar::Condvar
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for parking_lot::condvar::Condvar
impl Debug for rustls::conn::connection::Connection
impl Debug for rustls::quic::connection::Connection
impl Debug for Const
impl Debug for http_request::ContentType
impl Debug for rustls::enums::ContentType
impl Debug for ring::hmac::Context
impl Debug for http_request::Context<'_>
impl Debug for Cookie
impl Debug for CookieBuilder
impl Debug for CopyCommand
impl Debug for CpuidResult
impl Debug for Crc
impl Debug for CrlsRequired
impl Debug for CryptoProvider
impl Debug for CurrencyFormatStyle
impl Debug for CurrencyType
impl Debug for DIR
impl Debug for DangerousClientConfigBuilder
impl Debug for Dash
impl Debug for DataError
impl Debug for DataErrorKind
impl Debug for DataFormat
impl Debug for DataLocale
impl Debug for DataMarkerAttributes
impl Debug for DataMarkerId
impl Debug for DataMarkerIdHash
impl Debug for DataMarkerInfo
impl Debug for DataRequestMetadata
impl Debug for DataResponseMetadata
impl Debug for DebugAsHex
impl Debug for DecodeUtf16Error
impl Debug for Decomposed
impl Debug for DecomposingNormalizer
impl Debug for Decompress
impl Debug for flate2::mem::DecompressError
impl Debug for miniz_oxide::inflate::DecompressError
impl Debug for DecompressionFailed
impl Debug for DefaultHasher
impl Debug for DefaultIgnorableCodePoint
impl Debug for DefaultTimeProvider
impl Debug for Deprecated
impl Debug for Der<'_>
impl Debug for DerTypeId
impl Debug for Diacritic
impl Debug for DictCommand
impl Debug for Digest
impl Debug for DigitallySignedStruct
impl Debug for Dir
impl Debug for std::fs::DirBuilder
impl Debug for tokio::fs::dir_builder::DirBuilder
impl Debug for std::fs::DirEntry
impl Debug for tokio::fs::read_dir::DirEntry
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for std::path::Display<'_>
impl Debug for core::ffi::c_str::Display<'_>
impl Debug for DistinguishedName
impl Debug for Dl_info
impl Debug for Domain
impl Debug for alloc::string::Drain<'_>
impl Debug for DuplexStream
impl Debug for Duration
impl Debug for DynTrait
impl Debug for DynTraitPredicate
impl Debug for EarlyDataError
impl Debug for EastAsianWidth
impl Debug for EcdsaKeyPair
impl Debug for EcdsaSigningAlgorithm
impl Debug for EcdsaVerificationAlgorithm
impl Debug for EchConfig
impl Debug for EchConfigListBytes<'_>
impl Debug for EchGreaseConfig
impl Debug for EchMode
impl Debug for EchStatus
impl Debug for Ed25519KeyPair
impl Debug for EdDSAParameters
impl Debug for Elapsed
impl Debug for Elf32_Chdr
impl Debug for Elf32_Ehdr
impl Debug for Elf32_Phdr
impl Debug for Elf32_Shdr
impl Debug for Elf32_Sym
impl Debug for Elf64_Chdr
impl Debug for Elf64_Ehdr
impl Debug for Elf64_Phdr
impl Debug for Elf64_Shdr
impl Debug for Elf64_Sym
impl Debug for EmitterConfig
impl Debug for EmitterError
impl Debug for Emoji
impl Debug for EmojiComponent
impl Debug for EmojiModifier
impl Debug for EmojiModifierBase
impl Debug for EmojiPresentation
impl Debug for EmojiPresentationStyle
impl Debug for EmojiSetData
impl Debug for core::io::util::Empty
impl Debug for rand::distr::slice::Empty
impl Debug for tokio::io::util::empty::Empty
impl Debug for EncapsulatedSecret
impl Debug for EncodeError
impl Debug for EncodeUtf16<'_>
impl Debug for Encoding
impl Debug for EncryptError
impl Debug for EncryptedClientHelloError
impl Debug for EndOfInput
impl Debug for EphemeralPrivateKey
impl Debug for Errno
impl Debug for core::io::error::Error
impl Debug for http_request::self::Error
impl Debug for rand::distr::uniform::Error
impl Debug for rand::distr::weighted::Error
impl Debug for getrandom::error::Error
impl Debug for serde_json::error::Error
impl Debug for serde_core::de::value::Error
impl Debug for tokio::time::error::Error
impl Debug for icu_collections::codepointtrie::error::Error
impl Debug for serde_xml_rs::error::Error
impl Debug for xml::reader::error::Error
impl Debug for serde_urlencoded::ser::Error
impl Debug for rustls::error::Error
impl Debug for rustls_pki_types::pem::Error
impl Debug for getrandom::error::Error
impl Debug for webpki::error::Error
impl Debug for core::io::error::ErrorKind
impl Debug for xml::reader::error::ErrorKind
impl Debug for Errors
impl Debug for core::char::EscapeDebug
impl Debug for core::ascii::EscapeDefault
impl Debug for core::char::EscapeDefault
impl Debug for core::char::EscapeUnicode
impl Debug for 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 Events
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for ExpirationPolicy
impl Debug for ExtendedKeyPurpose
impl Debug for ExtendedPictographic
impl Debug for Extender
impl Debug for ExtensionType
impl Debug for Extensions
impl Debug for FILE
impl Debug for FieldId
impl Debug for Fields
impl Debug for std::fs::File
impl Debug for tokio::fs::file::File
impl Debug for FileExtension
impl Debug for FileTimes
impl Debug for FileType
impl Debug for FilterOp
impl Debug for memchr::arch::all::packedpair::Finder
impl Debug for memchr::arch::all::rabinkarp::Finder
impl Debug for memchr::arch::all::shiftor::Finder
impl Debug for memchr::arch::all::twoway::Finder
impl Debug for memchr::arch::x86_64::avx2::packedpair::Finder
impl Debug for memchr::arch::x86_64::sse2::packedpair::Finder
impl Debug for FinderBuilder
impl Debug for memchr::arch::all::rabinkarp::FinderRev
impl Debug for memchr::arch::all::twoway::FinderRev
impl Debug for FipsStatus
impl Debug for FirstDay
impl Debug for FlushCompress
impl Debug for FlushDecompress
impl Debug for FnPtr
impl Debug for FormattingOptions
impl Debug for FpCategory
impl Debug for FromBytesUntilNulError
impl Debug for FromBytesWithNulError
impl Debug for FromHexError
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for FromVecWithNulError
impl Debug for FullCompositionExclusion
impl Debug for GeneralCategory
impl Debug for GeneralCategoryGroup
impl Debug for GeneralCategoryOutOfBoundsError
impl Debug for Generic
impl Debug for GenericType
impl Debug for GetDisjointMutError
impl Debug for GetRandomFailed
impl Debug for Global
impl Debug for Graph
impl Debug for GraphemeBase
impl Debug for GraphemeClusterBreak
impl Debug for GraphemeExtend
impl Debug for GraphemeLink
impl Debug for GzBuilder
impl Debug for GzHeader
impl Debug for Handle
impl Debug for HandshakeKind
impl Debug for HandshakeSignatureValid
impl Debug for HandshakeType
impl Debug for HangulSyllableType
impl Debug for HashAlgorithm
impl Debug for twox_hash::xxhash32::Hasher
impl Debug for twox_hash::xxhash64::Hasher
impl Debug for crc32fast::Hasher
impl Debug for HexDigit
impl Debug for HijriCalendarAlgorithm
impl Debug for HourCycle
impl Debug for HpkePublicKey
impl Debug for HpkeSuite
impl Debug for HttpRequest
impl Debug for HttpResponse
impl Debug for HttpStatus
impl Debug for HttpUrlComponents
impl Debug for HttpUrlError
impl Debug for HttpVersion
impl Debug for HuffmanCode
impl Debug for Hyphen
impl Debug for tokio::runtime::task::id::Id
impl Debug for tokio::runtime::id::Id
impl Debug for IdCompatMathContinue
impl Debug for IdCompatMathStart
impl Debug for IdContinue
impl Debug for IdStart
impl Debug for Ideographic
impl Debug for IdsBinaryOperator
impl Debug for IdsTrinaryOperator
impl Debug for IdsUnaryOperator
impl Debug for Ietf
impl Debug for IgnoredAny
impl Debug for ImmutableEntitiesError
impl Debug for InconsistentKeys
impl Debug for Index8
impl Debug for Index16
impl Debug for Index32
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
impl Debug for IndicConjunctBreak
impl Debug for IndicSyllabicCategory
impl Debug for Input<'_>
The value is intentionally omitted from the output to avoid leaking secrets.
impl Debug for std::time::Instant
impl Debug for tokio::time::instant::Instant
impl Debug for InsufficientSizeError
impl Debug for IntErrorKind
impl Debug for tokio::io::interest::Interest
impl Debug for mio::interest::Interest
impl Debug for InterfaceIndexOrAddress
impl Debug for InternalAttribute
impl Debug for Interval
impl Debug for IntoChars
impl Debug for IntoIncoming
impl Debug for serde_json::map::IntoIter
impl Debug for IntoStringError
impl Debug for serde_json::map::IntoValues
impl Debug for InvalidDnsNameError
impl Debug for InvalidMessage
impl Debug for InvalidNameContext
impl Debug for InvalidSetError
impl Debug for InvalidSignature
impl Debug for InvalidStringList
impl Debug for IoState
impl Debug for core::net::ip_addr::IpAddr
impl Debug for rustls_pki_types::server_name::IpAddr
impl Debug for http_request::Ipv4Addr
impl Debug for rustls_pki_types::server_name::Ipv4Addr
impl Debug for http_request::Ipv6Addr
impl Debug for rustls_pki_types::server_name::Ipv6Addr
impl Debug for Ipv6MulticastScope
impl Debug for IsFirst
impl Debug for std::path::Iter<'_>
impl Debug for JoinControl
impl Debug for JoinError
impl Debug for JoinPathsError
impl Debug for JoiningGroup
impl Debug for JoiningType
impl Debug for icu_locale_core::extensions::transform::key::Key
impl Debug for icu_locale_core::extensions::unicode::key::Key
impl Debug for ring::hmac::Key
impl Debug for KeyExchangeAlgorithm
impl Debug for KeyLogFile
impl Debug for KeyPair
impl Debug for KeyPurposeId<'_>
impl Debug for KeyRejected
impl Debug for KeyUsage
impl Debug for Keywords
impl Debug for Language
impl Debug for LanguageIdentifier
impl Debug for Last
impl Debug for Layout
impl Debug for LayoutError
impl Debug for Legacy
impl Debug for LengthHint
impl Debug for LessSafeKey
impl Debug for Level
impl Debug for LevelFilter
impl Debug for Lifetime
impl Debug for LineBreak
impl Debug for LineBreakStyle
impl Debug for LineBreakWordHandling
impl Debug for LiteralBlockSwitch
impl Debug for LiteralPredictionModeNibble
impl Debug for LocalEnterGuard
impl Debug for LocalOptions
impl Debug for LocalRuntime
impl Debug for LocalSet
impl Debug for LocalWaker
impl Debug for Locale
impl Debug for LocalePreferences
impl Debug for Locality
impl Debug for Location<'_>
impl Debug for LogicalOrderException
impl Debug for Lowercase
impl Debug for MZError
impl Debug for MZFlush
impl Debug for MZStatus
impl Debug for serde_json::map::Map<String, Value>
impl Debug for Math
impl Debug for MeasurementSystem
impl Debug for MeasurementUnitOverride
impl Debug for std::fs::Metadata
impl Debug for Method
impl Debug for MissedTickBehavior
impl Debug for ModifierCombiningMark
impl Debug for NamedGroup
impl Debug for Namespace
impl Debug for NamespaceStack
impl Debug for Namespaces
impl Debug for NfcInert
impl Debug for NfdInert
impl Debug for NfkcInert
impl Debug for NfkdInert
impl Debug for NoClientAuth
impl Debug for NoKeyLog
impl Debug for NoServerSessionStorage
impl Debug for NoncharacterCodePoint
impl Debug for NormalizeError
impl Debug for Notify
impl Debug for NulError
impl Debug for Number
impl Debug for NumberingSystem
impl Debug for NumericType
impl Debug for std::sync::once::Once
impl Debug for parking_lot::once::Once
impl Debug for std::sync::once::OnceState
impl Debug for parking_lot::once::OnceState
impl Debug for memchr::arch::all::memchr::One
impl Debug for memchr::arch::x86_64::avx2::memchr::One
impl Debug for memchr::arch::x86_64::sse2::memchr::One
impl Debug for OneshotWithSecretError
impl Debug for OpaqueOrigin
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for std::fs::OpenOptions
impl Debug for tokio::fs::open_options::OpenOptions
impl Debug for tokio::net::unix::pipe::OpenOptions
impl Debug for core::cmp::Ordering
impl Debug for core::sync::atomic::Ordering
impl Debug for Origin
impl Debug for OsStr
impl Debug for OsString
impl Debug for Other
impl Debug for OtherError
impl Debug for OutboundOpaqueMessage
impl Debug for Output
impl Debug for OutputLengthError
impl Debug for OwnedAttribute
impl Debug for OwnedCertRevocationList
impl Debug for OwnedFd
impl Debug for OwnedName
impl Debug for OwnedNotified
impl Debug for tokio::net::tcp::split_owned::OwnedReadHalf
impl Debug for tokio::net::unix::split_owned::OwnedReadHalf
impl Debug for OwnedRevokedCert
impl Debug for OwnedSemaphorePermit
impl Debug for tokio::net::tcp::split_owned::OwnedWriteHalf
impl Debug for tokio::net::unix::split_owned::OwnedWriteHalf
impl Debug for PDF
impl Debug for Pair
impl Debug for PanicData
impl Debug for PanicMessage<'_>
impl Debug for ParkResult
impl Debug for ParkToken
impl Debug for ParseBoolError
impl Debug for ParseCharError
impl Debug for url::parser::ParseError
impl Debug for icu_locale_core::parser::errors::ParseError
impl Debug for tinystr::error::ParseError
impl Debug for ParseFloatError
impl Debug for ParseIntError
impl Debug for ParseLevelError
impl Debug for ParserConfig
impl Debug for Part
impl Debug for Path
impl Debug for PathBuf
impl Debug for PatternSyntax
impl Debug for PatternWhiteSpace
impl Debug for PeerIncompatible
impl Debug for PeerMisbehaved
impl Debug for Permissions
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for PhantomPinned
impl Debug for PidFd
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for PlainMessage
impl Debug for mio::poll::Poll
impl Debug for PosData
impl Debug for Position
impl Debug for PotentialCodePoint
impl Debug for PotentialUtf8
impl Debug for PotentialUtf16
impl Debug for PreferencesParseError
impl Debug for PrefilterConfig
impl Debug for PrefixedPayload
impl Debug for PrependedConcatenationMark
impl Debug for Print
impl Debug for Private
impl Debug for PrivatePkcs1KeyDer<'_>
impl Debug for PrivatePkcs8KeyDer<'_>
impl Debug for PrivateSec1KeyDer<'_>
impl Debug for Prk
impl Debug for ProcessingError
impl Debug for ProcessingSuccess
impl Debug for http_request::Protocol
impl Debug for socket2::Protocol
impl Debug for ProtocolVersion
impl Debug for Proxy
impl Debug for ProxyType
impl Debug for ring::agreement::PublicKey
impl Debug for ring::rsa::public_key::PublicKey
impl Debug for QuotationMark
impl Debug for R8
impl Debug for R12
impl Debug for R20
impl Debug for Radical
impl Debug for RandomState
impl Debug for RangeError
impl Debug for RangeFull
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for ReadBuf<'_>
impl Debug for std::fs::ReadDir
impl Debug for tokio::fs::read_dir::ReadDir
impl Debug for untrusted::reader::Reader<'_>
Avoids writing the value or position to avoid creating a side channel,
though Reader can’t avoid leaking the position via timing.
impl Debug for tokio::io::ready::Ready
impl Debug for tokio::net::unix::pipe::Receiver
impl Debug for mio::sys::unix::pipe::Receiver
impl Debug for std::sync::mpsc::RecvError
impl Debug for tokio::sync::broadcast::error::RecvError
impl Debug for tokio::sync::oneshot::error::RecvError
impl Debug for tokio::sync::watch::error::RecvError
impl Debug for RecvFlags
impl Debug for std::sync::mpsc::RecvTimeoutError
impl Debug for Region
impl Debug for RegionOverride
impl Debug for RegionalIndicator
impl Debug for RegionalSubdivision
impl Debug for Registry
impl Debug for core::io::util::Repeat
impl Debug for tokio::io::util::repeat::Repeat
impl Debug for http_type::request::struct::Request
impl Debug for RequestBuilder
impl Debug for RequestConfig
impl Debug for RequestError
impl Debug for RequeueOp
impl Debug for RequiredEkuNotFoundContext
impl Debug for ResolvesServerCertUsingSni
impl Debug for Response
impl Debug for ResponseError
impl Debug for RestoreOnPending
impl Debug for Resumption
impl Debug for tokio::net::tcp::split_owned::ReuniteError
impl Debug for tokio::net::unix::split_owned::ReuniteError
impl Debug for RevocationCheckDepth
impl Debug for RevocationReason
impl Debug for RootCertStore
impl Debug for RsaParameters
impl Debug for Runtime
impl Debug for RuntimeFlavor
impl Debug for RuntimeMetrics
impl Debug for Salt
impl Debug for Scope<'_, '_>
impl Debug for icu_locale_core::subtags::script::Script
impl Debug for icu_properties::props::Script
impl Debug for ScriptWithExtensions
impl Debug for SearchStep
impl Debug for SectionKind
impl Debug for SeekFrom
impl Debug for SegmentStarter
impl Debug for Semaphore
impl Debug for tokio::net::unix::pipe::Sender
impl Debug for mio::sys::unix::pipe::Sender
impl Debug for SentenceBreak
impl Debug for SentenceBreakSupressions
impl Debug for SentenceTerminal
impl Debug for SerdeXml
impl Debug for ServerCertVerified
impl Debug for ServerCertVerifierBuilder
impl Debug for ServerConfig
impl Debug for rustls::server::server_conn::connection::ServerConnection
impl Debug for rustls::quic::connection::ServerConnection
impl Debug for ServerConnectionData
impl Debug for ServerName<'_>
impl Debug for ServerSessionMemoryCache
impl Debug for SetLoggerError
impl Debug for Shutdown
impl Debug for Side
impl Debug for SigId
impl Debug for Sign
impl Debug for Signal
impl Debug for SignalKind
impl Debug for SignatureAlgorithm
impl Debug for SignatureScheme
impl Debug for SimdAlign
impl Debug for SimplexStream
impl Debug for SingleCertAndKey
impl Debug for core::io::util::Sink
impl Debug for tokio::io::util::sink::Sink
impl Debug for SipHasher
impl Debug for Sleep
impl Debug for SliceOffset
impl Debug for SmallRng
impl Debug for SockAddr
impl Debug for SockAddrStorage
impl Debug for SockFilter
all and (Android or Linux) only.impl Debug for SockRef<'_>
impl Debug for Socket
impl Debug for std::os::unix::net::addr::SocketAddr
impl Debug for core::net::socket_addr::SocketAddr
impl Debug for tokio::net::unix::socketaddr::SocketAddr
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for SoftDotted
impl Debug for SpeedAndMax
impl Debug for SplitPaths<'_>
impl Debug for StandardAlloc
impl Debug for StandardUniform
impl Debug for StartPosQueue
impl Debug for http_type::status::enum::Status
impl Debug for flate2::mem::Status
impl Debug for StdRng
impl Debug for std::io::stdio::Stderr
impl Debug for tokio::io::stderr::Stderr
impl Debug for StderrLock<'_>
impl Debug for std::io::stdio::Stdin
impl Debug for tokio::io::stdin::Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdio
impl Debug for std::io::stdio::Stdout
impl Debug for tokio::io::stdout::Stdout
impl Debug for StdoutLock<'_>
impl Debug for Str
impl Debug for http_type::stream::struct::Stream
impl Debug for StreamResult
impl Debug for String
impl Debug for StripPrefixError
impl Debug for SubdivisionId
impl Debug for SubdivisionSuffix
impl Debug for icu_locale_core::extensions::private::other::Subtag
impl Debug for icu_locale_core::subtags::Subtag
impl Debug for SupportedCipherSuite
impl Debug for SupportedProtocolVersion
impl Debug for SyntaxViolation
impl Debug for SysRng
impl Debug for System
impl Debug for SystemRandom
impl Debug for SystemRng
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for TDEFLFlush
impl Debug for TDEFLStatus
impl Debug for TINFLStatus
impl Debug for Tag
impl Debug for Task
impl Debug for TcpKeepalive
impl Debug for std::net::tcp::TcpListener
impl Debug for tokio::net::tcp::listener::TcpListener
impl Debug for mio::net::tcp::listener::TcpListener
impl Debug for TcpSocket
impl Debug for http_request::TcpStream
impl Debug for tokio::net::tcp::stream::TcpStream
impl Debug for mio::net::tcp::stream::TcpStream
impl Debug for TerminalPunctuation
impl Debug for TextPosition
impl Debug for Thread
impl Debug for ThreadId
impl Debug for ThreadRng
Debug implementation does not leak internal state
impl Debug for memchr::arch::all::memchr::Three
impl Debug for memchr::arch::x86_64::avx2::memchr::Three
impl Debug for memchr::arch::x86_64::sse2::memchr::Three
impl Debug for TicketRequest
impl Debug for TicketRotator
std only.impl Debug for TicketSwitcher
impl Debug for TimeZoneShortId
impl Debug for Tls12CipherSuite
impl Debug for Tls12ClientSessionValue
impl Debug for Tls12Resumption
impl Debug for Tls13CipherSuite
impl Debug for Tls13ClientSessionValue
impl Debug for ToCasefold
impl Debug for ToLowercase
impl Debug for ToTitlecase
impl Debug for ToUppercase
impl Debug for Token
impl Debug for Trait
impl Debug for Transform
impl Debug for TrieResult
impl Debug for TrieType
impl Debug for TryAcquireError
impl Debug for TryCurrentError
impl Debug for TryFromCharError
impl Debug for TryFromFloatSecsError
impl Debug for TryFromIntError
impl Debug for TryFromSliceError
impl Debug for TryGetError
impl Debug for TryIoError
impl Debug for std::fs::TryLockError
impl Debug for tokio::sync::mutex::TryLockError
impl Debug for std::sync::mpsc::TryRecvError
impl Debug for tokio::sync::broadcast::error::TryRecvError
impl Debug for tokio::sync::mpsc::error::TryRecvError
impl Debug for tokio::sync::oneshot::error::TryRecvError
impl Debug for TryReserveError
impl Debug for TryReserveErrorKind
impl Debug for memchr::arch::all::memchr::Two
impl Debug for memchr::arch::x86_64::avx2::memchr::Two
impl Debug for memchr::arch::x86_64::sse2::memchr::Two
impl Debug for core::mem::type_info::Type
impl Debug for socket2::Type
impl Debug for TypeId
impl Debug for TypeKind
impl Debug for std::os::unix::net::ucred::UCred
impl Debug for tokio::net::unix::ucred::UCred
impl Debug for std::net::udp::UdpSocket
impl Debug for tokio::net::udp::UdpSocket
impl Debug for mio::net::udp::UdpSocket
impl Debug for UleError
impl Debug for UnboundKey
impl Debug for Unicode
impl Debug for UnifiedIdeograph
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for UniformUsize
impl Debug for UninitSlice
impl Debug for Union1
impl Debug for std::os::unix::net::datagram::UnixDatagram
impl Debug for tokio::net::unix::datagram::socket::UnixDatagram
impl Debug for mio::net::uds::datagram::UnixDatagram
impl Debug for std::os::unix::net::listener::UnixListener
impl Debug for tokio::net::unix::listener::UnixListener
impl Debug for mio::net::uds::listener::UnixListener
impl Debug for UnixSocket
impl Debug for std::os::unix::net::stream::UnixStream
impl Debug for tokio::net::unix::stream::UnixStream
impl Debug for mio::net::uds::stream::UnixStream
impl Debug for UnixTime
impl Debug for UnknownStatusPolicy
impl Debug for UnorderedKeyError
impl Debug for UnparkResult
impl Debug for UnparkToken
impl Debug for Unspecified
impl Debug for UnsupportedOperationError
impl Debug for UnsupportedSignatureAlgorithmContext
impl Debug for UnsupportedSignatureAlgorithmForPublicKeyContext
impl Debug for UpgradeType
impl Debug for Uppercase
impl Debug for Url
Debug the serialization of this URL.
impl Debug for Utf8CharsError
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for Uts46Mapper
impl Debug for VaList<'_>
impl Debug for serde_json::value::Value
impl Debug for icu_locale_core::extensions::transform::value::Value
impl Debug for icu_locale_core::extensions::unicode::value::Value
impl Debug for VarError
impl Debug for Variant
impl Debug for VariantId
impl Debug for Variants
impl Debug for VariationSelector
impl Debug for Vars
impl Debug for VarsOs
impl Debug for VerifierBuilderError
impl Debug for Version
impl Debug for VerticalOrientation
impl Debug for std::sync::WaitTimeoutResult
impl Debug for parking_lot::condvar::WaitTimeoutResult
impl Debug for core::task::wake::Waker
impl Debug for mio::waker::Waker
impl Debug for WantsServerCert
impl Debug for WantsVerifier
impl Debug for WantsVersions
impl Debug for WebPkiClientVerifier
impl Debug for WebPkiServerVerifier
impl Debug for WebPkiSupportedAlgorithms
impl Debug for WebSocketFrame
impl Debug for WebSocketOpcode
impl Debug for WhiteSpace
impl Debug for WordBreak
impl Debug for WouldBlock
impl Debug for WriterPanicked
impl Debug for Xdigit
impl Debug for XidContinue
impl Debug for XidStart
impl Debug for xml::reader::events::XmlEvent
impl Debug for XmlVersion
impl Debug for Xoshiro128PlusPlus
impl Debug for Xoshiro256PlusPlus
impl Debug for ZeroTrieBuildError
impl Debug for ZopfliNode
impl Debug for __c_anonymous__kernel_fsid_t
impl Debug for __c_anonymous_elf32_rel
impl Debug for __c_anonymous_elf32_rela
impl Debug for __c_anonymous_elf64_rel
impl Debug for __c_anonymous_elf64_rela
impl Debug for __c_anonymous_ifc_ifcu
impl Debug for __c_anonymous_ifr_ifru
impl Debug for __c_anonymous_ifru_map
impl Debug for __c_anonymous_iwreq
impl Debug for __c_anonymous_ptp_perout_request_1
impl Debug for __c_anonymous_ptp_perout_request_2
impl Debug for __c_anonymous_ptrace_syscall_info_data
impl Debug for __c_anonymous_ptrace_syscall_info_entry
impl Debug for __c_anonymous_ptrace_syscall_info_exit
impl Debug for __c_anonymous_ptrace_syscall_info_seccomp
impl Debug for __c_anonymous_sockaddr_can_can_addr
impl Debug for __c_anonymous_sockaddr_can_j1939
impl Debug for __c_anonymous_sockaddr_can_tp
impl Debug for __c_anonymous_xsk_tx_metadata_union
impl Debug for __exit_status
impl Debug for __m128
impl Debug for __m256
impl Debug for __m512
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128h
impl Debug for __m128i
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for __tile1024i
impl Debug for __timeval
impl Debug for _libc_fpstate
impl Debug for _libc_fpxreg
impl Debug for _libc_xmmreg
impl Debug for addrinfo
impl Debug for af_alg_iv
impl Debug for aiocb
impl Debug for arpd_request
impl Debug for arphdr
impl Debug for arpreq
impl Debug for arpreq_old
impl Debug for bcm_msg_head
impl Debug for bcm_timeval
impl Debug for bf16
impl Debug for bool
impl Debug for c_void
impl Debug for can_berr_counter
impl Debug for can_bittiming
impl Debug for can_bittiming_const
impl Debug for can_clock
impl Debug for can_ctrlmode
impl Debug for can_device_stats
impl Debug for can_filter
impl Debug for can_frame
impl Debug for canfd_frame
impl Debug for canxl_frame
impl Debug for char
impl Debug for clone_args
impl Debug for cmsghdr
impl Debug for cpu_set_t
impl Debug for dirent
impl Debug for dirent64
impl Debug for dl_phdr_info
impl Debug for dmabuf_cmsg
impl Debug for dmabuf_token
impl Debug for dqblk
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl Debug for epoll_event
impl Debug for epoll_params
impl Debug for ethhdr
impl Debug for f16
impl Debug for f32
impl Debug for f64
impl Debug for f16b
impl Debug for f128
impl Debug for fanotify_event_info_error
impl Debug for fanotify_event_info_fid
impl Debug for fanotify_event_info_header
impl Debug for fanotify_event_info_pidfd
impl Debug for fanotify_event_metadata
impl Debug for fanotify_response
impl Debug for fanout_args
impl Debug for fd_set
impl Debug for ff_condition_effect
impl Debug for ff_constant_effect
impl Debug for ff_effect
impl Debug for ff_envelope
impl Debug for ff_periodic_effect
impl Debug for ff_ramp_effect
impl Debug for ff_replay
impl Debug for ff_rumble_effect
impl Debug for ff_trigger
impl Debug for file_clone_range
impl Debug for file_handle
impl Debug for flock
impl Debug for flock64
impl Debug for fpos64_t
impl Debug for fpos_t
impl Debug for fsid_t
impl Debug for futex_waitv
impl Debug for genlmsghdr
impl Debug for glob64_t
impl Debug for glob_t
impl Debug for group
impl Debug for hostent
impl Debug for hwtstamp_config
impl Debug for i8
impl Debug for i16
impl Debug for i32
impl Debug for i64
impl Debug for i128
impl Debug for if_nameindex
impl Debug for ifaddrmsg
impl Debug for ifaddrs
impl Debug for ifconf
impl Debug for ifinfomsg
impl Debug for ifreq
impl Debug for in6_addr
impl Debug for in6_ifreq
impl Debug for in6_pktinfo
impl Debug for in6_rtmsg
impl Debug for in_addr
impl Debug for in_pktinfo
impl Debug for inotify_event
impl Debug for input_absinfo
impl Debug for input_event
impl Debug for input_id
impl Debug for input_keymap_entry
impl Debug for input_mask
impl Debug for iocb
impl Debug for iovec
impl Debug for ip_mreq
impl Debug for ip_mreq_source
impl Debug for ip_mreqn
impl Debug for ipc_perm
impl Debug for ipv6_mreq
impl Debug for isize
impl Debug for itimerspec
impl Debug for itimerval
impl Debug for iw_discarded
impl Debug for iw_encode_ext
impl Debug for iw_event
impl Debug for iw_freq
impl Debug for iw_michaelmicfailure
impl Debug for iw_missed
impl Debug for iw_mlme
impl Debug for iw_param
impl Debug for iw_pmkid_cand
impl Debug for iw_pmksa
impl Debug for iw_point
impl Debug for iw_priv_args
impl Debug for iw_quality
impl Debug for iw_range
impl Debug for iw_scan_req
impl Debug for iw_statistics
impl Debug for iw_thrspy
impl Debug for iwreq
impl Debug for iwreq_data
impl Debug for j1939_filter
impl Debug for lconv
impl Debug for linger
impl Debug for mallinfo
impl Debug for mallinfo2
impl Debug for max_align_t
impl Debug for mbstate_t
impl Debug for mcontext_t
impl Debug for mmsghdr
impl Debug for mnt_ns_info
impl Debug for mntent
impl Debug for mount_attr
impl Debug for mq_attr
impl Debug for msghdr
impl Debug for msginfo
impl Debug for msqid_ds
impl Debug for netent
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for ntptimeval
impl Debug for open_how
impl Debug for option
impl Debug for packet_mreq
impl Debug for passwd
impl Debug for pidfd_info
impl Debug for pollfd
impl Debug for posix_spawn_file_actions_t
impl Debug for posix_spawnattr_t
impl Debug for protoent
impl Debug for pthread_attr_t
impl Debug for pthread_barrier_t
impl Debug for pthread_barrierattr_t
impl Debug for pthread_cond_t
impl Debug for pthread_condattr_t
impl Debug for pthread_mutex_t
impl Debug for pthread_mutexattr_t
impl Debug for pthread_rwlock_t
impl Debug for pthread_rwlockattr_t
impl Debug for ptp_clock_caps
impl Debug for ptp_clock_time
impl Debug for ptp_extts_event
impl Debug for ptp_extts_request
impl Debug for ptp_perout_request
impl Debug for ptp_pin_desc
impl Debug for ptp_sys_offset
impl Debug for ptp_sys_offset_extended
impl Debug for ptp_sys_offset_precise
impl Debug for ptrace_peeksiginfo_args
impl Debug for ptrace_rseq_configuration
impl Debug for ptrace_sud_config
impl Debug for ptrace_syscall_info
impl Debug for regex_t
impl Debug for regmatch_t
impl Debug for rlimit
impl Debug for rlimit64
impl Debug for rtattr
impl Debug for rtentry
impl Debug for rusage
impl Debug for sched_attr
impl Debug for sched_param
impl Debug for sctp_authinfo
impl Debug for sctp_initmsg
impl Debug for sctp_nxtinfo
impl Debug for sctp_prinfo
impl Debug for sctp_rcvinfo
impl Debug for sctp_sndinfo
impl Debug for sctp_sndrcvinfo
impl Debug for seccomp_data
impl Debug for seccomp_notif
impl Debug for seccomp_notif_addfd
impl Debug for seccomp_notif_resp
impl Debug for seccomp_notif_sizes
impl Debug for sem_t
impl Debug for sembuf
impl Debug for semid_ds
impl Debug for seminfo
impl Debug for servent
impl Debug for shmid_ds
impl Debug for sigaction
impl Debug for sigevent
impl Debug for siginfo_t
impl Debug for signalfd_siginfo
impl Debug for sigset_t
impl Debug for sigval
impl Debug for sock_extended_err
impl Debug for sock_filter
impl Debug for sock_fprog
impl Debug for sock_txtime
impl Debug for sockaddr
impl Debug for sockaddr_alg
impl Debug for sockaddr_can
impl Debug for sockaddr_in
impl Debug for sockaddr_in6
impl Debug for sockaddr_iucv
impl Debug for sockaddr_ll
impl Debug for sockaddr_nl
impl Debug for sockaddr_pkt
impl Debug for sockaddr_storage
impl Debug for sockaddr_un
impl Debug for sockaddr_vm
impl Debug for sockaddr_xdp
impl Debug for spwd
impl Debug for stack_t
impl Debug for stat
impl Debug for stat64
impl Debug for statfs
impl Debug for statfs64
impl Debug for statvfs
impl Debug for statvfs64
impl Debug for statx
impl Debug for statx_timestamp
impl Debug for str
impl Debug for sysinfo
impl Debug for tcp_info
impl Debug for termios
impl Debug for termios2
impl Debug for timespec
impl Debug for timeval
impl Debug for timex
impl Debug for timezone
impl Debug for tls12_crypto_info_aes_ccm_128
impl Debug for tls12_crypto_info_aes_gcm_128
impl Debug for tls12_crypto_info_aes_gcm_256
impl Debug for tls12_crypto_info_aria_gcm_128
impl Debug for tls12_crypto_info_aria_gcm_256
impl Debug for tls12_crypto_info_chacha20_poly1305
impl Debug for tls12_crypto_info_sm4_ccm
impl Debug for tls12_crypto_info_sm4_gcm
impl Debug for tls_crypto_info
impl Debug for tm
impl Debug for tms
impl Debug for tpacket2_hdr
impl Debug for tpacket3_hdr
impl Debug for tpacket_auxdata
impl Debug for tpacket_bd_header_u
impl Debug for tpacket_bd_ts
impl Debug for tpacket_block_desc
impl Debug for tpacket_hdr
impl Debug for tpacket_hdr_v1
impl Debug for tpacket_hdr_variant1
impl Debug for tpacket_req
impl Debug for tpacket_req3
impl Debug for tpacket_req_u
impl Debug for tpacket_rollover_stats
impl Debug for tpacket_stats
impl Debug for tpacket_stats_v3
impl Debug for tpacket_versions
impl Debug for u8
impl Debug for u16
impl Debug for u32
impl Debug for u64
impl Debug for u128
impl Debug for ucontext_t
impl Debug for ucred
impl Debug for uinput_abs_setup
impl Debug for uinput_ff_erase
impl Debug for uinput_ff_upload
impl Debug for uinput_setup
impl Debug for uinput_user_dev
impl Debug for user
impl Debug for user_fpregs_struct
impl Debug for user_regs_struct
impl Debug for usize
impl Debug for utimbuf
impl Debug for utmpx
impl Debug for utsname
impl Debug for winsize
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<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'h> Debug for memchr::arch::all::memchr::OneIter<'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::sse2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::ThreeIter<'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::sse2::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::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::TwoIter<'a, 'h>
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, C, T> Debug for rustls::stream::Stream<'a, C, T>
impl<'a, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
alloc or std only.impl<'a, E> Debug for StrDeserializer<'a, E>
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> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, L> Debug for Okm<'a, L>
impl<'a, P> Debug for MatchIndices<'a, P>
impl<'a, P> Debug for Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for core::str::iter::RSplit<'a, P>
impl<'a, P> Debug for core::str::iter::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for core::str::iter::Split<'a, P>
impl<'a, P> Debug for core::str::iter::SplitInclusive<'a, P>
impl<'a, P> Debug for core::str::iter::SplitN<'a, P>
impl<'a, P> Debug for SplitTerminator<'a, P>
impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T>
impl<'a, R, T> Debug for lock_api::mutex::MappedMutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockWriteGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::mutex::MutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockWriteGuard<'a, R, T>
impl<'a, S, T> Debug for IndexedSamples<'a, S, 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 VarZeroSliceIter<'a, T, F>
impl<'a, T, P> Debug for ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, T> Debug for AsyncFdReadyGuard<'a, T>
impl<'a, T> Debug for AsyncFdReadyMutGuard<'a, T>
impl<'a, T> Debug for Choose<'a, T>where
T: Debug,
impl<'a, T> Debug for Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for CodePointMapDataBorrowed<'a, T>
impl<'a, T> Debug for CodePointMapRangeIterator<'a, T>
impl<'a, T> Debug for DerIterator<'a, T>where
T: Debug,
impl<'a, T> Debug for smallvec::Drain<'a, T>
impl<'a, T> Debug for std::sync::mpmc::Iter<'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 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 tokio::sync::mutex::MappedMutexGuard<'a, T>
impl<'a, T> Debug for PropertyNamesLongBorrowed<'a, T>where
T: Debug + NamedEnumeratedProperty,
<T as NamedEnumeratedProperty>::DataStructLongBorrowed<'a>: Debug,
impl<'a, T> Debug for PropertyNamesShortBorrowed<'a, T>where
T: Debug + NamedEnumeratedProperty,
<T as NamedEnumeratedProperty>::DataStructShortBorrowed<'a>: Debug,
impl<'a, T> Debug for PropertyParserBorrowed<'a, T>where
T: Debug,
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 alloc::collections::btree::set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for tokio::sync::watch::Ref<'a, T>where
T: Debug,
impl<'a, T> Debug for RwLockMappedWriteGuard<'a, T>
impl<'a, T> Debug for tokio::sync::rwlock::read_guard::RwLockReadGuard<'a, T>
impl<'a, T> Debug for tokio::sync::rwlock::write_guard::RwLockWriteGuard<'a, T>
impl<'a, T> Debug for std::sync::mpmc::TryIter<'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 Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ZeroSliceIter<'a, T>
impl<'a, V> Debug for VarZeroCow<'a, V>
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for xml::attribute::Attribute<'a>
impl<'a> Debug for BorrowedCertRevocationList<'a>
impl<'a> Debug for BorrowedRevokedCert<'a>
impl<'a> Debug for ByteSerialize<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for core::str::iter::Bytes<'a>
impl<'a> Debug for CanonicalCombiningClassMapBorrowed<'a>
impl<'a> Debug for CanonicalCompositionBorrowed<'a>
impl<'a> Debug for CanonicalDecompositionBorrowed<'a>
impl<'a> Debug for CertRevocationList<'a>
impl<'a> Debug for CertificateDer<'a>
impl<'a> Debug for CertificateRevocationListDer<'a>
impl<'a> Debug for CertificateSigningRequestDer<'a>
impl<'a> Debug for Char16TrieIterator<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for ClientHello<'a>
impl<'a> Debug for CodePointSetDataBorrowed<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for ComposingNormalizerBorrowed<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for DangerousClientConfig<'a>
impl<'a> Debug for DataIdentifierBorrowed<'a>
impl<'a> Debug for DataRequest<'a>
impl<'a> Debug for DecomposingNormalizerBorrowed<'a>
impl<'a> Debug for DnsName<'a>
impl<'a> Debug for EmojiSetDataBorrowed<'a>
impl<'a> Debug for EnterGuard<'a>
impl<'a> Debug for ErrorReportingUtf8Chars<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for core::str::iter::EscapeDebug<'a>
impl<'a> Debug for core::str::iter::EscapeDefault<'a>
impl<'a> Debug for core::str::iter::EscapeUnicode<'a>
impl<'a> Debug for FfdheGroup<'a>
impl<'a> Debug for InboundPlainMessage<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for IndexVecIter<'a>
impl<'a> Debug for InputPair<'a>
impl<'a> Debug for InputReference<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for serde_json::map::Iter<'a>
impl<'a> Debug for mio::event::events::Iter<'a>
impl<'a> Debug for serde_json::map::IterMut<'a>
impl<'a> Debug for serde_json::map::Keys<'a>
impl<'a> Debug for core::str::iter::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for MaybeUninitSlice<'a>
impl<'a> Debug for log::Metadata<'a>
impl<'a> Debug for MetadataBuilder<'a>
impl<'a> Debug for Name<'a>
impl<'a> Debug for Notified<'a>
impl<'a> Debug for OutboundChunks<'a>
impl<'a> Debug for OutboundPlainMessage<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for PathSegmentsMut<'a>
impl<'a> Debug for PercentDecode<'a>
impl<'a> Debug for PercentEncode<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for PrivateKeyDer<'a>
impl<'a> Debug for RawPublicKeyEntity<'a>
impl<'a> Debug for tokio::net::tcp::split::ReadHalf<'a>
impl<'a> Debug for tokio::net::unix::split::ReadHalf<'a>
impl<'a> Debug for Record<'a>
impl<'a> Debug for RecordBuilder<'a>
impl<'a> Debug for core::error::Request<'a>
impl<'a> Debug for RevocationOptions<'a>
impl<'a> Debug for RevocationOptionsBuilder<'a>
impl<'a> Debug for ScriptExtensionsSet<'a>
impl<'a> Debug for ScriptWithExtensionsBorrowed<'a>
impl<'a> Debug for SemaphorePermit<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for SourceFd<'a>
impl<'a> Debug for core::slice::ascii::SplitAsciiWhitespace<'a>
impl<'a> Debug for core::str::iter::SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'a>
impl<'a> Debug for SubjectPublicKeyInfoDer<'a>
impl<'a> Debug for TrustAnchor<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for UrlQuery<'a>
impl<'a> Debug for Utf8CharIndices<'a>
impl<'a> Debug for Utf8Chars<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Uts46MapperBorrowed<'a>
impl<'a> Debug for serde_json::map::Values<'a>
impl<'a> Debug for serde_json::map::ValuesMut<'a>
impl<'a> Debug for tokio::net::tcp::split::WriteHalf<'a>
impl<'a> Debug for tokio::net::unix::split::WriteHalf<'a>
impl<'a> Debug for xml::writer::events::XmlEvent<'a>
impl<'a> Debug for ZeroAsciiIgnoreCaseTrieCursor<'a>
impl<'a> Debug for ZeroTrieSimpleAsciiCursor<'a>
impl<'c, 'i, Data> Debug for UnbufferedStatus<'c, 'i, Data>where
Data: Debug,
impl<'data, I> Debug for Composition<'data, I>
impl<'data, I> Debug for Decomposition<'data, I>
impl<'data, T> Debug for PropertyCodePointMap<'data, T>
impl<'data> Debug for CanonicalCompositions<'data>
impl<'data> Debug for Char16Trie<'data>
impl<'data> Debug for CodePointInversionList<'data>
impl<'data> Debug for CodePointInversionListAndStringList<'data>
impl<'data> Debug for DecompositionData<'data>
impl<'data> Debug for DecompositionTables<'data>
impl<'data> Debug for NonRecursiveDecompositionSupplement<'data>
impl<'data> Debug for PropertyCodePointSet<'data>
impl<'data> Debug for PropertyEnumToValueNameLinearMap<'data>
impl<'data> Debug for PropertyScriptToIcuScriptMap<'data>
impl<'data> Debug for PropertyUnicodeSet<'data>
impl<'data> Debug for PropertyValueNameToEnumMap<'data>
impl<'data> Debug for ScriptWithExtensionsProperty<'data>
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<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'n> Debug for memchr::memmem::Finder<'n>
impl<'n> Debug for memchr::memmem::FinderRev<'n>
impl<'name, 'bufs, 'control> Debug for MsgHdr<'name, 'bufs, 'control>
impl<'name, 'bufs, 'control> Debug for MsgHdrMut<'name, 'bufs, 'control>
impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>
impl<'trie, T> Debug for CodePointTrie<'trie, T>
impl<'trie, T> Debug for FastCodePointTrie<'trie, T>
impl<'trie, T> Debug for SmallCodePointTrie<'trie, T>
impl<A, B, C, D, E, F, Format> Debug for Tuple6VarULE<A, B, C, D, E, F, Format>
impl<A, B, C, D, E, F> Debug for Tuple6ULE<A, B, C, D, E, F>
impl<A, B, C, D, E, Format> Debug for Tuple5VarULE<A, B, C, D, E, Format>
impl<A, B, C, D, E> Debug for Tuple5ULE<A, B, C, D, E>
impl<A, B, C, D, Format> Debug for Tuple4VarULE<A, B, C, D, Format>
impl<A, B, C, D> Debug for Tuple4ULE<A, B, C, D>
impl<A, B, C, Format> Debug for Tuple3VarULE<A, B, C, Format>
impl<A, B, C> Debug for Replace<A, B, C>
impl<A, B, C> Debug for Tuple3ULE<A, B, C>
impl<A, B, Format> Debug for Tuple2VarULE<A, B, Format>
impl<A, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for Concat<A, B>
impl<A, B> Debug for Tuple2ULE<A, B>
impl<A, B> Debug for VarTuple<A, B>
impl<A, B> Debug for Zip<A, B>
impl<A, V> Debug for VarTupleULE<A, V>
impl<A> Debug for Aad<A>where
A: Debug,
impl<A> Debug for EnumAccessDeserializer<A>where
A: Debug,
impl<A> Debug for smallvec::IntoIter<A>
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for MapAccessDeserializer<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 core::iter::sources::repeat::Repeat<A>where
A: Debug,
impl<A> Debug for RepeatN<A>where
A: Debug,
impl<A> Debug for SeqAccessDeserializer<A>where
A: Debug,
impl<A> Debug for SmallVec<A>
impl<B, C> Debug for ControlFlow<B, C>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for alloc::io::util::Lines<B>where
B: Debug,
impl<B> Debug for PublicKeyComponents<B>where
B: Debug,
impl<B> Debug for bytes::buf::reader::Reader<B>where
B: Debug,
impl<B> Debug for alloc::io::util::Split<B>where
B: Debug,
impl<B> Debug for ring::agreement::UnparsedPublicKey<B>
impl<B> Debug for ring::signature::UnparsedPublicKey<B>
impl<B> Debug for Writer<B>where
B: Debug,
impl<C0, C1> Debug for EitherCart<C0, C1>
impl<C, T> Debug for StreamOwned<C, T>
impl<C> Debug for CartableOptionPointer<C>
impl<D, F, T, S> Debug for rand::distr::distribution::Map<D, F, T, S>
impl<D, R, T> Debug for rand::distr::distribution::Iter<D, R, T>
impl<Data> Debug for ConnectionState<'_, '_, Data>
impl<DataStruct> Debug for ErasedMarker<DataStruct>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
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 Report<E>
impl<E> Debug for StringDeserializer<E>
alloc or std 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, S> Debug for Typed<F, S>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<F> Debug for core::iter::sources::from_fn::FromFn<F>
impl<F> Debug for http_request::self::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for RepeatWith<F>
impl<G> Debug for BlockRng<G>
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, F> Debug for FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for Inspect<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::map::Map<I, F>where
I: Debug,
impl<I, G> Debug for IntersperseWith<I, G>
impl<I, P> Debug for Filter<I, P>where
I: Debug,
impl<I, P> Debug for MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeWhile<I, P>where
I: Debug,
impl<I, St, F> Debug for Scan<I, St, F>
impl<I, U, F> Debug for FlatMap<I, U, F>
impl<I, U> Debug for Flatten<I>
impl<I, const N: usize> Debug for ArrayChunks<I, N>
impl<I> Debug for Cloned<I>where
I: Debug,
impl<I> Debug for Copied<I>where
I: Debug,
impl<I> Debug for Cycle<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for Enumerate<I>where
I: Debug,
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for Fuse<I>where
I: Debug,
impl<I> Debug for Intersperse<I>
impl<I> Debug for Peekable<I>
impl<I> Debug for Skip<I>where
I: Debug,
impl<I> Debug for StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<IO> Debug for StartHandshake<IO>where
IO: Debug,
impl<IO> Debug for tokio_rustls::client::TlsStream<IO>where
IO: Debug,
impl<IO> Debug for tokio_rustls::server::TlsStream<IO>where
IO: Debug,
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::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::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::RangeToInclusive<Idx>where
Idx: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, 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, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::Drain<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::IntoIter<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>where
K: Debug,
A: AllocatorClone,
impl<K, V, A> Debug for std::collections::hash::map::IntoValues<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>where
V: Debug,
A: AllocatorClone,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::VacantEntry<'_, K, V, A>
impl<K, V, F, A> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F, A>
impl<K, V, R, F, A> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S, A> Debug for HashMap<K, V, S, A>
impl<K, V, S> Debug for litemap::map::Entry<'_, K, V, S>
impl<K, V, S> Debug for LiteMap<K, V, S>
impl<K, V, S> Debug for litemap::map::OccupiedEntry<'_, K, V, S>
impl<K, V, S> Debug for litemap::map::VacantEntry<'_, K, V, S>
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for alloc::collections::btree::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 alloc::collections::btree::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K> Debug for alloc::collections::btree::set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<M, O> Debug for DataPayloadOr<M, O>where
M: DynamicDataMarker,
&'a <<M as DynamicDataMarker>::DataStruct as Yokeable<'a>>::Output: for<'a> Debug,
O: Debug,
impl<M, P> Debug for DataProviderWithMarker<M, P>
impl<M> Debug for Data<M>
impl<M> Debug for DataPayload<M>where
M: DynamicDataMarker,
&'a <<M as DynamicDataMarker>::DataStruct as Yokeable<'a>>::Output: for<'a> Debug,
impl<M> Debug for DataRef<M>
impl<M> Debug for DataResponse<M>where
M: DynamicDataMarker,
&'a <<M as DynamicDataMarker>::DataStruct as Yokeable<'a>>::Output: for<'a> Debug,
impl<N> Debug for OpeningKey<N>where
N: NonceSequence,
impl<N> Debug for SealingKey<N>where
N: NonceSequence,
impl<P> Debug for MaybeDangling<P>
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<Public, Private> Debug for KeyPairComponents<Public, Private>where
PublicKeyComponents<Public>: 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<R, V> Debug for ChaChaCore<R, V>
impl<R, W> Debug for Join<R, W>
impl<R> Debug for alloc::io::buffered::bufreader::BufReader<R>
impl<R> Debug for tokio::io::util::buf_reader::BufReader<R>where
R: Debug,
impl<R> Debug for alloc::io::util::Bytes<R>where
R: Debug,
impl<R> Debug for CrcReader<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzEncoder<R>where
R: Debug,
impl<R> Debug for tokio::io::util::lines::Lines<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for RngReader<R>where
R: TryRng,
std only.impl<R> Debug for tokio::io::util::split::Split<R>where
R: Debug,
impl<R> Debug for tokio::io::util::take::Take<R>where
R: Debug,
impl<R> Debug for UnwrapErr<R>
impl<R> Debug for flate2::zlib::bufread::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibEncoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibEncoder<R>where
R: Debug,
impl<RW> Debug for BufStream<RW>where
RW: Debug,
impl<S> Debug for Host<S>where
S: Debug,
impl<S> Debug for SecretTooShortError<S>
impl<S> Debug for SecretWithSeedError<S>
impl<Side, State> Debug for ConfigBuilder<Side, State>where
Side: ConfigSide,
State: Debug,
impl<SliceType> Debug for brotli::enc::interface::Command<SliceType>
impl<SliceType> Debug for FeatureFlagSliceType<SliceType>
impl<SliceType> Debug for LiteralCommand<SliceType>
impl<SliceType> Debug for PredictionModeContextMap<SliceType>
impl<Store> Debug for ZeroAsciiIgnoreCaseTrie<Store>
impl<Store> Debug for ZeroTrie<Store>where
Store: Debug,
impl<Store> Debug for ZeroTrieExtendedCapacity<Store>
impl<Store> Debug for ZeroTriePerfectHash<Store>
impl<Store> Debug for ZeroTrieSimpleAscii<Store>
impl<T, A> Debug for Arc<T, A>
impl<T, A> Debug for BTreeSet<T, A>where
T: Debug,
A: AllocatorClone,
impl<T, A> Debug for BinaryHeap<T, A>
impl<T, A> Debug for Box<T, A>
impl<T, A> Debug for alloc::collections::linked_list::Cursor<'_, T, A>
impl<T, A> Debug for alloc::collections::linked_list::CursorMut<'_, T, A>
impl<T, A> Debug for alloc::collections::btree::set::Difference<'_, T, A>where
T: Debug,
A: AllocatorClone,
impl<T, A> Debug for alloc::collections::vec_deque::drain::Drain<'_, T, A>
impl<T, A> Debug for alloc::vec::drain::Drain<'_, T, A>
impl<T, A> Debug for alloc::collections::btree::set::entry::Entry<'_, T, A>
impl<T, A> Debug for alloc::collections::btree::set::Intersection<'_, T, A>where
T: Debug,
A: AllocatorClone,
impl<T, A> Debug for alloc::collections::binary_heap::IntoIter<T, A>
impl<T, A> Debug for alloc::collections::linked_list::IntoIter<T, A>
impl<T, A> Debug for alloc::collections::vec_deque::into_iter::IntoIter<T, A>
impl<T, A> Debug for http_request::IntoIter<T, A>
impl<T, A> Debug for alloc::collections::btree::set::IntoIter<T, A>
impl<T, A> Debug for IntoIterSorted<T, A>
impl<T, A> Debug for LinkedList<T, A>
impl<T, A> Debug for alloc::collections::btree::set::entry::OccupiedEntry<'_, T, A>
impl<T, A> Debug for alloc::vec::peek_mut::PeekMut<'_, T, A>
impl<T, A> Debug for alloc::collections::binary_heap::PeekMut<'_, T, A>
impl<T, A> Debug for Rc<T, A>
impl<T, A> Debug for UniqueArc<T, A>
impl<T, A> Debug for UniqueRc<T, A>
impl<T, A> Debug for alloc::collections::btree::set::entry::VacantEntry<'_, T, A>
impl<T, A> Debug for Vec<T, A>
impl<T, A> Debug for VecDeque<T, A>
impl<T, A> Debug for alloc::rc::Weak<T, A>
impl<T, A> Debug for alloc::sync::Weak<T, A>
impl<T, E> Debug for Result<T, E>
impl<T, F, A> Debug for alloc::collections::linked_list::ExtractIf<'_, T, F, A>
impl<T, F, A> Debug for alloc::collections::vec_deque::extract_if::ExtractIf<'_, T, F, A>
impl<T, F, A> Debug for alloc::vec::extract_if::ExtractIf<'_, T, F, A>
impl<T, F, S> Debug for ScopeGuard<T, F, S>
impl<T, F> Debug for DropGuard<T, F>
impl<T, F> Debug for LazyCell<T, F>where
T: Debug,
impl<T, F> Debug for LazyLock<T, F>where
T: Debug,
impl<T, F> Debug for Successors<T, F>where
T: Debug,
impl<T, F> Debug for TaskLocalFuture<T, F>where
T: 'static + Debug,
impl<T, F> Debug for VarZeroSlice<T, F>
impl<T, F> Debug for VarZeroVec<'_, T, F>
impl<T, P> Debug for core::slice::iter::RSplit<'_, T, P>
impl<T, P> Debug for RSplitMut<'_, T, P>
impl<T, P> Debug for core::slice::iter::RSplitN<'_, T, P>
impl<T, P> Debug for RSplitNMut<'_, T, P>
impl<T, P> Debug for core::slice::iter::Split<'_, T, P>
impl<T, P> Debug for core::slice::iter::SplitInclusive<'_, T, P>
impl<T, P> Debug for SplitInclusiveMut<'_, T, P>
impl<T, P> Debug for SplitMut<'_, T, P>
impl<T, P> Debug for core::slice::iter::SplitN<'_, T, P>
impl<T, P> Debug for SplitNMut<'_, T, P>
impl<T, R, F, A> Debug for alloc::collections::btree::set::ExtractIf<'_, T, R, F, A>where
T: Debug,
A: AllocatorClone,
impl<T, S, A> Debug for std::collections::hash::set::Difference<'_, T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::Entry<'_, T, S, A>
impl<T, S, A> Debug for HashSet<T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::Intersection<'_, T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::OccupiedEntry<'_, T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::SymmetricDifference<'_, T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::Union<'_, T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::VacantEntry<'_, T, S, A>
impl<T, U> Debug for core::io::util::Chain<T, U>
impl<T, U> Debug for tokio::io::util::chain::Chain<T, U>
impl<T, U> Debug for bytes::buf::chain::Chain<T, U>
impl<T, U> Debug for OwnedMappedMutexGuard<T, U>
impl<T, U> Debug for OwnedRwLockMappedWriteGuard<T, U>
impl<T, U> Debug for OwnedRwLockReadGuard<T, U>
impl<T, const N: usize, A> Debug for BoxedArrayIntoIter<T, N, A>
impl<T, const N: usize> Debug for core::array::iter::IntoIter<T, N>where
T: Debug,
impl<T, const N: usize> Debug for Mask<T, N>where
T: MaskElement + Debug,
impl<T, const N: usize> Debug for Simd<T, N>where
T: SimdElement + Debug,
impl<T, const N: usize> Debug for [T; N]where
T: Debug,
impl<T, const VARIANT: u32, const FIELD: u32> Debug for FieldRepresentingType<T, VARIANT, FIELD>where
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for AssertUnwindSafe<T>where
T: Debug,
impl<T> Debug for AsyncFd<T>
impl<T> Debug for AsyncFdTryNewError<T>
impl<T> Debug for Atomic<*mut T>
target_has_atomic_load_store=ptr only.impl<T> Debug for BlackBox<T>
impl<T> Debug for BorrowedBuf<'_, T>
impl<T> Debug for BorrowedCursor<'_, T>
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Cell<T>
impl<T> Debug for CodePointMapData<T>
impl<T> Debug for CodePointMapRange<T>where
T: Debug,
impl<T> Debug for Complex<T>where
T: Debug,
impl<T> Debug for CovariantUnsafeCell<T>where
T: ?Sized,
impl<T> Debug for CtOption<T>where
T: Debug,
impl<T> Debug for core::io::cursor::Cursor<T>where
T: Debug,
impl<T> Debug for Discriminant<T>
impl<T> Debug for core::iter::sources::empty::Empty<T>
impl<T> Debug for std::sync::mpmc::IntoIter<T>where
T: Debug,
impl<T> Debug for std::sync::mpsc::IntoIter<T>where
T: Debug,
impl<T> Debug for core::result::IntoIter<T>where
T: Debug,
impl<T> Debug for bytes::buf::iter::IntoIter<T>where
T: Debug,
impl<T> Debug for core::slice::iter::Iter<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::binary_heap::Iter<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::btree::set::Iter<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::linked_list::Iter<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::vec_deque::iter::Iter<'_, T>where
T: Debug,
impl<T> Debug for core::slice::iter::IterMut<'_, 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_mut::IterMut<'_, T>where
T: Debug,
impl<T> Debug for std::thread::join_handle::JoinHandle<T>
impl<T> Debug for tokio::runtime::task::join::JoinHandle<T>where
T: Debug,
impl<T> Debug for JoinSet<T>
impl<T> Debug for Limit<T>where
T: Debug,
impl<T> Debug for std::thread::local::LocalKey<T>where
T: 'static,
impl<T> Debug for tokio::task::task_local::LocalKey<T>where
T: 'static,
impl<T> Debug for LossyWrap<T>where
T: Debug,
impl<T> Debug for ManuallyDrop<T>
impl<T> Debug for std::sync::nonpoison::mutex::MappedMutexGuard<'_, T>
impl<T> Debug for std::sync::poison::mutex::MappedMutexGuard<'_, T>
impl<T> Debug for std::sync::nonpoison::rwlock::MappedRwLockReadGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::MappedRwLockReadGuard<'_, T>
impl<T> Debug for std::sync::nonpoison::rwlock::MappedRwLockWriteGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::MappedRwLockWriteGuard<'_, T>
impl<T> Debug for MaybeUninit<T>
impl<T> Debug for std::sync::nonpoison::mutex::Mutex<T>
impl<T> Debug for std::sync::poison::mutex::Mutex<T>
impl<T> Debug for tokio::sync::mutex::Mutex<T>
impl<T> Debug for rustls::lock::std_lock::Mutex<T>where
T: Debug,
impl<T> Debug for std::sync::nonpoison::mutex::MutexGuard<'_, T>
impl<T> Debug for std::sync::poison::mutex::MutexGuard<'_, T>
impl<T> Debug for tokio::sync::mutex::MutexGuard<'_, T>
impl<T> Debug for NonNull<T>where
T: ?Sized,
impl<T> Debug for NonZero<T>where
T: ZeroablePrimitive + Debug,
impl<T> Debug for NumBuffer<T>where
T: NumBufferTrait,
impl<T> Debug for core::iter::sources::once::Once<T>where
T: Debug,
impl<T> Debug for core::cell::once::OnceCell<T>where
T: Debug,
impl<T> Debug for tokio::sync::once_cell::OnceCell<T>where
T: Debug,
impl<T> Debug for OnceLock<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for OwnedMutexGuard<T>
impl<T> Debug for OwnedPermit<T>
impl<T> Debug for OwnedRwLockWriteGuard<T>
impl<T> Debug for Pending<T>
impl<T> Debug for Permit<'_, T>
impl<T> Debug for PermitIterator<'_, T>
impl<T> Debug for PhantomContravariant<T>where
T: ?Sized,
impl<T> Debug for PhantomCovariant<T>where
T: ?Sized,
impl<T> Debug for PhantomData<T>where
T: ?Sized,
impl<T> Debug for PhantomInvariant<T>where
T: ?Sized,
impl<T> Debug for PoisonError<T>
impl<T> Debug for http_request::Poll<T>where
T: Debug,
impl<T> Debug for PropertyNamesLong<T>where
T: NamedEnumeratedProperty,
impl<T> Debug for PropertyNamesShort<T>where
T: NamedEnumeratedProperty,
impl<T> Debug for PropertyParser<T>where
T: Debug,
impl<T> Debug for tokio::io::split::ReadHalf<T>where
T: Debug,
impl<T> Debug for core::future::ready::Ready<T>where
T: Debug,
impl<T> Debug for std::sync::mpmc::Receiver<T>
impl<T> Debug for std::sync::mpsc::Receiver<T>
impl<T> Debug for std::sync::oneshot::Receiver<T>
impl<T> Debug for tokio::sync::broadcast::Receiver<T>
impl<T> Debug for tokio::sync::mpsc::bounded::Receiver<T>
impl<T> Debug for tokio::sync::oneshot::Receiver<T>where
T: Debug,
impl<T> Debug for tokio::sync::watch::Receiver<T>where
T: Debug,
impl<T> Debug for std::sync::oneshot::RecvTimeoutError<T>
impl<T> Debug for ReentrantLock<T>
impl<T> Debug for ReentrantLockGuard<'_, 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 Rev<T>where
T: Debug,
impl<T> Debug for Reverse<T>where
T: Debug,
impl<T> Debug for std::sync::nonpoison::rwlock::RwLock<T>
impl<T> Debug for std::sync::poison::rwlock::RwLock<T>
impl<T> Debug for tokio::sync::rwlock::RwLock<T>
impl<T> Debug for std::sync::nonpoison::rwlock::RwLockReadGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::RwLockReadGuard<'_, T>
impl<T> Debug for std::sync::nonpoison::rwlock::RwLockWriteGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::RwLockWriteGuard<'_, T>
impl<T> Debug for Saturating<T>where
T: Debug,
impl<T> Debug for std::sync::mpsc::SendError<T>
impl<T> Debug for tokio::sync::mpsc::error::SendError<T>
impl<T> Debug for tokio::sync::watch::error::SendError<T>
impl<T> Debug for tokio::sync::broadcast::error::SendError<T>where
T: Debug,
impl<T> Debug for std::sync::mpmc::error::SendTimeoutError<T>
impl<T> Debug for tokio::sync::mpsc::error::SendTimeoutError<T>
time only.