pub(crate) trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}
Expand description
?
formatting.
Debug
should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive
a Debug
implementation.
When used with the alternate format specifier #?
, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive]
if all fields implement Debug
. When
derive
d for structs, it will use the name of the struct
, then {
, then a
comma-separated list of each field’s name and Debug
value, then }
. For
enum
s, it will use the name of the variant and, if applicable, (
, then the
Debug
values of the fields, then )
.
§Stability
Derived Debug
formats are not stable, and so may change with future Rust
versions. Additionally, Debug
implementations of types provided by the
standard library (std
, core
, alloc
, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
There are a number of helper methods on the Formatter
struct to help you with manual
implementations, such as debug_struct
.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter
trait (debug_struct
, debug_tuple
,
debug_list
, debug_set
, debug_map
) can do something totally custom by
manually writing an arbitrary representation to the Formatter
.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}
Debug
implementations using either derive
or the debug builder API
on Formatter
support pretty-printing using the alternate flag: {:#?}
.
Pretty-printing with #?
:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);
Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err
if, and only if, the provided Formatter
returns Err
.
String formatting is considered an infallible operation; this function only
returns a Result
because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");
Implementors§
impl Debug for fs_mistrust::err::Error
impl Debug for TrustedGroup
impl Debug for TrustedUser
impl Debug for ErasedSinkTrySendError
impl Debug for tor_basic_utils::n_key_list::Error
impl Debug for tor_basic_utils::n_key_set::Error
impl Debug for tor_basic_utils::test_rng::Config
impl Debug for AbsRetryTime
impl Debug for RetryTime
impl Debug for tor_general_addr::general::AddrParseError
impl Debug for tor_general_addr::general::SocketAddr
impl Debug for InstallRuntimeError
impl Debug for Status
impl Debug for tor_memquota::Error
impl Debug for StartupError
impl Debug for ReclaimCrashed
impl Debug for ReclaimedErrorInner
impl Debug for CollapseReason
impl Debug for Reclaimed
impl Debug for Outcome
impl Debug for ConfigBuildError
impl Debug for tor_memquota::internal_prelude::ErrorKind
impl Debug for tor_memquota::internal_prelude::Ordering
impl Debug for ReconfigureError
impl Debug for Void
impl Debug for tor_memquota::internal_prelude::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for Sign
impl Debug for TryReserveErrorKind
impl Debug for core::ascii::ascii_char::AsciiChar
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for AtomicOrdering
impl Debug for core::net::ip_addr::IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for core::net::socket_addr::SocketAddr
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for core::slice::GetDisjointMutError
impl Debug for SearchStep
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for std::fs::TryLockError
impl Debug for std::io::SeekFrom
impl Debug for std::io::error::ErrorKind
impl Debug for std::net::Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for RecvTimeoutError
impl Debug for std::sync::mpsc::TryRecvError
impl Debug for TokioTpErr
impl Debug for FromHexError
impl Debug for log::Level
impl Debug for log::LevelFilter
impl Debug for FloatErrorKind
impl Debug for ShutdownResult
impl Debug for Always
impl Debug for OnSuccess
impl Debug for OnUnwind
impl Debug for DeserializerError
impl Debug for serde_value::de::Unexpected
impl Debug for serde_value::Value
impl Debug for SerializerError
impl Debug for Category
impl Debug for serde_json::value::Value
impl Debug for Origin
impl Debug for url::parser::ParseError
impl Debug for SyntaxViolation
impl Debug for url::slicing::Position
impl Debug for BernoulliError
impl Debug for rand::distr::uniform::Error
impl Debug for rand::distr::weighted::Error
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
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 CheckedDir
impl Debug for Mistrust
impl Debug for MistrustBuilder
impl Debug for MpscOtherSinkTrySendError
impl Debug for FilterCount
impl Debug for RetryDelay
impl Debug for Truncated
impl Debug for LooseCmpRetryTime
impl Debug for NoAfUnixSocketSupport
impl Debug for ConfigInner
impl Debug for DropBomb
impl Debug for DropBombCondition
impl Debug for TrackerCorrupted
impl Debug for CollapsedDueToReclaim
impl Debug for MpscSpec
impl Debug for MpscUnboundedSpec
impl Debug for ClaimedQty
impl Debug for ParticipQty
impl Debug for TotalQty
impl Debug for AId
impl Debug for ARecord
impl Debug for Account
impl Debug for AccountInner
impl Debug for tor_memquota::mtracker::Global
impl Debug for MemoryQuotaTracker
impl Debug for PId
impl Debug for PRecord
impl Debug for Participation
impl Debug for ParticipationInner
impl Debug for tor_memquota::mtracker::State
impl Debug for WeakAccount
impl Debug for WeakAccountInner
impl Debug for TotalQtyNotifier
impl Debug for Overflow
impl Debug for tor_memquota::Config
impl Debug for tor_memquota::ConfigBuilder
impl Debug for EnabledToken
impl Debug for MemoryReclaimedError
impl Debug for Arguments<'_>
impl Debug for tor_memquota::internal_prelude::fmt::Error
impl Debug for FormattingOptions
impl Debug for untrusted::input::Input<'_>
The value is intentionally omitted from the output to avoid leaking secrets.
impl Debug for EndOfInput
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 alloc::alloc::Global
impl Debug for Box<dyn Interpolator<Output = String>>
impl Debug for ByteString
impl Debug for UnorderedKeyError
impl Debug for alloc::collections::TryReserveError
impl Debug for CString
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for 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 ToUppercase
impl Debug for TryFromCharError
impl Debug for CpuidResult
impl Debug for __m128
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128h
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for bf16
impl Debug for CStr
impl Debug for FromBytesUntilNulError
impl Debug for SipHasher
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomPinned
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for core::net::ip_addr::Ipv4Addr
impl Debug for core::net::ip_addr::Ipv6Addr
impl Debug for core::net::parser::AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for core::num::dec2flt::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for PanicMessage<'_>
impl Debug for core::ptr::alignment::Alignment
impl Debug for ParseBoolError
impl Debug for Utf8Error
impl Debug for core::str::iter::Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for Utf8Chunks<'_>
impl Debug for AtomicBool
impl Debug for AtomicI8
impl Debug for AtomicI16
impl Debug for AtomicI32
impl Debug for AtomicI64
impl Debug for AtomicIsize
impl Debug for AtomicU8
impl Debug for AtomicU16
impl Debug for AtomicU32
impl Debug for AtomicU64
impl Debug for AtomicUsize
impl Debug for core::task::wake::Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for core::task::wake::Waker
impl Debug for core::time::Duration
impl Debug for TryFromFloatSecsError
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for OsStr
impl Debug for OsString
impl Debug for std::fs::DirBuilder
impl Debug for std::fs::DirEntry
impl Debug for std::fs::File
impl Debug for FileTimes
impl Debug for std::fs::FileType
impl Debug for std::fs::Metadata
impl Debug for std::fs::OpenOptions
impl Debug for Permissions
impl Debug for std::fs::ReadDir
impl Debug for DefaultHasher
impl Debug for std::hash::random::RandomState
impl Debug for WriterPanicked
impl Debug for std::io::error::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for std::io::stdio::Stderr
impl Debug for StderrLock<'_>
impl Debug for std::io::stdio::Stdin
impl Debug for StdinLock<'_>
impl Debug for std::io::stdio::Stdout
impl Debug for StdoutLock<'_>
impl Debug for std::io::util::Empty
impl Debug for std::io::util::Repeat
impl Debug for std::io::util::Sink
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 BorrowedFd<'_>
impl Debug for OwnedFd
impl Debug for PidFd
impl Debug for std::os::unix::net::addr::SocketAddr
impl Debug for std::os::unix::net::datagram::UnixDatagram
impl Debug for std::os::unix::net::listener::UnixListener
impl Debug for std::os::unix::net::stream::UnixStream
impl Debug for std::os::unix::net::ucred::UCred
impl Debug for std::path::Components<'_>
impl Debug for std::path::Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for NormalizeError
impl Debug for std::path::Path
impl Debug for std::path::PathBuf
impl Debug for StripPrefixError
impl Debug for std::process::Child
impl Debug for std::process::ChildStderr
impl Debug for std::process::ChildStdin
impl Debug for std::process::ChildStdout
impl Debug for std::process::Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for Stdio
impl Debug for DefaultRandomSource
impl Debug for std::sync::barrier::Barrier
impl Debug for std::sync::barrier::BarrierWaitResult
impl Debug for std::sync::mpsc::RecvError
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for std::sync::poison::condvar::WaitTimeoutResult
impl Debug for std::sync::poison::once::Once
impl Debug for std::sync::poison::once::OnceState
impl Debug for std::thread::local::AccessError
impl Debug for std::thread::scoped::Scope<'_, '_>
impl Debug for std::thread::Builder
impl Debug for Thread
impl Debug for ThreadId
impl Debug for std::time::Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for AsyncStd
impl Debug for TokioTp
impl Debug for async_executors::iface::timer::TimeoutError
impl Debug for YieldNowFut
impl Debug for getrandom::error::Error
impl Debug for log::kv::error::Error
impl Debug for log::ParseLevelError
impl Debug for SetLoggerError
impl Debug for num_traits::ParseFloatError
impl Debug for KeyError
impl Debug for Asn1ObjectRef
impl Debug for Asn1StringRef
impl Debug for Asn1TimeRef
impl Debug for Asn1Type
impl Debug for TimeDiff
impl Debug for BigNum
impl Debug for BigNumRef
impl Debug for CMSOptions
impl Debug for DsaSig
impl Debug for Asn1Flag
impl Debug for openssl::error::Error
impl Debug for ErrorStack
impl Debug for DigestBytes
impl Debug for Nid
impl Debug for OcspCertStatus
impl Debug for OcspFlag
impl Debug for OcspResponseStatus
impl Debug for OcspRevokedStatus
impl Debug for KeyIvPair
impl Debug for Pkcs7Flags
impl Debug for openssl::pkey::Id
impl Debug for NonceType
impl Debug for Padding
impl Debug for SrtpProfileId
impl Debug for SslConnector
impl Debug for openssl::ssl::error::Error
impl Debug for ErrorCode
impl Debug for AlpnError
impl Debug for CipherLists
impl Debug for ClientHelloResponse
impl Debug for ExtensionContext
impl Debug for ShutdownState
impl Debug for SniError
impl Debug for Ssl
impl Debug for SslAlert
impl Debug for SslCipherRef
impl Debug for SslContext
impl Debug for SslMode
impl Debug for SslOptions
impl Debug for SslRef
impl Debug for SslSessionCacheMode
impl Debug for SslVerifyMode
impl Debug for SslVersion
impl Debug for OpensslString
impl Debug for OpensslStringRef
impl Debug for CrlReason
impl Debug for GeneralNameRef
impl Debug for X509
impl Debug for X509NameEntryRef
impl Debug for X509NameRef
impl Debug for X509VerifyResult
impl Debug for X509CheckFlags
impl Debug for X509VerifyFlags
impl Debug for IgnoredAny
impl Debug for serde::de::value::Error
impl Debug for serde_json::error::Error
impl Debug for serde_json::map::Map<String, Value>
impl Debug for Number
impl Debug for RawValue
impl Debug for CompactFormatter
impl Debug for DefaultKey
impl Debug for KeyData
impl Debug for Choice
impl Debug for OpaqueOrigin
impl Debug for Url
Debug the serialization of this URL.
impl Debug for value_bag::error::Error
impl Debug for Bernoulli
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for rand::distr::other::Alphabetic
impl Debug for Alphanumeric
impl Debug for rand::distr::slice::Empty
impl Debug for StandardUniform
impl Debug for UniformUsize
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for StepRng
impl Debug for SmallRng
impl Debug for StdRng
impl Debug for ThreadRng
Debug implementation does not leak internal state
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 OsError
impl Debug for OsRng
impl Debug for Assume
impl Debug for tor_memquota::internal_prelude::mpsc::SendError
impl Debug for tor_memquota::internal_prelude::mpsc::TryRecvError
impl Debug for Bug
impl Debug for CoarseInstant
impl Debug for DynTimeProvider
impl Debug for ByteQty
impl Debug for SpawnError
impl Debug for ACCESS_DESCRIPTION_st
impl Debug for ASN1_ADB_TABLE_st
impl Debug for ASN1_ADB_st
impl Debug for ASN1_AUX_st
impl Debug for ASN1_EXTERN_FUNCS_st
impl Debug for ASN1_ITEM_st
impl Debug for ASN1_TEMPLATE_st
impl Debug for ASN1_TLC_st
impl Debug for ASN1_VALUE_st
impl Debug for AUTHORITY_KEYID_st
impl Debug for AbortHandle
impl Debug for AbortHandle
impl Debug for AbortRegistration
impl Debug for Aborted
impl Debug for Accepted
impl Debug for AcceptedAlert
impl Debug for Access
impl Debug for AccessError
impl Debug for AccessKind
impl Debug for AccessMode
impl Debug for Acquire<'_>
impl Debug for AcquireArc
impl Debug for AcquireError
impl Debug for Action
impl Debug for Actual
impl Debug for AddrParseError
impl Debug for AddressFamily
impl Debug for Advice
impl Debug for AesBlockCipher
impl Debug for AlertDescription
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for AlgorithmId
impl Debug for AlgorithmId
impl Debug for AlgorithmIdentifier
impl Debug for AllocError
impl Debug for Alnum
impl Debug for Alphabetic
impl Debug for Alternation
impl Debug for AlwaysResolvesClientRawPublicKeys
impl Debug for AlwaysResolvesServerRawPublicKeys
impl Debug for Anchored
impl Debug for AnyDelimiterCodec
impl Debug for AnyDelimiterCodecError
impl Debug for Array
impl Debug for ArrayOfTables
impl Debug for AsAsciiStrError
impl Debug for AsciiChar
impl Debug for AsciiHexDigit
impl Debug for AsciiProbeResult
impl Debug for AsciiStr
impl Debug for AsciiString
impl Debug for Assertion
impl Debug for AssertionKind
impl Debug for Ast
impl Debug for AsyncStdNativeTlsRuntime
impl Debug for AsyncStdRustlsRuntime
impl Debug for AtFlags
impl Debug for AtomicWaker
impl Debug for AtomicWaker
impl Debug for Attribute
impl Debug for AttributeParseError
impl Debug for Attributes
impl Debug for BASIC_CONSTRAINTS_st
impl Debug for BStr
impl Debug for Backoff
impl Debug for Baked
impl Debug for Baked
impl Debug for Barrier
impl Debug for Barrier
impl Debug for BarrierWait<'_>
impl Debug for BarrierWaitResult
impl Debug for BarrierWaitResult
impl Debug for BasicEmoji
impl Debug for BidiClass
impl Debug for BidiControl
impl Debug for BidiMirrored
impl Debug for BidiMirroringGlyph
impl Debug for BidiPairedBracketType
impl Debug for BigEndian
impl Debug for BinaryError
impl Debug for Blank
impl Debug for BlockCipherId
impl Debug for Blocking
impl Debug for BoolOrAuto
impl Debug for BufferFormat
impl Debug for BufferMarker
impl Debug for BuildError
impl Debug for BuildError
impl Debug for Builder
impl Debug for Builder
impl Debug for Builder
impl Debug for Builder
impl Debug for Builder
impl Debug for Builder
impl Debug for Builder
impl Debug for ByteClasses
impl Debug for Bytes
impl Debug for Bytes
impl Debug for BytesCodec
impl Debug for BytesMut
impl Debug for CRYPTO_dynlock
impl Debug for CRYPTO_dynlock_value
impl Debug for Cache
impl Debug for Cache
impl Debug for Canceled
impl Debug for CancellationToken
impl Debug for CanonicalCombiningClass
impl Debug for CanonicalCombiningClassMap
impl Debug for CanonicalComposition
impl Debug for CanonicalDecomposition
impl Debug for Capture
impl Debug for CaptureLocations
impl Debug for CaptureLocations
impl Debug for CaptureName
impl Debug for Captures
impl Debug for Cart
impl Debug for CaseFoldError
impl Debug for CaseIgnorable
impl Debug for CaseSensitive
impl Debug for Cased
impl Debug for CertRevocationListError
impl Debug for CertificateCompressionAlgorithm
impl Debug for CertificateError
impl Debug for CertifiedKey
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 CharULE
impl Debug for Child
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for ChildStdout
impl Debug for CipherSuite
impl Debug for Class
impl Debug for ClassAscii
impl Debug for ClassAsciiKind
impl Debug for ClassBracketed
impl Debug for ClassBytes
impl Debug for ClassBytesRange
impl Debug for ClassPerl
impl Debug for ClassPerlKind
impl Debug for ClassSet
impl Debug for ClassSetBinaryOp
impl Debug for ClassSetBinaryOpKind
impl Debug for ClassSetItem
impl Debug for ClassSetRange
impl Debug for ClassSetUnion
impl Debug for ClassUnicode
impl Debug for ClassUnicode
impl Debug for ClassUnicodeKind
impl Debug for ClassUnicodeOpKind
impl Debug for ClassUnicodeRange
impl Debug for ClientCertVerified
impl Debug for ClientCertVerifierBuilder
impl Debug for ClientConfig
impl Debug for ClientConnection
impl Debug for ClientConnection
impl Debug for ClientConnectionData
impl Debug for ClientSessionMemoryCache
impl Debug for Clock
impl Debug for ClockId
impl Debug for CmdLine
impl Debug for CoarseDuration
impl Debug for CodePointInversionListAndStringListULE
impl Debug for CodePointInversionListULE
impl Debug for CodePointSetData
impl Debug for CodePointTrieHeader
impl Debug for CollectionAllocErr
impl Debug for Command
impl Debug for Command
impl Debug for Comment
impl Debug for CompareResult
impl Debug for Compiler
impl Debug for ComposingNormalizer
impl Debug for CompressionCache
impl Debug for CompressionCacheInner
impl Debug for CompressionFailed
impl Debug for CompressionLevel
impl Debug for Concat
impl Debug for Condvar
impl Debug for Condvar
impl Debug for Config
impl Debug for Config
impl Debug for Config
impl Debug for Config
impl Debug for Config
impl Debug for Config
impl Debug for ConfigError
impl Debug for ConfigResolveError
impl Debug for ConfigurationSource
impl Debug for ConfigurationSources
impl Debug for ConfigurationTree
impl Debug for Connection
impl Debug for Connection
impl Debug for ContentType
impl Debug for Context
impl Debug for Context
impl Debug for Context<'_>
impl Debug for ControlModes
impl Debug for CreateFlags
impl Debug for CreateFlags
impl Debug for CreateKind
impl Debug for CryptoProvider
impl Debug for CurrencyType
impl Debug for Current
impl Debug for Curve25519SeedBin<'_>
impl Debug for DES_cblock_st
impl Debug for DES_ks
impl Debug for DIR
impl Debug for DIST_POINT_st
impl Debug for DSA_SIG_st
impl Debug for DangerousClientConfigBuilder
impl Debug for Dash
impl Debug for DataChange
impl Debug for DataError
impl Debug for DataErrorKind
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 Date
impl Debug for Datetime
impl Debug for DatetimeParseError
impl Debug for DebouncedEvent
impl Debug for DebouncedEvent
impl Debug for DebouncedEventKind
impl Debug for DebugByte
impl Debug for DecInt
impl Debug for Decomposed
impl Debug for DecomposingNormalizer
impl Debug for DecompressionFailed
impl Debug for Decor
impl Debug for DecryptingKey
impl Debug for DecryptionContext
impl Debug for DefaultCallsite
impl Debug for DefaultGuard
impl Debug for DefaultIgnorableCodePoint
impl Debug for DefaultTimeProvider
impl Debug for DenseTransitions
impl Debug for Deprecated
impl Debug for Der<'_>
impl Debug for DerTypeId
impl Debug for DeserializeError
impl Debug for Diacritic
impl Debug for Digest
impl Debug for Digest
impl Debug for DigitallySignedStruct
impl Debug for Dir
impl Debug for DirBuilder
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for DirEntry
impl Debug for DirEntry
impl Debug for DirEntry
impl Debug for Direction
impl Debug for DisfavouredKey
impl Debug for Dispatch
impl Debug for DistinguishedName
impl Debug for DivError
impl Debug for Dl_info
impl Debug for DocumentMut
impl Debug for Domain
impl Debug for Dot
impl Debug for DropGuard
impl Debug for DumpableBehavior
impl Debug for DupFlags
impl Debug for DuplexStream
impl Debug for Duration
impl Debug for Duration
impl Debug for EC_builtin_curve
impl Debug for EDIPartyName_st
impl Debug for EarlyDataError
impl Debug for EastAsianWidth
impl Debug for EcPrivateKeyBin<'_>
impl Debug for EcPrivateKeyRfc5915Der<'_>
impl Debug for EcPublicKeyCompressedBin<'_>
impl Debug for EcPublicKeyUncompressedBin<'_>
impl Debug for EcdsaKeyPair
impl Debug for EcdsaKeyPair
impl Debug for EcdsaSigningAlgorithm
impl Debug for EcdsaSigningAlgorithm
impl Debug for EcdsaVerificationAlgorithm
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 Ed25519KeyPair
impl Debug for EdDSAParameters
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 Emoji
impl Debug for EmojiComponent
impl Debug for EmojiModifier
impl Debug for EmojiModifierBase
impl Debug for EmojiPresentation
impl Debug for EmojiSetData
impl Debug for Empty
impl Debug for Empty
impl Debug for Empty
impl Debug for Empty
impl Debug for Empty
impl Debug for Empty
impl Debug for EmptyError
impl Debug for EncapsulatedSecret
impl Debug for EncapsulationKeyBytes<'_>
impl Debug for EncodeError
impl Debug for EncryptError
impl Debug for EncryptedClientHelloError
impl Debug for EncryptingKey
impl Debug for EncryptionAlgorithmId
impl Debug for EncryptionContext
impl Debug for EndianMode
impl Debug for Endianness
impl Debug for Enter
impl Debug for EnterError
impl Debug for EnteredSpan
impl Debug for EphemeralPrivateKey
impl Debug for EphemeralPrivateKey
impl Debug for Errno
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for ErrorKind
impl Debug for ErrorKind
impl Debug for ErrorKind
impl Debug for Errors
impl Debug for Event
impl Debug for Event
impl Debug for Event
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 Event
impl Debug for EventAttributes
impl Debug for EventFlags
impl Debug for EventKind
impl Debug for EventListener
impl Debug for EventMask
impl Debug for EventfdFlags
impl Debug for Events
impl Debug for Events
impl Debug for Executor<'_>
impl Debug for ExpirationPolicy
impl Debug for ExtendStrategy
impl Debug for ExtendedKeyPurpose
impl Debug for ExtendedPictographic
impl Debug for Extender
impl Debug for ExtensionType
impl Debug for Extensions
impl Debug for ExtractKind
impl Debug for Extractor
impl Debug for FILE
impl Debug for FakeStream
impl Debug for FallocateFlags
impl Debug for FdFlags
impl Debug for Field
impl Debug for FieldSet
impl Debug for Fields
impl Debug for Figment
impl Debug for File
impl Debug for File
impl Debug for FileTime
impl Debug for FileType
impl Debug for FileWatcherBuildError
impl Debug for FilterOp
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for FinderBuilder
impl Debug for FinderRev
impl Debug for FinderRev
impl Debug for FixedState
impl Debug for FixedState
impl Debug for Flag
impl Debug for Flag
impl Debug for Flags
impl Debug for FlagsItem
impl Debug for FlagsItemKind
impl Debug for FloatIsNan
impl Debug for FloatingPointEmulationControl
impl Debug for FloatingPointExceptionMode
impl Debug for FloatingPointMode
impl Debug for Flock
impl Debug for FlockOffsetType
impl Debug for FlockOperation
impl Debug for FlockType
impl Debug for FormattedDuration
impl Debug for FromSliceError
impl Debug for FromStrError
impl Debug for Fsid
impl Debug for FullCompositionExclusion
impl Debug for GENERAL_SUBTREE_st
impl Debug for GeneralCategory
impl Debug for GeneralCategoryGroup
impl Debug for GeneralCategoryOutOfBoundsError
impl Debug for GetDisjointMutError
impl Debug for GetRandomFailed
impl Debug for Gid
impl Debug for GlobalExecutorConfig
impl Debug for Graph
impl Debug for GraphemeBase
impl Debug for GraphemeClusterBreak
impl Debug for GraphemeExtend
impl Debug for GraphemeLink
impl Debug for Group
impl Debug for GroupInfo
impl Debug for GroupInfoError
impl Debug for GroupKind
impl Debug for HRSS_private_key
impl Debug for HRSS_public_key
impl Debug for HalfMatch
impl Debug for Handle
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 HexDigit
impl Debug for HexLiteralKind
impl Debug for Hir
impl Debug for HirKind
impl Debug for Host
impl Debug for HpkePublicKey
impl Debug for HpkeSuite
impl Debug for Hyphen
impl Debug for IFlags
impl Debug for INotifyWatcher
impl Debug for ISSUING_DIST_POINT_st
impl Debug for Id
impl Debug for Id
impl Debug for IdContinue
impl Debug for IdStart
impl Debug for Identifier
impl Debug for Ideographic
impl Debug for IdsBinaryOperator
impl Debug for IdsTrinaryOperator
impl Debug for Incoming<'_>
impl Debug for Incoming<'_>
impl Debug for InconsistentKeys
impl Debug for Index8
impl Debug for Index16
impl Debug for Index32
impl Debug for IndicSyllabicCategory
impl Debug for InlineTable
impl Debug for Inotify
impl Debug for InputModes
impl Debug for Instant
impl Debug for Instant
impl Debug for InsufficientSizeError
impl Debug for Interest
impl Debug for Interest
impl Debug for Interest
impl Debug for InterfaceIndexOrAddress
impl Debug for InternalString
impl Debug for Interval
impl Debug for Interval
impl Debug for IntoIter
impl Debug for InvalidBoolOrAuto
impl Debug for InvalidDnsNameError
impl Debug for InvalidListen
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 IpAddr
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for Item
impl Debug for Iter
impl Debug for Iter<'_>
impl Debug for Itimerspec
impl Debug for JoinControl
impl Debug for JoinError
impl Debug for JoiningType
impl Debug for JsonCodecError
impl Debug for KbkdfCtrHmacAlgorithm
impl Debug for KbkdfCtrHmacAlgorithmId
impl Debug for Key
impl Debug for Key
impl Debug for Key
impl Debug for Key
impl Debug for Key
impl Debug for KeyExchangeAlgorithm
impl Debug for KeyLogFile
impl Debug for KeyPair
impl Debug for KeyPair
impl Debug for KeyRejected
impl Debug for KeyRejected
impl Debug for KeySize
impl Debug for KeyUsage
impl Debug for Keywords
impl Debug for Kind
impl Debug for Kind
impl Debug for Language
impl Debug for LanguageIdentifier
impl Debug for LengthDelimitedCodec
impl Debug for LengthDelimitedCodecError
impl Debug for LengthHint
impl Debug for LessSafeKey
impl Debug for LessSafeKey
impl Debug for Level
impl Debug for LevelFilter
impl Debug for LineBreak
impl Debug for LinesCodec
impl Debug for LinesCodecError
impl Debug for Listen
impl Debug for ListenUnsupported
impl Debug for Literal
impl Debug for Literal
impl Debug for Literal
impl Debug for LiteralKind
impl Debug for LittleEndian
impl Debug for LocalEnterGuard
impl Debug for LocalExecutor<'_>
impl Debug for LocalModes
impl Debug for LocalPool
impl Debug for LocalSet
impl Debug for LocalSpawner
impl Debug for Locale
impl Debug for LocalePreferences
impl Debug for LogicalOrderException
impl Debug for Look
impl Debug for Look
impl Debug for LookMatcher
impl Debug for LookSet
impl Debug for LookSet
impl Debug for LookSetIter
impl Debug for LookSetIter
impl Debug for Lowercase
impl Debug for MachineCheckMemoryCorruptionKillPolicy
impl Debug for Map<String, Value>
impl Debug for Match
impl Debug for MatchError
impl Debug for MatchErrorKind
impl Debug for MatchKind
impl Debug for Math
impl Debug for MaxRecursionReached
impl Debug for MemfdFlags
impl Debug for Metadata
impl Debug for MetadataKind
impl Debug for MissedTickBehavior
impl Debug for MockPwdGrpProvider
impl Debug for Mode
impl Debug for ModifyKind
impl Debug for MustRead
impl Debug for NAME_CONSTRAINTS_st
impl Debug for NFA
impl Debug for NOTICEREF_st
impl Debug for NamedGroup
impl Debug for Needed
impl Debug for Netscape_spkac_st
impl Debug for Netscape_spki_st
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 NoOpStreamOpsHandle
impl Debug for NoServerSessionStorage
impl Debug for NoSubscriber
impl Debug for NonMaxUsize
impl Debug for NonUtf8Error
impl Debug for NoncharacterCodePoint
impl Debug for Notify
impl Debug for NullWatcher
impl Debug for Num
impl Debug for NumberingSystem
impl Debug for OFlags
impl Debug for OaepAlgorithm
impl Debug for OaepPrivateDecryptingKey
impl Debug for OaepPublicEncryptingKey
impl Debug for Offset
impl Debug for Once
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for OnceState
impl Debug for One
impl Debug for One
impl Debug for One
impl Debug for OpenOptions
impl Debug for OpenOptions
impl Debug for OpenOptions
impl Debug for OperatingMode
impl Debug for OptionalActions
impl Debug for Other
impl Debug for OtherError
impl Debug for OutboundOpaqueMessage
impl Debug for OutputLengthError
impl Debug for OutputModes
impl Debug for OverlappingState
impl Debug for OwnedCertRevocationList
impl Debug for OwnedReadHalf
impl Debug for OwnedReadHalf
impl Debug for OwnedRevokedCert
impl Debug for OwnedSemaphorePermit
impl Debug for OwnedWriteHalf
impl Debug for OwnedWriteHalf
impl Debug for POLICYINFO_st
impl Debug for POLICY_CONSTRAINTS_st
impl Debug for POLICY_MAPPING_st
impl Debug for PTracer
impl Debug for PaddedBlockDecryptingKey
impl Debug for PaddedBlockEncryptingKey
impl Debug for PaddingLevel
impl Debug for Pair
impl Debug for ParkResult
impl Debug for ParkToken
impl Debug for Parker
impl Debug for Parker
impl Debug for ParseError
impl Debug for ParseError
impl Debug for ParseError
impl Debug for ParseError
impl Debug for ParseLengthError
impl Debug for ParseLevelError
impl Debug for ParseLevelFilterError
impl Debug for Parser
impl Debug for Parser
impl Debug for ParserBuilder
impl Debug for ParserBuilder
impl Debug for Part
impl Debug for Path
impl Debug for PathBuf
impl Debug for PatternID
impl Debug for PatternIDError
impl Debug for PatternSet
impl Debug for PatternSetInsertError
impl Debug for PatternSyntax
impl Debug for PatternWhiteSpace
impl Debug for PeerIncompatible
impl Debug for PeerMisbehaved
impl Debug for Pid
impl Debug for PidfdFlags
impl Debug for PidfdGetfdFlags
impl Debug for PikeVM
impl Debug for PipeFlags
impl Debug for Pkcs1PrivateDecryptingKey
impl Debug for Pkcs1PublicEncryptingKey
impl Debug for Pkcs8V1Der<'_>
impl Debug for Pkcs8V2Der<'_>
impl Debug for PlainMessage
impl Debug for Poll
impl Debug for PollFlags
impl Debug for PollMode
impl Debug for PollNext
impl Debug for PollSemaphore
impl Debug for PollWatcher
impl Debug for Poller
impl Debug for PopError
impl Debug for Posit8
impl Debug for Posit16
impl Debug for Posit32
impl Debug for Posit64
impl Debug for Posit128
impl Debug for Posit256
impl Debug for Posit512
impl Debug for PositDecodeError
impl Debug for Position
impl Debug for Position
impl Debug for PotentialCodePoint
impl Debug for PotentialUtf8
impl Debug for PotentialUtf16
impl Debug for PqdsaPrivateKeyRaw<'_>
impl Debug for PqdsaSeedRaw<'_>
impl Debug for PrctlMmMap
impl Debug for PreferencesParseError
impl Debug for PreferredRuntime
impl Debug for Prefilter
impl Debug for PrefilterConfig
impl Debug for PrefixedPayload
impl Debug for PrependedConcatenationMark
impl Debug for Print
impl Debug for Printer
impl Debug for Printer
impl Debug for Private
impl Debug for PrivateDecryptingKey
impl Debug for PrivateKey
impl Debug for PrivateKey<'_>
impl Debug for PrivatePkcs1KeyDer<'_>
impl Debug for PrivatePkcs8KeyDer<'_>
impl Debug for PrivateSec1KeyDer<'_>
impl Debug for Prk
impl Debug for Prk
impl Debug for ProcessingError
impl Debug for ProcessingSuccess
impl Debug for Profile
impl Debug for Properties
impl Debug for Protocol
impl Debug for Protocol
impl Debug for Protocol
impl Debug for ProtocolVersion
impl Debug for PublicEncryptingKey
impl Debug for PublicKey
impl Debug for PublicKey
impl Debug for PublicKey
impl Debug for PublicKey
impl Debug for PublicKey
impl Debug for PublicKey
impl Debug for PublicKeyX509Der<'_>
impl Debug for PwdGrp
impl Debug for QueueSelector
impl Debug for QuotationMark
impl Debug for RIPEMD160state_st
impl Debug for Radical
impl Debug for RandomState
impl Debug for RandomState
impl Debug for RandomizedNonceKey
impl Debug for Range
impl Debug for RangeError
impl Debug for RawString
impl Debug for ReadBuf<'_>
impl Debug for ReadDir
impl Debug for ReadDir
impl Debug for ReadFlags
impl Debug for ReadWriteFlags
impl Debug for Ready
impl Debug for RealCoarseTimeProvider
impl Debug for RealEffectiveSavedIds
impl Debug for Receiver
impl Debug for Receiver
impl Debug for Receiver
impl Debug for Reconfigure
impl Debug for RecursiveMode
impl Debug for RecvError
impl Debug for RecvError
impl Debug for RecvError
impl Debug for RecvError
impl Debug for RecvError
impl Debug for RecvFlags
impl Debug for RecvFlags
impl Debug for RecvMsg
impl Debug for Regex
impl Debug for Regex
impl Debug for Regex
impl Debug for RegexBuilder
impl Debug for RegexBuilder
impl Debug for RegexSet
impl Debug for RegexSet
impl Debug for RegexSetBuilder
impl Debug for RegexSetBuilder
impl Debug for Region
impl Debug for RegionOverride
impl Debug for RegionalIndicator
impl Debug for RegionalSubdivision
impl Debug for Registry
impl Debug for RelativePathBuf
impl Debug for RemoveKind
impl Debug for RenameFlags
impl Debug for RenameMode
impl Debug for Repeat
impl Debug for Repeat
impl Debug for Repeat
impl Debug for Repeat
impl Debug for Repetition
impl Debug for Repetition
impl Debug for RepetitionKind
impl Debug for RepetitionOp
impl Debug for RepetitionRange
impl Debug for Repr
impl Debug for RequeueOp
impl Debug for RequiredEkuNotFoundContext
impl Debug for ResolveFlags
impl Debug for ResolvesServerCertUsingSni
impl Debug for Resource
impl Debug for Resumption
impl Debug for ReturnFlags
impl Debug for ReuniteError
impl Debug for ReuniteError
impl Debug for RevocationCheckDepth
impl Debug for RevocationReason
impl Debug for Rfc3339Timestamp
impl Debug for Rlimit
impl Debug for Rng
impl Debug for RootCertStore
impl Debug for RsaParameters
impl Debug for RsaParameters
impl Debug for Runtime
impl Debug for RuntimeFlavor
impl Debug for RuntimeMetrics
impl Debug for Salt
impl Debug for Salt
impl Debug for ScheduleInfo
impl Debug for Scope<'_>
impl Debug for Script
impl Debug for Script
impl Debug for ScriptWithExtensions
impl Debug for SealFlags
impl Debug for Secret
impl Debug for SectionKind
impl Debug for Seed<'_>
impl Debug for SeedableRandomState
impl Debug for SeedableRandomState
impl Debug for SeekFrom
impl Debug for SegmentStarter
impl Debug for Semaphore
impl Debug for Semaphore
impl Debug for SemaphoreGuardArc
impl Debug for SendFlags
impl Debug for Sender
impl Debug for Sender
impl Debug for Sender
impl Debug for SentenceBreak
impl Debug for SentenceTerminal
impl Debug for Seq
impl Debug for SerializeError
impl Debug for ServerCertVerified
impl Debug for ServerCertVerifierBuilder
impl Debug for ServerConfig
impl Debug for ServerConnection
impl Debug for ServerConnection
impl Debug for ServerConnectionData
impl Debug for ServerName<'_>
impl Debug for ServerSessionMemoryCache
impl Debug for SetFlags
impl Debug for SetGlobalDefaultError
impl Debug for SetMatches
impl Debug for SetMatches
impl Debug for SetMatchesIntoIter
impl Debug for SetMatchesIntoIter
impl Debug for Shutdown
impl Debug for Side
impl Debug for SigId
impl Debug for Signal
impl Debug for Signal
impl Debug for Signal
impl Debug for SignalKind
impl Debug for Signals
impl Debug for SignatureAlgorithm
impl Debug for SignatureScheme
impl Debug for SimplexStream
impl Debug for SingleCertAndKey
impl Debug for Sink
impl Debug for Sink
impl Debug for Sink
impl Debug for Sink
impl Debug for Sleep
impl Debug for SleepError
impl Debug for SmallIndex
impl Debug for SmallIndexError
impl Debug for SockAddr
impl Debug for SockRef<'_>
impl Debug for Socket
impl Debug for SocketAddr
impl Debug for SocketAddrAny
impl Debug for SocketAddrNetlink
impl Debug for SocketAddrUnix
impl Debug for SocketAddrXdp
impl Debug for SocketAddrXdpFlags
impl Debug for SocketFlags
impl Debug for SocketType
impl Debug for SoftDotted
impl Debug for Source
impl Debug for Span
impl Debug for Span
impl Debug for Span
impl Debug for SparseTransitions
impl Debug for SpecialCodeIndex
impl Debug for SpecialCodes
impl Debug for SpecialLiteralKind
impl Debug for SpeculationFeature
impl Debug for SpeculationFeatureControl
impl Debug for SpeculationFeatureState
impl Debug for SpliceFlags
impl Debug for SskdfDigestAlgorithm
impl Debug for SskdfDigestAlgorithmId
impl Debug for SskdfHmacAlgorithm
impl Debug for SskdfHmacAlgorithmId
impl Debug for StartError
impl Debug for StartKind
impl Debug for Stat
impl Debug for StatFs
impl Debug for StatVfsMountFlags
impl Debug for State
impl Debug for StateID
impl Debug for StateIDError
impl Debug for Statx
impl Debug for StatxAttributes
impl Debug for StatxFlags
impl Debug for StatxTimestamp
impl Debug for Stderr
impl Debug for Stderr
impl Debug for Stdin
impl Debug for Stdin
impl Debug for Stdout
impl Debug for Stdout
impl Debug for StrContext
impl Debug for StrContextValue
impl Debug for SubdivisionId
impl Debug for SubdivisionSuffix
impl Debug for Subtag
impl Debug for Subtag
impl Debug for SupportedCipherSuite
impl Debug for SupportedProtocolVersion
impl Debug for SystemRandom
impl Debug for SystemRandom
impl Debug for Table
impl Debug for Tag
impl Debug for Tag
impl Debug for Tag
impl Debug for Tag
impl Debug for Task
impl Debug for TaskId
impl Debug for TcpKeepalive
impl Debug for TcpListener
impl Debug for TcpListener
impl Debug for TcpListener
impl Debug for TcpSocket
impl Debug for TcpStream
impl Debug for TcpStream
impl Debug for TcpStream
impl Debug for TerminalPunctuation
impl Debug for Termios
impl Debug for Three
impl Debug for Three
impl Debug for Three
impl Debug for TicketRotator
impl Debug for TicketSwitcher
impl Debug for Time
impl Debug for TimeStampCounterReadability
impl Debug for TimeZoneShortId
impl Debug for Timeout
impl Debug for TimeoutError
impl Debug for TimeoutError
impl Debug for TimeoutError
impl Debug for Timer
impl Debug for TimerfdClockId
impl Debug for TimerfdFlags
impl Debug for TimerfdTimerFlags
impl Debug for Timespec
impl Debug for Timestamp
impl Debug for Timestamps
impl Debug for TimingMethod
impl Debug for Tls12CipherSuite
impl Debug for Tls12ClientSessionValue
impl Debug for Tls12Resumption
impl Debug for Tls13CipherSuite
impl Debug for Tls13ClientSessionValue
impl Debug for TlsAcceptor
impl Debug for TlsConnector
impl Debug for TlsConnector
impl Debug for TlsProtocolId
impl Debug for TlsRecordOpeningKey
impl Debug for TlsRecordSealingKey
impl Debug for ToAsciiCharError
impl Debug for Token
impl Debug for TokioNativeTlsRuntime
impl Debug for TokioRustlsRuntime
impl Debug for TomlError
impl Debug for TooLargeBufferRequiredError
impl Debug for Transform
impl Debug for Transition
impl Debug for Translator
impl Debug for TranslatorBuilder
impl Debug for TrieResult
impl Debug for TrieType
impl Debug for TryAcquireError
impl Debug for TryCurrentError
impl Debug for TryGetError
impl Debug for TryIoError
impl Debug for TryLockError
impl Debug for TryRecvError
impl Debug for TryRecvError
impl Debug for TryRecvError
impl Debug for TryRecvError
impl Debug for TryRecvError
impl Debug for TryRecvError
impl Debug for TryReserveError
impl Debug for TryReserveError
impl Debug for Two
impl Debug for Two
impl Debug for Two
impl Debug for Type
impl Debug for UCred
impl Debug for UCred
impl Debug for USERNOTICE_st
impl Debug for UdpSocket
impl Debug for UdpSocket
impl Debug for UdpSocket
impl Debug for Uid
impl Debug for UleError
impl Debug for UnalignedAccessControl
impl Debug for UnboundCipherKey
impl Debug for UnboundKey
impl Debug for UnboundKey
impl Debug for UncasedStr
impl Debug for UnexpectedNullPointerError
impl Debug for Unicode
impl Debug for UnicodeWordBoundaryError
impl Debug for UnicodeWordError
impl Debug for UnifiedIdeograph
impl Debug for UninitSlice
impl Debug for UninitializedFieldError
impl Debug for Unit
impl Debug for UnitError
impl Debug for UnixDatagram
impl Debug for UnixDatagram
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixListener
impl Debug for UnixListener
impl Debug for UnixSocket
impl Debug for UnixStream
impl Debug for UnixStream
impl Debug for UnixStream
impl Debug for UnixTime
impl Debug for UnknownStatusPolicy
impl Debug for UnparkResult
impl Debug for UnparkToken
impl Debug for Unparker
impl Debug for Unparker
impl Debug for Unspecified
impl Debug for Unspecified
impl Debug for UnsupportedAddress
impl Debug for UnsupportedAfUnixAddressType
impl Debug for UnsupportedOperationError
impl Debug for UnsupportedStreamOp
impl Debug for Updater
impl Debug for Uppercase
impl Debug for Utf8CharsError
impl Debug for Utf8Range
impl Debug for Utf8Sequence
impl Debug for Utf8Sequences
impl Debug for Uts46Mapper
impl Debug for Value
impl Debug for Value
impl Debug for Value
impl Debug for Value
impl Debug for Value
impl Debug for Variant
impl Debug for Variants
impl Debug for VariationSelector
impl Debug for VerifierBuilderError
impl Debug for Version
impl Debug for VerticalOrientation
impl Debug for VirtualMemoryMapAddress
impl Debug for WaitForCancellationFutureOwned
impl Debug for WaitGroup
impl Debug for WaitIdOptions
impl Debug for WaitIdStatus
impl Debug for WaitOptions
impl Debug for WaitStatus
impl Debug for WaitTimeoutResult
impl Debug for Waker
impl Debug for WalkDir
impl Debug for WantsServerCert
impl Debug for WantsVerifier
impl Debug for WantsVersions
impl Debug for WatchDescriptor
impl Debug for WatchFlags
impl Debug for WatchMask
impl Debug for WatcherKind
impl Debug for Watches
impl Debug for WeakDispatch
impl Debug for WebPkiClientVerifier
impl Debug for WebPkiServerVerifier
impl Debug for WebPkiSupportedAlgorithms
impl Debug for WhichCaptures
impl Debug for WhiteSpace
impl Debug for Winsize
impl Debug for WithComments
impl Debug for WordBreak
impl Debug for WrongVariantError
impl Debug for X509_VERIFY_PARAM_st
impl Debug for X509_algor_st
impl Debug for X509_crl_st
impl Debug for X509_extension_st
impl Debug for X509_info_st
impl Debug for X509_name_entry_st
impl Debug for X509_name_st
impl Debug for X509_pubkey_st
impl Debug for X509_req_st
impl Debug for X509_sig_st
impl Debug for XattrFlags
impl Debug for Xdigit
impl Debug for XdpDesc
impl Debug for XdpDescOptions
impl Debug for XdpMmapOffsets
impl Debug for XdpOptions
impl Debug for XdpOptionsFlags
impl Debug for XdpRingFlags
impl Debug for XdpRingOffset
impl Debug for XdpStatistics
impl Debug for XdpUmemReg
impl Debug for XdpUmemRegFlags
impl Debug for XidContinue
impl Debug for XidStart
impl Debug for YieldFuture
impl Debug for YieldNow
impl Debug for ZeroTrieBuildError
impl Debug for _IO_FILE
impl Debug for _IO_codecvt
impl Debug for _IO_marker
impl Debug for _IO_wide_data
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 __kernel_fd_set
impl Debug for __kernel_fsid_t
impl Debug for __kernel_itimerspec
impl Debug for __kernel_old_itimerval
impl Debug for __kernel_old_timespec
impl Debug for __kernel_old_timeval
impl Debug for __kernel_sock_timeval
impl Debug for __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1
impl Debug for __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1
impl Debug for __kernel_timespec
impl Debug for __old_kernel_stat
impl Debug for __sifields__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_4
impl Debug for __sifields__bindgen_ty_6
impl Debug for __sifields__bindgen_ty_7
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3
impl Debug for __timeval
impl Debug for __user_cap_data_struct
impl Debug for __user_cap_header_struct
impl Debug for __va_list_tag
impl Debug for _bindgen_ty_1
impl Debug for _bindgen_ty_1
impl Debug for _bindgen_ty_2
impl Debug for _bindgen_ty_2
impl Debug for _bindgen_ty_3
impl Debug for _bindgen_ty_3
impl Debug for _bindgen_ty_4
impl Debug for _bindgen_ty_4
impl Debug for _bindgen_ty_5
impl Debug for _bindgen_ty_5
impl Debug for _bindgen_ty_6
impl Debug for _bindgen_ty_6
impl Debug for _bindgen_ty_7
impl Debug for _bindgen_ty_7
impl Debug for _bindgen_ty_8
impl Debug for _bindgen_ty_8
impl Debug for _bindgen_ty_9
impl Debug for _bindgen_ty_9
impl Debug for _bindgen_ty_10
impl Debug for _bindgen_ty_10
impl Debug for _bindgen_ty_11
impl Debug for _bindgen_ty_12
impl Debug for _bindgen_ty_13
impl Debug for _bindgen_ty_14
impl Debug for _bindgen_ty_15
impl Debug for _bindgen_ty_16
impl Debug for _bindgen_ty_17
impl Debug for _bindgen_ty_18
impl Debug for _bindgen_ty_19
impl Debug for _bindgen_ty_20
impl Debug for _bindgen_ty_21
impl Debug for _bindgen_ty_22
impl Debug for _bindgen_ty_23
impl Debug for _bindgen_ty_24
impl Debug for _bindgen_ty_25
impl Debug for _bindgen_ty_26
impl Debug for _bindgen_ty_27
impl Debug for _bindgen_ty_28
impl Debug for _bindgen_ty_29
impl Debug for _bindgen_ty_30
impl Debug for _bindgen_ty_31
impl Debug for _bindgen_ty_32
impl Debug for _bindgen_ty_33
impl Debug for _bindgen_ty_34
impl Debug for _bindgen_ty_35
impl Debug for _bindgen_ty_36
impl Debug for _bindgen_ty_37
impl Debug for _bindgen_ty_38
impl Debug for _bindgen_ty_39
impl Debug for _bindgen_ty_40
impl Debug for _bindgen_ty_41
impl Debug for _bindgen_ty_42
impl Debug for _bindgen_ty_43
impl Debug for _bindgen_ty_44
impl Debug for _bindgen_ty_45
impl Debug for _bindgen_ty_46
impl Debug for _bindgen_ty_47
impl Debug for _bindgen_ty_48
impl Debug for _bindgen_ty_49
impl Debug for _bindgen_ty_50
impl Debug for _bindgen_ty_51
impl Debug for _bindgen_ty_52
impl Debug for _bindgen_ty_53
impl Debug for _bindgen_ty_54
impl Debug for _bindgen_ty_55
impl Debug for _bindgen_ty_56
impl Debug for _bindgen_ty_57
impl Debug for _bindgen_ty_58
impl Debug for _bindgen_ty_59
impl Debug for _bindgen_ty_60
impl Debug for _bindgen_ty_61
impl Debug for _bindgen_ty_62
impl Debug for _bindgen_ty_63
impl Debug for _bindgen_ty_64
impl Debug for _bindgen_ty_65
impl Debug for _bindgen_ty_66
impl Debug for _bindgen_ty_67
impl Debug for _libc_fpstate
impl Debug for _libc_fpxreg
impl Debug for _libc_xmmreg
impl Debug for _xt_align
impl Debug for addrinfo
impl Debug for aes_key_st
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 asn1_must_be_null_st
impl Debug for asn1_null_st
impl Debug for asn1_object_st
impl Debug for asn1_pctx_st
impl Debug for asn1_string_st
impl Debug for bf_key_st
impl Debug for bignum_ctx
impl Debug for bignum_st
impl Debug for bio_method_st
impl Debug for bio_st
impl Debug for blake2b_state_st
impl Debug for bn_mont_ctx_st
impl Debug for buf_mem_st
impl Debug for cachestat
impl Debug for cachestat_range
impl Debug for can_filter
impl Debug for cast_key_st
impl Debug for cbb_buffer_st
impl Debug for cbb_child_st
impl Debug for cbs_st
impl Debug for cisco_proto
impl Debug for clone_args
impl Debug for clone_args
impl Debug for cmac_ctx_st
impl Debug for cmsghdr
impl Debug for cmsghdr
impl Debug for compat_statfs64
impl Debug for conf_st
impl Debug for conf_value_st
impl Debug for cpu_set_t
impl Debug for crypto_buffer_pool_st
impl Debug for crypto_buffer_st
impl Debug for crypto_ex_data_st
impl Debug for ctr_drbg_state_st
impl Debug for dh_st
impl Debug for dirent
impl Debug for dirent64
impl Debug for dl_phdr_info
impl Debug for dmabuf_cmsg
impl Debug for dmabuf_cmsg
impl Debug for dmabuf_token
impl Debug for dmabuf_token
impl Debug for dqblk
impl Debug for dsa_st
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl Debug for dyn Value
impl Debug for ec_group_st
impl Debug for ec_key_method_st
impl Debug for ec_key_st
impl Debug for ec_method_st
impl Debug for ec_point_st
impl Debug for ecdsa_sig_st
impl Debug for engine_st
impl Debug for env_md_ctx_st
impl Debug for env_md_st
impl Debug for epoll_event
impl Debug for epoll_event
impl Debug for epoll_params
impl Debug for epoll_params
impl Debug for ethhdr
impl Debug for evp_aead_st
impl Debug for evp_cipher_ctx_st
impl Debug for evp_cipher_info_st
impl Debug for evp_cipher_st
impl Debug for evp_encode_ctx_st
impl Debug for evp_hpke_aead_st
impl Debug for evp_hpke_kdf_st
impl Debug for evp_hpke_kem_st
impl Debug for evp_hpke_key_st
impl Debug for evp_kem_st
impl Debug for evp_md_pctx_ops
impl Debug for evp_pkey_asn1_method_st
impl Debug for evp_pkey_ctx_signature_context_params_st
impl Debug for evp_pkey_ctx_st
impl Debug for evp_pkey_st
impl Debug for f_owner_ex
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_clone_range
impl Debug for file_dedupe_range
impl Debug for file_dedupe_range_info
impl Debug for files_stat_struct
impl Debug for flock
impl Debug for flock
impl Debug for flock64
impl Debug for flock64
impl Debug for fpos64_t
impl Debug for fpos_t
impl Debug for fr_proto
impl Debug for fr_proto_pvc
impl Debug for fr_proto_pvc_info
impl Debug for fs_sysfs_path
impl Debug for fsconfig_command
impl Debug for fscrypt_key
impl Debug for fscrypt_policy_v1
impl Debug for fscrypt_policy_v2
impl Debug for fscrypt_provisioning_key_payload
impl Debug for fsid_t
impl Debug for fstrim_range
impl Debug for fsuuid2
impl Debug for fsxattr
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 hmac_methods_st
impl Debug for hostent
impl Debug for hwtstamp_config
impl Debug for hwtstamp_config
impl Debug for hwtstamp_flags
impl Debug for hwtstamp_rx_filters
impl Debug for hwtstamp_tx_types
impl Debug for i256
impl Debug for i512
impl Debug for i1024
impl Debug for if_nameindex
impl Debug for if_stats_msg
impl Debug for ifa_cacheinfo
impl Debug for ifaddrmsg
impl Debug for ifaddrs
impl Debug for ifconf
impl Debug for ifinfomsg
impl Debug for ifla_bridge_id
impl Debug for ifla_cacheinfo
impl Debug for ifla_geneve_df
impl Debug for ifla_gtp_role
impl Debug for ifla_port_vsi
impl Debug for ifla_rmnet_flags
impl Debug for ifla_vf_broadcast
impl Debug for ifla_vf_guid
impl Debug for ifla_vf_link_state
impl Debug for ifla_vf_mac
impl Debug for ifla_vf_rate
impl Debug for ifla_vf_rss_query_en
impl Debug for ifla_vf_spoofchk
impl Debug for ifla_vf_trust
impl Debug for ifla_vf_tx_rate
impl Debug for ifla_vf_vlan
impl Debug for ifla_vf_vlan_info
impl Debug for ifla_vlan_flags
impl Debug for ifla_vlan_qos_mapping
impl Debug for ifla_vxlan_df
impl Debug for ifla_vxlan_label_policy
impl Debug for ifla_vxlan_port_range
impl Debug for ifmap
impl Debug for ifreq
impl Debug for in6_addr
impl Debug for in6_addr_gen_mode
impl Debug for in6_ifreq
impl Debug for in6_pktinfo
impl Debug for in6_rtmsg
impl Debug for in_addr
impl Debug for in_addr
impl Debug for in_pktinfo
impl Debug for in_pktinfo
impl Debug for inodes_stat_t
impl Debug for inotify_event
impl Debug for inotify_event
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 iovec
impl Debug for iovec
impl Debug for ip6t_getinfo
impl Debug for ip6t_icmp
impl Debug for ip_auth_hdr
impl Debug for ip_beet_phdr
impl Debug for ip_comp_hdr
impl Debug for ip_esp_hdr
impl Debug for ip_mreq
impl Debug for ip_mreq
impl Debug for ip_mreq_source
impl Debug for ip_mreq_source
impl Debug for ip_mreqn
impl Debug for ip_mreqn
impl Debug for ip_msfilter__bindgen_ty_1__bindgen_ty_1
impl Debug for ip_msfilter__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1
impl Debug for ipc_perm
impl Debug for iphdr__bindgen_ty_1__bindgen_ty_1
impl Debug for iphdr__bindgen_ty_1__bindgen_ty_2
impl Debug for ipv6_mreq
impl Debug for ipv6_opt_hdr
impl Debug for ipv6_rt_hdr
impl Debug for ipvlan_mode
impl Debug for itimerspec
impl Debug for itimerspec
impl Debug for itimerval
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 kem_key_st
impl Debug for kernel_sigaction
impl Debug for kernel_sigset_t
impl Debug for ktermios
impl Debug for lconv
impl Debug for lhash_st
impl Debug for lhash_st_CONF_VALUE
impl Debug for linger
impl Debug for linger
impl Debug for linux_dirent64
impl Debug for macsec_offload
impl Debug for macsec_validation_type
impl Debug for macvlan_macaddr_mode
impl Debug for macvlan_mode
impl Debug for mallinfo
impl Debug for mallinfo2
impl Debug for mbstate_t
impl Debug for mcontext_t
impl Debug for md4_state_st
impl Debug for md5_state_st
impl Debug for membarrier_cmd
impl Debug for membarrier_cmd_flag
impl Debug for mmsghdr
impl Debug for mmsghdr
impl Debug for mnt_id_req
impl Debug for mntent
impl Debug for mount_attr
impl Debug for mount_attr
impl Debug for mq_attr
impl Debug for msghdr
impl Debug for msghdr
impl Debug for msginfo
impl Debug for msqid_ds
impl Debug for nda_cacheinfo
impl Debug for ndmsg
impl Debug for ndt_config
impl Debug for ndt_stats
impl Debug for ndtmsg
impl Debug for nduseroptmsg
impl Debug for net_device_flags
impl Debug for netkit_action
impl Debug for netkit_mode
impl Debug for netkit_scrub
impl Debug for netlink_attribute_type
impl Debug for netlink_policy_type_attr
impl Debug for nf_dev_hooks
impl Debug for nf_inet_hooks
impl Debug for nf_ip6_hook_priorities
impl Debug for nf_ip_hook_priorities
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_mmap_req
impl Debug for nl_mmap_status
impl Debug for nl_pktinfo
impl Debug for nl_pktinfo
impl Debug for nla_bitfield32
impl Debug for nlattr
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsgerr
impl Debug for nlmsgerr_attrs
impl Debug for nlmsghdr
impl Debug for nlmsghdr
impl Debug for ntptimeval
impl Debug for obj_name_st
impl Debug for ocsp_basic_response_st
impl Debug for ocsp_cert_id_st
impl Debug for ocsp_cert_status_st
impl Debug for ocsp_one_request_st
impl Debug for ocsp_req_ctx_st
impl Debug for ocsp_req_info_st
impl Debug for ocsp_request_st
impl Debug for ocsp_resp_bytes_st
impl Debug for ocsp_responder_id_st
impl Debug for ocsp_response_data_st
impl Debug for ocsp_response_st
impl Debug for ocsp_revoked_info_st
impl Debug for ocsp_signature_st
impl Debug for ocsp_single_response_st
impl Debug for open_how
impl Debug for open_how
impl Debug for option
impl Debug for ossl_init_settings_st
impl Debug for otherName_st
impl Debug for packet_mreq
impl Debug for page_region
impl Debug for passwd
impl Debug for pkcs7_digest_st
impl Debug for pkcs7_enc_content_st
impl Debug for pkcs7_encrypt_st
impl Debug for pkcs7_envelope_st
impl Debug for pkcs7_issuer_and_serial_st
impl Debug for pkcs7_recip_info_st
impl Debug for pkcs7_sign_envelope_st
impl Debug for pkcs7_signed_st
impl Debug for pkcs7_signer_info_st
impl Debug for pkcs8_priv_key_info_st
impl Debug for pkcs12_st
impl Debug for pm_scan_arg
impl Debug for point_conversion_form_t
impl Debug for pollfd
impl Debug for pollfd
impl Debug for posix_spawn_file_actions_t
impl Debug for posix_spawnattr_t
impl Debug for pqdsa_key_st
impl Debug for prctl_mm_map
impl Debug for prefix_cacheinfo
impl Debug for prefixmsg
impl Debug for private_key_st
impl Debug for procmap_query
impl Debug for procmap_query_flags
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_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 rand_meth_st
impl Debug for rand_pool_info
impl Debug for raw_hdlc_proto
impl Debug for rc4_key_st
impl Debug for regex_t
impl Debug for regmatch_t
impl Debug for rlimit
impl Debug for rlimit
impl Debug for rlimit64
impl Debug for rlimit64
impl Debug for robust_list
impl Debug for robust_list_head
impl Debug for rsa_meth_st
impl Debug for rsa_pss_params_st
impl Debug for rsa_st
impl Debug for rsassa_pss_params_st
impl Debug for rt_class_t
impl Debug for rt_scope_t
impl Debug for rta_cacheinfo
impl Debug for rta_mfc_stats
impl Debug for rta_session__bindgen_ty_1__bindgen_ty_1
impl Debug for rta_session__bindgen_ty_1__bindgen_ty_2
impl Debug for rtattr
impl Debug for rtattr_type_t
impl Debug for rtentry
impl Debug for rtgenmsg
impl Debug for rtmsg
impl Debug for rtnetlink_groups
impl Debug for rtnexthop
impl Debug for rtnl_hw_stats64
impl Debug for rtnl_link_ifmap
impl Debug for rtnl_link_stats
impl Debug for rtnl_link_stats64
impl Debug for rtvia
impl Debug for rusage
impl Debug for rusage
impl Debug for sched_attr
impl Debug for sched_param
impl Debug for scm_ts_pktinfo
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 sha256_state_st
impl Debug for sha512_state_st
impl Debug for sha_state_st
impl Debug for shmid_ds
impl Debug for sigaction
impl Debug for sigaction
impl Debug for sigaltstack
impl Debug for sigevent
impl Debug for sigevent__bindgen_ty_1__bindgen_ty_1
impl Debug for siginfo_t
impl Debug for signalfd_siginfo
impl Debug for sigset_t
impl Debug for sigval
impl Debug for so_timestamping
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_in
impl Debug for sockaddr_in
impl Debug for sockaddr_in6
impl Debug for sockaddr_ll
impl Debug for sockaddr_nl
impl Debug for sockaddr_nl
impl Debug for sockaddr_pkt
impl Debug for sockaddr_storage
impl Debug for sockaddr_un
impl Debug for sockaddr_un
impl Debug for sockaddr_vm
impl Debug for sockaddr_xdp
impl Debug for sockaddr_xdp
impl Debug for socket_state
impl Debug for spake2_ctx_st
impl Debug for spwd
impl Debug for srtp_protection_profile_st
impl Debug for ssl_cipher_st
impl Debug for ssl_ctx_st
impl Debug for ssl_early_callback_ctx
impl Debug for ssl_ech_keys_st
impl Debug for ssl_method_st
impl Debug for ssl_private_key_method_st
impl Debug for ssl_quic_method_st
impl Debug for ssl_session_st
impl Debug for ssl_st
impl Debug for ssl_ticket_aead_method_st
impl Debug for st_ERR_FNS
impl Debug for stack_st
impl Debug for stack_st_ACCESS_DESCRIPTION
impl Debug for stack_st_ASN1_INTEGER
impl Debug for stack_st_ASN1_OBJECT
impl Debug for stack_st_ASN1_TYPE
impl Debug for stack_st_ASN1_VALUE
impl Debug for stack_st_BIO
impl Debug for stack_st_CONF_VALUE
impl Debug for stack_st_CRYPTO_BUFFER
impl Debug for stack_st_DIST_POINT
impl Debug for stack_st_GENERAL_NAME
impl Debug for stack_st_GENERAL_SUBTREE
impl Debug for stack_st_OCSP_CERTID
impl Debug for stack_st_OCSP_ONEREQ
impl Debug for stack_st_OCSP_RESPID
impl Debug for stack_st_OCSP_SINGLERESP
impl Debug for stack_st_OPENSSL_STRING
impl Debug for stack_st_PKCS7_RECIP_INFO
impl Debug for stack_st_PKCS7_SIGNER_INFO
impl Debug for stack_st_POLICYINFO
impl Debug for stack_st_POLICYQUALINFO
impl Debug for stack_st_POLICY_MAPPING
impl Debug for stack_st_TRUST_TOKEN
impl Debug for stack_st_X509
impl Debug for stack_st_X509_ALGOR
impl Debug for stack_st_X509_ATTRIBUTE
impl Debug for stack_st_X509_CRL
impl Debug for stack_st_X509_EXTENSION
impl Debug for stack_st_X509_INFO
impl Debug for stack_st_X509_NAME
impl Debug for stack_st_X509_NAME_ENTRY
impl Debug for stack_st_X509_OBJECT
impl Debug for stack_st_X509_PURPOSE
impl Debug for stack_st_X509_REVOKED
impl Debug for stack_st_X509_TRUST
impl Debug for stack_st_void
impl Debug for stack_t
impl Debug for stat
impl Debug for stat
impl Debug for stat64
impl Debug for statfs
impl Debug for statfs
impl Debug for statfs64
impl Debug for statfs64
impl Debug for statmount
impl Debug for statvfs
impl Debug for statvfs64
impl Debug for statx
impl Debug for statx
impl Debug for statx_timestamp
impl Debug for statx_timestamp
impl Debug for sync_serial_settings
impl Debug for sysinfo
impl Debug for tcamsg
impl Debug for tcmsg
impl Debug for tcp_ao_info_opt
impl Debug for tcp_ao_repair
impl Debug for tcp_ca_state
impl Debug for tcp_diag_md5sig
impl Debug for tcp_fastopen_client_fail
impl Debug for tcp_info
impl Debug for tcp_info
impl Debug for tcp_repair_opt
impl Debug for tcp_repair_window
impl Debug for tcp_zerocopy_receive
impl Debug for tcphdr
impl Debug for te1_settings
impl Debug for termio
impl Debug for termios
impl Debug for termios
impl Debug for termios2
impl Debug for termios2
impl Debug for timespec
impl Debug for timespec
impl Debug for timeval
impl Debug for timeval
impl Debug for timex
impl Debug for timezone
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 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_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 trust_token_client_st
impl Debug for trust_token_issuer_st
impl Debug for trust_token_method_st
impl Debug for trust_token_st
impl Debug for tunnel_msg
impl Debug for txtime_flags
impl Debug for u1
impl Debug for u2
impl Debug for u3
impl Debug for u4
impl Debug for u5
impl Debug for u6
impl Debug for u7
impl Debug for u24
impl Debug for u40
impl Debug for u48
impl Debug for u56
impl Debug for u256
impl Debug for u512
impl Debug for u1024
impl Debug for ucontext_t
impl Debug for ucred
impl Debug for ucred
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_2
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_3
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_4
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_5
impl Debug for uffdio_api
impl Debug for uffdio_continue
impl Debug for uffdio_copy
impl Debug for uffdio_move
impl Debug for uffdio_poison
impl Debug for uffdio_range
impl Debug for uffdio_register
impl Debug for uffdio_writeprotect
impl Debug for uffdio_zeropage
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_desc
impl Debug for user_fpregs_struct
impl Debug for user_regs_struct
impl Debug for utimbuf
impl Debug for utmpx
impl Debug for utsname
impl Debug for v3_ext_ctx
impl Debug for v3_ext_method
impl Debug for vfs_cap_data
impl Debug for vfs_cap_data__bindgen_ty_1
impl Debug for vfs_ns_cap_data
impl Debug for vfs_ns_cap_data__bindgen_ty_1
impl Debug for vgetrandom_opaque_params
impl Debug for winsize
impl Debug for winsize
impl Debug for x25_hdlc_proto
impl Debug for x509_attributes_st
impl Debug for x509_lookup_method_st
impl Debug for x509_lookup_st
impl Debug for x509_object_st
impl Debug for x509_purpose_st
impl Debug for x509_revoked_st
impl Debug for x509_sig_info_st
impl Debug for x509_st
impl Debug for x509_store_ctx_st
impl Debug for x509_store_st
impl Debug for x509_trust_st
impl Debug for xattr_args
impl Debug for xdp_desc
impl Debug for xdp_desc
impl Debug for xdp_mmap_offsets
impl Debug for xdp_mmap_offsets
impl Debug for xdp_mmap_offsets_v1
impl Debug for xdp_mmap_offsets_v1
impl Debug for xdp_options
impl Debug for xdp_options
impl Debug for xdp_ring_offset
impl Debug for xdp_ring_offset
impl Debug for xdp_ring_offset_v1
impl Debug for xdp_ring_offset_v1
impl Debug for xdp_statistics
impl Debug for xdp_statistics
impl Debug for xdp_statistics_v1
impl Debug for xdp_statistics_v1
impl Debug for xdp_umem_reg
impl Debug for xdp_umem_reg
impl Debug for xdp_umem_reg_v1
impl Debug for xdp_umem_reg_v1
impl Debug for xsk_tx_metadata__bindgen_ty_1__bindgen_ty_1
impl Debug for xsk_tx_metadata__bindgen_ty_1__bindgen_ty_2
impl Debug for xsk_tx_metadata_completion
impl Debug for xsk_tx_metadata_request
impl Debug for xt_counters
impl Debug for xt_counters_info
impl Debug for xt_entry_match__bindgen_ty_1__bindgen_ty_1
impl Debug for xt_entry_match__bindgen_ty_1__bindgen_ty_2
impl Debug for xt_entry_target__bindgen_ty_1__bindgen_ty_1
impl Debug for xt_entry_target__bindgen_ty_1__bindgen_ty_2
impl Debug for xt_get_revision
impl Debug for xt_match
impl Debug for xt_target
impl Debug for xt_tcp
impl Debug for xt_udp
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for serde::de::Unexpected<'a>
impl<'a> Debug for IndexVecIter<'a>
impl<'a> Debug for AnonHomePath<'a>
impl<'a> Debug for Verifier<'a>
impl<'a> Debug for DisplayFracRejected<'a>
impl<'a> Debug for Request<'a>
impl<'a> Debug for core::error::Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for Location<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for core::str::iter::Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for core::str::iter::EscapeDebug<'a>
impl<'a> Debug for core::str::iter::EscapeDefault<'a>
impl<'a> Debug for core::str::iter::EscapeUnicode<'a>
impl<'a> Debug for core::str::iter::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for std::path::Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for log::Metadata<'a>
impl<'a> Debug for MetadataBuilder<'a>
impl<'a> Debug for log::Record<'a>
impl<'a> Debug for RecordBuilder<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for PathSegmentsMut<'a>
impl<'a> Debug for UrlQuery<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for Attributes<'a>
impl<'a> Debug for BorrowedCertRevocationList<'a>
impl<'a> Debug for BorrowedRevokedCert<'a>
impl<'a> Debug for ByteClassElements<'a>
impl<'a> Debug for ByteClassIter<'a>
impl<'a> Debug for ByteClassRepresentatives<'a>
impl<'a> Debug for ByteSerialize<'a>
impl<'a> Debug for CanonicalCombiningClassMapBorrowed<'a>
impl<'a> Debug for CanonicalCompositionBorrowed<'a>
impl<'a> Debug for CanonicalDecompositionBorrowed<'a>
impl<'a> Debug for CapturesPatternIter<'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 Chars<'a>
impl<'a> Debug for CharsMut<'a>
impl<'a> Debug for CharsRef<'a>
impl<'a> Debug for ClassBytesIter<'a>
impl<'a> Debug for ClassUnicodeIter<'a>
impl<'a> Debug for ClientHello<'a>
impl<'a> Debug for CodePointSetDataBorrowed<'a>
impl<'a> Debug for Components<'a>
impl<'a> Debug for ComposingNormalizerBorrowed<'a>
impl<'a> Debug for DangerousClientConfig<'a>
impl<'a> Debug for DataIdentifierBorrowed<'a>
impl<'a> Debug for DataRequest<'a>
impl<'a> Debug for DebugHaystack<'a>
impl<'a> Debug for DecomposingNormalizerBorrowed<'a>
impl<'a> Debug for DnsName<'a>
impl<'a> Debug for DynamicClockId<'a>
impl<'a> Debug for EmojiSetDataBorrowed<'a>
impl<'a> Debug for EnterGuard<'a>
impl<'a> Debug for Entered<'a>
impl<'a> Debug for ErrorReportingUtf8Chars<'a>
impl<'a> Debug for Event<'a>
impl<'a> Debug for Event<'a>
impl<'a> Debug for Events<'a>
impl<'a> Debug for FfdheGroup<'a>
impl<'a> Debug for GroupInfoAllNames<'a>
impl<'a> Debug for GroupInfoPatternNames<'a>
impl<'a> Debug for InboundPlainMessage<'a>
impl<'a> Debug for Iter<'a>
impl<'a> Debug for MaybeUninitSlice<'a>
impl<'a> Debug for Metadata<'a>
impl<'a> Debug for NonBlocking<'a>
impl<'a> Debug for Notified<'a>
impl<'a> Debug for OutboundChunks<'a>
impl<'a> Debug for OutboundPlainMessage<'a>
impl<'a> Debug for PatternIter<'a>
impl<'a> Debug for PatternSetIter<'a>
impl<'a> Debug for PercentDecode<'a>
impl<'a> Debug for PrivateKeyDer<'a>
impl<'a> Debug for RawDirEntry<'a>
impl<'a> Debug for RawPublicKeyEntity<'a>
impl<'a> Debug for ReadHalf<'a>
impl<'a> Debug for ReadHalf<'a>
impl<'a> Debug for Record<'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 SemaphoreGuard<'a>
impl<'a> Debug for SemaphorePermit<'a>
impl<'a> Debug for SetMatchesIter<'a>
impl<'a> Debug for SetMatchesIter<'a>
impl<'a> Debug for SourceFd<'a>
impl<'a> Debug for SubjectPublicKeyInfoDer<'a>
impl<'a> Debug for TrustAnchor<'a>
impl<'a> Debug for Unstructured<'a>
impl<'a> Debug for Utf8CharIndices<'a>
impl<'a> Debug for Utf8Chars<'a>
impl<'a> Debug for Uts46MapperBorrowed<'a>
impl<'a> Debug for ValueSet<'a>
impl<'a> Debug for WaitForCancellationFuture<'a>
impl<'a> Debug for WaitId<'a>
impl<'a> Debug for WakerRef<'a>
impl<'a> Debug for WriteHalf<'a>
impl<'a> Debug for WriteHalf<'a>
impl<'a> Debug for ZeroAsciiIgnoreCaseTrieCursor<'a>
impl<'a> Debug for ZeroTrieSimpleAsciiCursor<'a>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'f> Debug for VaList<'a, 'f>where
'f: 'a,
impl<'a, 'h> Debug for OneIter<'a, 'h>
impl<'a, 'h> Debug for OneIter<'a, 'h>
impl<'a, 'h> Debug for OneIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for TwoIter<'a, 'h>
impl<'a, 'h> Debug for TwoIter<'a, 'h>
impl<'a, 'h> Debug for 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 Stream<'a, C, T>
impl<'a, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
impl<'a, E> Debug for StrDeserializer<'a, E>
impl<'a, Fut> Debug for Iter<'a, Fut>
impl<'a, Fut> Debug for IterMut<'a, Fut>
impl<'a, Fut> Debug for IterPinMut<'a, Fut>where
Fut: Debug,
impl<'a, Fut> Debug for IterPinRef<'a, Fut>where
Fut: Debug,
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I> Debug for Format<'a, I>
impl<'a, I, A> Debug for alloc::vec::splice::Splice<'a, I, A>
impl<'a, I, E> Debug for ProcessResults<'a, I, E>
impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F>
impl<'a, K0, K1, V> Debug for ZeroMap2d<'a, K0, K1, V>
impl<'a, K0, K1, V> Debug for ZeroMap2dBorrowed<'a, K0, K1, V>
impl<'a, K, V> Debug for slotmap::secondary::Entry<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::Entry<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_key_hash_map::Entry<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_value_hash_map::Entry<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_weak_hash_map::Entry<'a, K, V>where
K: WeakKey,
V: WeakElement,
<K as WeakElement>::Strong: Debug,
<V as WeakElement>::Strong: Debug,
impl<'a, K, V> Debug for slotmap::basic::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap::basic::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap::basic::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::basic::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap::basic::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap::basic::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::OccupiedEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::VacantEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::OccupiedEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::VacantEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_key_hash_map::Drain<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_key_hash_map::Iter<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_key_hash_map::IterMut<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_key_hash_map::Keys<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_key_hash_map::OccupiedEntry<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_key_hash_map::VacantEntry<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_key_hash_map::Values<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_key_hash_map::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_value_hash_map::Drain<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_value_hash_map::Iter<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_value_hash_map::Keys<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_value_hash_map::OccupiedEntry<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_value_hash_map::VacantEntry<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_value_hash_map::Values<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_weak_hash_map::Drain<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_weak_hash_map::Iter<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_weak_hash_map::Keys<'a, K, V>
impl<'a, K, V> Debug for weak_table::weak_weak_hash_map::OccupiedEntry<'a, K, V>where
K: WeakKey,
V: WeakElement,
<K as WeakElement>::Strong: Debug,
<V as WeakElement>::Strong: Debug,
impl<'a, K, V> Debug for weak_table::weak_weak_hash_map::VacantEntry<'a, K, V>where
K: WeakKey,
V: WeakElement,
<K as WeakElement>::Strong: Debug,
<V as WeakElement>::Strong: Debug,
impl<'a, K, V> Debug for weak_table::weak_weak_hash_map::Values<'a, K, V>
impl<'a, K, V> Debug for ZeroMap<'a, K, V>
impl<'a, K, V> Debug for ZeroMapBorrowed<'a, K, V>
impl<'a, L> Debug for Okm<'a, L>where
L: Debug + KeyType,
impl<'a, P> Debug for MatchIndices<'a, P>
impl<'a, P> Debug for core::str::iter::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> Debug for FillBuf<'a, R>
impl<'a, R> Debug for FillBuf<'a, R>
impl<'a, R> Debug for Read<'a, R>
impl<'a, R> Debug for ReadExact<'a, R>
impl<'a, R> Debug for ReadExactFuture<'a, R>
impl<'a, R> Debug for ReadFuture<'a, R>
impl<'a, R> Debug for ReadLine<'a, R>
impl<'a, R> Debug for ReadLineFuture<'a, R>
impl<'a, R> Debug for ReadToEnd<'a, R>
impl<'a, R> Debug for ReadToEndFuture<'a, R>
impl<'a, R> Debug for ReadToString<'a, R>
impl<'a, R> Debug for ReadToStringFuture<'a, R>
impl<'a, R> Debug for ReadUntil<'a, R>
impl<'a, R> Debug for ReadUntilFuture<'a, R>
impl<'a, R> Debug for ReadVectored<'a, R>
impl<'a, R> Debug for ReadVectoredFuture<'a, R>
impl<'a, R> Debug for ReplacerRef<'a, R>
impl<'a, R> Debug for ReplacerRef<'a, R>
impl<'a, R> Debug for SeeKRelative<'a, R>where
R: Debug,
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 MappedMutexGuard<'a, R, T>
impl<'a, R, T> Debug for MappedRwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for MappedRwLockWriteGuard<'a, R, T>
impl<'a, R, T> Debug for MutexGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockWriteGuard<'a, R, T>
impl<'a, R, W> Debug for Copy<'a, R, W>
impl<'a, R, W> Debug for CopyBuf<'a, R, W>
impl<'a, R, W> Debug for CopyBufAbortable<'a, R, W>
impl<'a, S> Debug for Drain<'a, S>
impl<'a, S> Debug for NextFuture<'a, S>
impl<'a, S> Debug for NthFuture<'a, S>
impl<'a, S> Debug for Seek<'a, S>
impl<'a, S> Debug for SeekFuture<'a, S>
impl<'a, S> Debug for TryNextFuture<'a, S>
impl<'a, S, F> Debug for FindMapFuture<'a, S, F>
impl<'a, S, F> Debug for TryForEachFuture<'a, S, F>
impl<'a, S, F, B> Debug for TryFoldFuture<'a, S, F, B>
impl<'a, S, P> Debug for AllFuture<'a, S, P>
impl<'a, S, P> Debug for AnyFuture<'a, S, P>
impl<'a, S, P> Debug for FindFuture<'a, S, P>
impl<'a, S, P> Debug for PositionFuture<'a, S, P>
impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>
impl<'a, Si, Item> Debug for Close<'a, Si, Item>
impl<'a, Si, Item> Debug for Feed<'a, Si, Item>
impl<'a, Si, Item> Debug for Flush<'a, Si, Item>
impl<'a, Si, Item> Debug for Send<'a, Si, Item>
impl<'a, St> Debug for Iter<'a, St>
impl<'a, St> Debug for IterMut<'a, St>
impl<'a, St> Debug for Next<'a, St>
impl<'a, St> Debug for SelectNextSome<'a, St>
impl<'a, St> Debug for TryNext<'a, St>
impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::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 Choose<'a, T>where
T: Debug,
impl<'a, T> Debug for AsyncFdReadyGuard<'a, T>
impl<'a, T> Debug for AsyncFdReadyMutGuard<'a, T>
impl<'a, T> Debug for Cancellation<'a, T>where
T: Debug,
impl<'a, T> Debug for CodePointMapDataBorrowed<'a, T>where
T: Debug + TrieValue,
impl<'a, T> Debug for Drain<'a, T>where
T: 'a + Array,
<T as Array>::Item: Debug,
impl<'a, T> Debug for MappedMutexGuard<'a, T>
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for PropertyNamesLongBorrowed<'a, T>
impl<'a, T> Debug for PropertyNamesShortBorrowed<'a, T>
impl<'a, T> Debug for PropertyParserBorrowed<'a, T>where
T: Debug,
impl<'a, T> Debug for Recv<'a, T>where
T: Debug,
impl<'a, T> Debug for Recv<'a, T>where
T: Debug,
impl<'a, T> Debug for Ref<'a, T>where
T: Debug,
impl<'a, T> Debug for RwLockMappedWriteGuard<'a, T>
impl<'a, T> Debug for RwLockReadGuard<'a, T>
impl<'a, T> Debug for RwLockWriteGuard<'a, T>
impl<'a, T> Debug for Send<'a, T>where
T: Debug,
impl<'a, T> Debug for Send<'a, T>where
T: Debug,
impl<'a, T> Debug for VacantEntry<'a, T>where
T: Debug,
impl<'a, T> Debug for ZeroSliceIter<'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, F> Debug for VarZeroSliceIter<'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, const N: usize> Debug for core::slice::iter::ArrayChunks<'a, T, N>where
T: Debug + 'a,
impl<'a, T, const N: usize> Debug for ArrayChunksMut<'a, T, N>where
T: Debug + 'a,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, V> Debug for VarZeroCow<'a, V>
impl<'a, W> Debug for Close<'a, W>
impl<'a, W> Debug for CloseFuture<'a, W>
impl<'a, W> Debug for Flush<'a, W>
impl<'a, W> Debug for FlushFuture<'a, W>
impl<'a, W> Debug for Write<'a, W>
impl<'a, W> Debug for WriteAll<'a, W>
impl<'a, W> Debug for WriteAllFuture<'a, W>
impl<'a, W> Debug for WriteFuture<'a, W>
impl<'a, W> Debug for WriteVectored<'a, W>
impl<'a, W> Debug for WriteVectoredFuture<'a, W>
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'c, 'h> Debug for SubCaptureMatches<'c, 'h>
impl<'c, 'h> Debug for SubCaptureMatches<'c, 'h>
impl<'c, 'i, Data> Debug for UnbufferedStatus<'c, 'i, Data>where
Data: Debug,
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 PropertyEnumToValueNameSparseMap<'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<'data, I> Debug for Composition<'data, I>
impl<'data, I> Debug for Decomposition<'data, I>
impl<'data, T> Debug for PropertyCodePointMap<'data, T>where
T: Debug + TrieValue,
impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>
impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>
impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
impl<'f> Debug for VaListImpl<'f>
impl<'fd> Debug for PollFd<'fd>
impl<'h> Debug for Captures<'h>
impl<'h> Debug for Captures<'h>
impl<'h> Debug for Input<'h>
impl<'h> Debug for Match<'h>
impl<'h> Debug for Match<'h>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'h> Debug for Searcher<'h>
impl<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'h, F> Debug for CapturesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for HalfMatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for MatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for TryCapturesIter<'h, F>
impl<'h, F> Debug for TryHalfMatchesIter<'h, F>
impl<'h, F> Debug for TryMatchesIter<'h, F>
impl<'k> Debug for log::kv::key::Key<'k>
impl<'k> Debug for KeyMut<'k>
impl<'l, 'a, K0, K1, V> Debug for ZeroMap2dCursor<'l, 'a, K0, K1, V>
impl<'m> Debug for GuardWithDeferredDrop<'m>
impl<'n> Debug for Finder<'n>
impl<'n> Debug for FinderRev<'n>
impl<'name, 'bufs, 'control> Debug for MsgHdr<'name, 'bufs, 'control>
impl<'name, 'bufs, 'control> Debug for MsgHdrMut<'name, 'bufs, 'control>
impl<'r> Debug for CaptureNames<'r>
impl<'r> Debug for CaptureNames<'r>
impl<'r, 'c, 'h> Debug for CapturesMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for FindMatches<'r, 'c, 'h>
impl<'r, 'ctx, T> Debug for AsyncAsSync<'r, 'ctx, T>where
T: Debug,
impl<'r, 'h> Debug for CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for CapturesMatches<'r, 'h>
impl<'r, 'h> Debug for FindMatches<'r, 'h>
impl<'r, 'h> Debug for Matches<'r, 'h>
impl<'r, 'h> Debug for Matches<'r, 'h>
impl<'r, 'h> Debug for Split<'r, 'h>
impl<'r, 'h> Debug for Split<'r, 'h>
impl<'r, 'h> Debug for Split<'r, 'h>
impl<'r, 'h> Debug for SplitN<'r, 'h>
impl<'r, 'h> Debug for SplitN<'r, 'h>
impl<'r, 'h> Debug for SplitN<'r, 'h>
impl<'r, 'h, A> Debug for FindMatches<'r, 'h, A>where
A: Debug,
impl<'r, R> Debug for UnwrapMut<'r, R>
impl<'s> Debug for NoExpand<'s>
impl<'s> Debug for NoExpand<'s>
impl<'s> Debug for TomlKey<'s>
impl<'s> Debug for TomlKeyBuilder<'s>
impl<'s> Debug for TomlString<'s>
impl<'s> Debug for TomlStringBuilder<'s>
impl<'s> Debug for Uncased<'s>
impl<'s, 'f> Debug for Slot<'s, 'f>
impl<'s, S> Debug for PeekFuture<'s, S>where
S: Debug,
impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env>
impl<'scope, T> Debug for std::thread::scoped::ScopedJoinHandle<'scope, T>
impl<'srcs> Debug for FoundConfigFiles<'srcs>
impl<'trie, T> Debug for CodePointTrie<'trie, T>where
T: Debug + TrieValue,
impl<'v> Debug for log::kv::value::Value<'v>
impl<'v> Debug for ValueBag<'v>
impl<A> Debug for core::iter::sources::repeat::Repeat<A>where
A: Debug,
impl<A> Debug for core::iter::sources::repeat_n::RepeatN<A>where
A: Debug,
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for IterRange<A>where
A: Debug,
impl<A> Debug for IterRangeFrom<A>where
A: Debug,
impl<A> Debug for IterRangeInclusive<A>where
A: Debug,
impl<A> Debug for EnumAccessDeserializer<A>where
A: Debug,
impl<A> Debug for MapAccessDeserializer<A>where
A: Debug,
impl<A> Debug for SeqAccessDeserializer<A>where
A: Debug,
impl<A> Debug for Aad<A>where
A: Debug,
impl<A> Debug for IntoIter<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A> Debug for Regex<A>where
A: Debug,
impl<A> Debug for RepeatN<A>where
A: Debug,
impl<A> Debug for SmallVec<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for core::iter::adapters::zip::Zip<A, B>
impl<A, B> Debug for Either<A, B>
impl<A, B> Debug for Either<A, B>
impl<A, B> Debug for EitherOrBoth<A, B>
impl<A, B> Debug for Select<A, B>
impl<A, B> Debug for TrySelect<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, B> Debug for Zip<A, B>
impl<A, B, C> Debug for Tuple3ULE<A, B, C>
impl<A, B, C, D> Debug for Tuple4ULE<A, B, C, D>
impl<A, B, C, D, E> Debug for Tuple5ULE<A, B, C, D, E>
impl<A, B, C, D, E, F> Debug for Tuple6ULE<A, B, C, D, E, F>
impl<A, B, C, D, E, F, Format> Debug for Tuple6VarULE<A, B, C, D, E, F, Format>
impl<A, B, C, D, E, Format> Debug for Tuple5VarULE<A, B, C, D, E, Format>
impl<A, B, C, D, Format> Debug for Tuple4VarULE<A, B, C, D, Format>
impl<A, B, C, Format> Debug for Tuple3VarULE<A, B, C, Format>
impl<A, B, Format> Debug for Tuple2VarULE<A, B, Format>
impl<A, S, V> Debug for ConvertError<A, S, V>
impl<A, V> Debug for VarTupleULE<A, V>
impl<ADDR> Debug for FakeListener<ADDR>where
ADDR: Debug,
impl<B> Debug for Cow<'_, B>
impl<B> Debug for std::io::Lines<B>where
B: Debug,
impl<B> Debug for std::io::Split<B>where
B: Debug,
impl<B> Debug for Flag<B>where
B: Debug,
impl<B> Debug for PublicKeyComponents<B>
impl<B> Debug for PublicKeyComponents<B>where
B: Debug,
impl<B> Debug for Reader<B>where
B: Debug,
impl<B> Debug for UnparsedPublicKey<B>
impl<B> Debug for UnparsedPublicKey<B>
impl<B> Debug for UnparsedPublicKey<B>
impl<B> Debug for UnparsedPublicKey<B>
impl<B> Debug for Writer<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>
impl<B, T> Debug for AlignAs<B, T>
impl<C0, C1> Debug for EitherCart<C0, C1>
impl<C> Debug for CartableOptionPointer<C>
impl<C> Debug for ContextError<C>where
C: Debug,
impl<C, T> Debug for StreamOwned<C, T>
impl<CE: Debug> Debug for tor_memquota::mq_queue::SendError<CE>
impl<Cipher> Debug for KeyEncryptionKey<Cipher>where
Cipher: BlockCipher,
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>where
DataStruct: Debug + for<'a> Yokeable<'a>,
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for RetryError<E>where
E: Debug,
impl<E> Debug for tor_error::report::Report<E>
impl<E> Debug for std::error::Report<E>
impl<E> Debug for BoolDeserializer<E>
impl<E> Debug for CharDeserializer<E>
impl<E> Debug for F32Deserializer<E>
impl<E> Debug for F64Deserializer<E>
impl<E> Debug for I8Deserializer<E>
impl<E> Debug for I16Deserializer<E>
impl<E> Debug for I32Deserializer<E>
impl<E> Debug for I64Deserializer<E>
impl<E> Debug for I128Deserializer<E>
impl<E> Debug for IsizeDeserializer<E>
impl<E> Debug for StringDeserializer<E>
impl<E> Debug for U8Deserializer<E>
impl<E> Debug for U16Deserializer<E>
impl<E> Debug for U32Deserializer<E>
impl<E> Debug for U64Deserializer<E>
impl<E> Debug for U128Deserializer<E>
impl<E> Debug for UnitDeserializer<E>
impl<E> Debug for UsizeDeserializer<E>
impl<E> Debug for ErrMode<E>where
E: Debug,
impl<E> Debug for MultilineListBuilderError<E>
impl<E> Debug for ParseNotNanError<E>where
E: Debug,
impl<E> Debug for SubfieldBuildError<E>where
E: Debug,
impl<EB> Debug for MultilineListBuilder<EB>where
EB: Debug,
impl<Enc, Dec> Debug for JsonCodec<Enc, Dec>
impl<F1, F2> Debug for Or<F1, F2>
impl<F1, F2> Debug for Race<F1, F2>
impl<F1, F2> Debug for Zip<F1, F2>
impl<F1, T1, F2, T2> Debug for TryZip<F1, T1, F2, T2>
impl<F> Debug for tor_memquota::internal_prelude::fmt::FromFn<F>
impl<F> Debug for core::future::poll_fn::PollFn<F>
impl<F> Debug for core::iter::sources::from_fn::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for core::iter::sources::repeat_with::RepeatWith<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for CatchUnwind<F>where
F: Debug,
impl<F> Debug for Data<F>where
F: Debug + Format,
impl<F> Debug for Fwhere
F: FnPtr,
impl<F> Debug for Flatten<F>
impl<F> Debug for FlattenStream<F>
impl<F> Debug for FromFn<F>where
F: Debug,
impl<F> Debug for FutureWrapper<F>
impl<F> Debug for IntoStream<F>where
Once<F>: Debug,
impl<F> Debug for JoinAll<F>
impl<F> Debug for Lazy<F>where
F: Debug,
impl<F> Debug for OnceFuture<F>where
F: Debug,
impl<F> Debug for OptionFuture<F>where
F: Debug,
impl<F> Debug for PollFn<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for PollOnce<F>
impl<F> Debug for RepeatWith<F>where
F: Debug,
impl<F> Debug for RepeatWith<F>where
F: Debug,
impl<F> Debug for RepeatWith<F>where
F: Debug,
impl<F> Debug for TryJoinAll<F>
impl<F> Debug for WithInfo<F>where
F: Debug,
impl<F, T> Debug for Successors<F, T>
impl<Fut1, Fut2> Debug for Join<Fut1, Fut2>
impl<Fut1, Fut2> Debug for TryFlatten<Fut1, Fut2>where
TryFlatten<Fut1, Fut2>: Debug,
impl<Fut1, Fut2> Debug for TryJoin<Fut1, Fut2>
impl<Fut1, Fut2, F> Debug for AndThen<Fut1, Fut2, F>where
TryFlatten<MapOk<Fut1, F>, Fut2>: Debug,
impl<Fut1, Fut2, F> Debug for OrElse<Fut1, Fut2, F>where
TryFlattenErr<MapErr<Fut1, F>, Fut2>: Debug,
impl<Fut1, Fut2, F> Debug for Then<Fut1, Fut2, F>where
Flatten<Map<Fut1, F>, Fut2>: Debug,
impl<Fut1, Fut2, Fut3> Debug for Join3<Fut1, Fut2, Fut3>
impl<Fut1, Fut2, Fut3> Debug for TryJoin3<Fut1, Fut2, Fut3>
impl<Fut1, Fut2, Fut3, Fut4> Debug for Join4<Fut1, Fut2, Fut3, Fut4>
impl<Fut1, Fut2, Fut3, Fut4> Debug for TryJoin4<Fut1, Fut2, Fut3, Fut4>where
Fut1: TryFuture + Debug,
<Fut1 as TryFuture>::Ok: Debug,
<Fut1 as TryFuture>::Error: Debug,
Fut2: TryFuture + Debug,
<Fut2 as TryFuture>::Ok: Debug,
<Fut2 as TryFuture>::Error: Debug,
Fut3: TryFuture + Debug,
<Fut3 as TryFuture>::Ok: Debug,
<Fut3 as TryFuture>::Error: Debug,
Fut4: TryFuture + Debug,
<Fut4 as TryFuture>::Ok: Debug,
<Fut4 as TryFuture>::Error: Debug,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Debug for Join5<Fut1, Fut2, Fut3, Fut4, Fut5>
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Debug for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5>where
Fut1: TryFuture + Debug,
<Fut1 as TryFuture>::Ok: Debug,
<Fut1 as TryFuture>::Error: Debug,
Fut2: TryFuture + Debug,
<Fut2 as TryFuture>::Ok: Debug,
<Fut2 as TryFuture>::Error: Debug,
Fut3: TryFuture + Debug,
<Fut3 as TryFuture>::Ok: Debug,
<Fut3 as TryFuture>::Error: Debug,
Fut4: TryFuture + Debug,
<Fut4 as TryFuture>::Ok: Debug,
<Fut4 as TryFuture>::Error: Debug,
Fut5: TryFuture + Debug,
<Fut5 as TryFuture>::Ok: Debug,
<Fut5 as TryFuture>::Error: Debug,
impl<Fut> Debug for CatchUnwind<Fut>where
Fut: Debug,
impl<Fut> Debug for Fuse<Fut>where
Fut: Debug,
impl<Fut> Debug for Fuse<Fut>where
Fut: Debug,
impl<Fut> Debug for FuturesOrdered<Fut>where
Fut: Future,
impl<Fut> Debug for FuturesUnordered<Fut>
impl<Fut> Debug for IntoFuture<Fut>where
Fut: Debug,
impl<Fut> Debug for IntoIter<Fut>
impl<Fut> Debug for MaybeDone<Fut>
impl<Fut> Debug for NeverError<Fut>where
Map<Fut, OkFn<Infallible>>: Debug,
impl<Fut> Debug for Once<Fut>where
Fut: Debug,
impl<Fut> Debug for Remote<Fut>
impl<Fut> Debug for SelectAll<Fut>where
Fut: Debug,
impl<Fut> Debug for SelectOk<Fut>where
Fut: Debug,
impl<Fut> Debug for TryFlattenStream<Fut>where
TryFlatten<Fut, <Fut as TryFuture>::Ok>: Debug,
Fut: TryFuture,
impl<Fut> Debug for TryMaybeDone<Fut>
impl<Fut> Debug for UnitError<Fut>
impl<Fut, E> Debug for ErrInto<Fut, E>where
MapErr<Fut, IntoFn<E>>: Debug,
impl<Fut, E> Debug for OkInto<Fut, E>where
MapOk<Fut, IntoFn<E>>: Debug,
impl<Fut, F> Debug for Inspect<Fut, F>where
Map<Fut, InspectFn<F>>: Debug,
impl<Fut, F> Debug for InspectErr<Fut, F>where
Inspect<IntoFuture<Fut>, InspectErrFn<F>>: Debug,
impl<Fut, F> Debug for InspectOk<Fut, F>where
Inspect<IntoFuture<Fut>, InspectOkFn<F>>: Debug,
impl<Fut, F> Debug for Map<Fut, F>where
Map<Fut, F>: Debug,
impl<Fut, F> Debug for MapErr<Fut, F>where
Map<IntoFuture<Fut>, MapErrFn<F>>: Debug,
impl<Fut, F> Debug for MapOk<Fut, F>where
Map<IntoFuture<Fut>, MapOkFn<F>>: Debug,
impl<Fut, F> Debug for UnwrapOrElse<Fut, F>where
Map<IntoFuture<Fut>, UnwrapOrElseFn<F>>: Debug,
impl<Fut, F, G> Debug for MapOkOrElse<Fut, F, G>where
Map<IntoFuture<Fut>, ChainFn<MapOkFn<F>, ChainFn<MapErrFn<G>, MergeResultFn>>>: Debug,
impl<Fut, Si> Debug for FlattenSink<Fut, Si>where
TryFlatten<Fut, Si>: Debug,
impl<Fut, T> Debug for MapInto<Fut, T>where
Map<Fut, IntoFn<T>>: Debug,
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<I> Debug for core::async_iter::from_iter::FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for core::iter::adapters::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::copied::Copied<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::cycle::Cycle<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::fuse::Fuse<I>where
I: Debug,
impl<I> Debug for Intersperse<I>
impl<I> Debug for core::iter::adapters::peekable::Peekable<I>
impl<I> Debug for core::iter::adapters::skip::Skip<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<I> Debug for CombinationsWithReplacement<I>
impl<I> Debug for ExactlyOneError<I>
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for GroupingMap<I>where
I: Debug,
impl<I> Debug for InputError<I>
impl<I> Debug for Iter<I>where
I: Debug,
impl<I> Debug for Iter<I>where
I: Debug,
impl<I> Debug for LocatingSlice<I>where
I: Debug,
impl<I> Debug for MultiPeek<I>
impl<I> Debug for MultiProduct<I>
impl<I> Debug for Partial<I>where
I: Debug,
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 Tee<I>
impl<I> Debug for TreeErrorBase<I>where
I: Debug,
impl<I> Debug for Unique<I>
impl<I> Debug for WhileSome<I>where
I: Debug,
impl<I> Debug for WithPosition<I>
impl<I, C> Debug for TreeError<I, C>
impl<I, C> Debug for TreeErrorContext<I, C>
impl<I, C> Debug for TreeErrorFrame<I, C>
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, E> Debug for ParseError<I, E>
impl<I, ElemF> Debug for IntersperseWith<I, ElemF>
impl<I, F> Debug for core::iter::adapters::filter_map::FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::inspect::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::map::Map<I, F>where
I: Debug,
impl<I, F> Debug for Batching<I, F>where
I: Debug,
impl<I, F> Debug for FilterMapOk<I, F>where
I: Debug,
impl<I, F> Debug for FilterOk<I, F>where
I: Debug,
impl<I, F> Debug for FormatWith<'_, I, F>
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 TakeWhileInclusive<I, F>
impl<I, F> Debug for TakeWhileRef<'_, I, F>
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 core::iter::adapters::intersperse::IntersperseWith<I, G>
impl<I, J> Debug for Diff<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, K, V, S> Debug for Splice<'_, I, K, V, S>
impl<I, P> Debug for core::iter::adapters::filter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for core::iter::adapters::map_while::MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for core::iter::adapters::skip_while::SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for core::iter::adapters::take_while::TakeWhile<I, P>where
I: Debug,
impl<I, P> Debug for FilterEntry<I, P>
impl<I, S> Debug for Stateful<I, S>
impl<I, St, F> Debug for core::iter::adapters::scan::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>
impl<I, T, E> Debug for FlattenOk<I, T, E>where
I: Iterator<Item = Result<T, E>> + Debug,
T: IntoIterator,
<T as IntoIterator>::IntoIter: Debug,
impl<I, T, S> Debug for Splice<'_, I, T, S>
impl<I, U> Debug for core::iter::adapters::flatten::Flatten<I>
impl<I, U, F> Debug for core::iter::adapters::flatten::FlatMap<I, U, F>
impl<I, V, F> Debug for UniqueBy<I, V, F>
impl<I, const N: usize> Debug for core::iter::adapters::array_chunks::ArrayChunks<I, N>
impl<IO> Debug for TlsStream<IO>where
IO: Debug,
impl<IO> Debug for TlsStream<IO>where
IO: Debug,
impl<Id> Debug for Algorithm<Id>where
Id: AlgorithmIdentifier,
impl<Id> Debug for DecapsulationKey<Id>where
Id: AlgorithmIdentifier,
impl<Id> Debug for EncapsulationKey<Id>where
Id: AlgorithmIdentifier,
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 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<K> Debug for tor_memquota::refcount::Count<K>
impl<K> Debug for alloc::collections::btree::set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Drain<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::IntoIter<K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K> Debug for Iter<'_, K>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, A> Debug for Drain<'_, K, A>where
K: Debug,
A: Allocator,
impl<K, A> Debug for IntoIter<K, A>where
K: Debug,
A: Allocator,
impl<K, F> Debug for std::collections::hash::set::ExtractIf<'_, K, F>where
K: Debug,
impl<K, Q, V, S, A> Debug for EntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for VacantEntryRef<'_, '_, K, Q, V, S, A>
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for slotmap_careful::DenseSlotMap<K, V>
impl<K, V> Debug for slotmap_careful::HopSlotMap<K, V>
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Drain<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for slotmap::basic::IntoIter<K, V>
impl<K, V> Debug for slotmap::basic::SlotMap<K, V>
impl<K, V> Debug for slotmap::dense::DenseSlotMap<K, V>
impl<K, V> Debug for slotmap::dense::IntoIter<K, V>
impl<K, V> Debug for slotmap::hop::HopSlotMap<K, V>
impl<K, V> Debug for slotmap::hop::IntoIter<K, V>
impl<K, V> Debug for slotmap::secondary::IntoIter<K, V>
impl<K, V> Debug for SecondaryMap<K, V>
impl<K, V> Debug for slotmap::sparse_secondary::IntoIter<K, V>
impl<K, V> Debug for tor_memquota::internal_prelude::SlotMap<K, V>
impl<K, V> Debug for Drain<'_, K, V>
impl<K, V> Debug for Entry<'_, K, V>
impl<K, V> Debug for IndexedEntry<'_, K, V>
impl<K, V> Debug for IntoIter<K, V>
impl<K, V> Debug for IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for Iter<'_, K, V>
impl<K, V> Debug for Iter<'_, K, V>
impl<K, V> Debug for IterMut2<'_, K, V>
impl<K, V> Debug for IterMut<'_, K, V>
impl<K, V> Debug for IterMut<'_, K, V>
impl<K, V> Debug for Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for OccupiedEntry<'_, K, V>
impl<K, V> Debug for Slice<K, V>
impl<K, V> Debug for VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for ValuesMut<'_, K, V>where
V: Debug,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for 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 alloc::collections::btree::map::IntoIter<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>
impl<K, V, A> Debug for Drain<'_, K, V, A>
impl<K, V, A> Debug for IntoIter<K, V, A>
impl<K, V, A> Debug for IntoKeys<K, V, A>
impl<K, V, A> Debug for IntoValues<K, V, A>where
V: Debug,
A: Allocator,
impl<K, V, F> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F>
impl<K, V, R, F, A> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S> Debug for std::collections::hash::map::HashMap<K, V, S>
impl<K, V, S> Debug for SparseSecondaryMap<K, V, S>
impl<K, V, S> Debug for PtrWeakKeyHashMap<K, V, S>
impl<K, V, S> Debug for PtrWeakWeakHashMap<K, V, S>where
K: WeakElement,
<K as WeakElement>::Strong: Debug,
V: WeakElement,
<V as WeakElement>::Strong: Debug,
impl<K, V, S> Debug for WeakKeyHashMap<K, V, S>
impl<K, V, S> Debug for WeakValueHashMap<K, V, S>
impl<K, V, S> Debug for WeakWeakHashMap<K, V, S>where
K: WeakElement,
V: WeakElement,
<K as WeakElement>::Strong: Debug,
<V as WeakElement>::Strong: Debug,
impl<K, V, S> Debug for Entry<'_, K, V, S>
impl<K, V, S> Debug for IndexMap<K, V, S>
impl<K, V, S> Debug for LiteMap<K, V, S>
impl<K, V, S> Debug for OccupiedEntry<'_, K, V, S>
impl<K, V, S> Debug for RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for RawVacantEntryMut<'_, K, V, S>
impl<K, V, S> Debug for VacantEntry<'_, K, V, S>
impl<K, V, S, A> Debug for Entry<'_, K, V, S, A>
impl<K, V, S, A> Debug for HashMap<K, V, S, A>
impl<K, V, S, A> Debug for OccupiedEntry<'_, K, V, S, A>
impl<K, V, S, A> Debug for OccupiedError<'_, K, V, S, A>
impl<K, V, S, A> Debug for RawEntryBuilder<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for RawEntryBuilderMut<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for RawEntryMut<'_, K, V, S, A>
impl<K, V, S, A> Debug for RawOccupiedEntryMut<'_, K, V, S, A>
impl<K, V, S, A> Debug for RawVacantEntryMut<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for VacantEntry<'_, K, V, S, A>where
K: Debug,
A: Allocator,
impl<K: Key> Debug for tor_memquota::refcount::Ref<K>
impl<K: Debug> Debug for Garbage<K>
impl<L> Debug for Okm<'_, L>where
L: KeyType,
impl<L, R> Debug for either::Either<L, R>
impl<L, R> Debug for IterEither<L, R>
impl<L, R> Debug for Either<L, R>
impl<L, R> Debug for Merge<L, R>
impl<M> Debug for Builder<M>where
M: Debug,
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 DataResponse<M>where
M: DynamicDataMarker,
&'a <<M as DynamicDataMarker>::DataStruct as Yokeable<'a>>::Output: for<'a> Debug,
impl<M> Debug for Runnable<M>where
M: Debug,
impl<M, O> Debug for DataPayloadOr<M, O>
impl<M, P> Debug for DataProviderWithMarker<M, P>
impl<N> Debug for OpeningKey<N>where
N: NonceSequence,
impl<N> Debug for OpeningKey<N>where
N: NonceSequence,
impl<N> Debug for OpeningKeyPreparedNonce<'_, N>where
N: NonceSequence,
impl<N> Debug for SealingKey<N>where
N: NonceSequence,
impl<N> Debug for SealingKey<N>where
N: NonceSequence,
impl<N> Debug for SealingKeyPreparedNonce<'_, N>where
N: NonceSequence,
impl<O> Debug for F32<O>where
O: ByteOrder,
impl<O> Debug for F64<O>where
O: ByteOrder,
impl<O> Debug for FromAsciiError<O>
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 + ?Sized> Debug for ProtectedArc<P>
impl<P: Debug + ?Sized> Debug for ProtectedWeak<P>
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<Public, Private> Debug for KeyPairComponents<Public, Private>where
PublicKeyComponents<Public>: Debug,
impl<R1, R2> Debug for Chain<R1, R2>
impl<R> Debug for std::io::buffered::bufreader::BufReader<R>
impl<R> Debug for std::io::Bytes<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 RngReadAdapter<'_, R>where
R: TryRngCore + ?Sized,
impl<R> Debug for UnwrapErr<R>where
R: Debug + TryRngCore,
impl<R> Debug for BufReader<R>where
R: Debug,
impl<R> Debug for BufReader<R>where
R: Debug,
impl<R> Debug for BufReader<R>where
R: Debug,
impl<R> Debug for BufReader<R>where
R: AsyncRead + Debug,
impl<R> Debug for Bytes<R>where
R: Debug,
impl<R> Debug for Lines<R>where
R: Debug,
impl<R> Debug for Lines<R>where
R: Debug,
impl<R> Debug for Lines<R>where
R: Debug,
impl<R> Debug for Lines<R>where
R: Debug,
impl<R> Debug for ReaderStream<R>where
R: Debug,
impl<R> Debug for Split<R>where
R: Debug,
impl<R> Debug for Split<R>where
R: Debug,
impl<R> Debug for Split<R>where
R: Debug,
impl<R> Debug for Take<R>where
R: Debug,
impl<R> Debug for Take<R>where
R: Debug,
impl<R> Debug for Take<R>where
R: Debug,
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>
impl<R, T> Debug for Mutex<R, T>
impl<R, T> Debug for RwLock<R, T>
impl<R, W> Debug for Join<R, W>
impl<RW> Debug for BufStream<RW>where
RW: Debug,
impl<S1, S2> Debug for Or<S1, S2>
impl<S1, S2> Debug for Race<S1, S2>
impl<S> Debug for openssl::ssl::error::HandshakeError<S>where
S: Debug,
impl<S> Debug for url::host::Host<S>where
S: Debug,
impl<S> Debug for MidHandshakeSslStream<S>where
S: Debug,
impl<S> Debug for SslStream<S>where
S: Debug,
impl<S> Debug for StreamUnobtrusivePeeker<S>
impl<S> Debug for BlockOn<S>where
S: Debug,
impl<S> Debug for BlockingStream<S>
impl<S> Debug for Cloned<S>where
S: Debug,
impl<S> Debug for Cloned<S>where
S: Debug,
impl<S> Debug for Copied<S>where
S: Debug,
impl<S> Debug for Copied<S>where
S: Debug,
impl<S> Debug for CopyToBytes<S>where
S: Debug,
impl<S> Debug for CountFuture<S>
impl<S> Debug for Cycle<S>where
S: Debug,
impl<S> Debug for Enumerate<S>where
S: Debug,
impl<S> Debug for Event<S>where
S: Debug,
impl<S> Debug for Flatten<S>
impl<S> Debug for Fuse<S>where
S: Debug,
impl<S> Debug for Fuse<S>where
S: Debug,
impl<S> Debug for Group<S>where
S: Debug,
impl<S> Debug for HandshakeError<S>where
S: Debug,
impl<S> Debug for ImDocument<S>where
S: Debug,
impl<S> Debug for LastFuture<S>
impl<S> Debug for MidHandshakeTlsStream<S>where
S: Debug,
impl<S> Debug for Passwd<S>where
S: Debug,
impl<S> Debug for PollImmediate<S>where
S: Debug,
impl<S> Debug for SinkWriter<S>where
S: Debug,
impl<S> Debug for Skip<S>where
S: Debug,
impl<S> Debug for Skip<S>where
S: Debug,
impl<S> Debug for SplitStream<S>where
S: Debug,
impl<S> Debug for StepBy<S>where
S: Debug,
impl<S> Debug for StepBy<S>where
S: Debug,
impl<S> Debug for Take<S>where
S: Debug,
impl<S> Debug for Take<S>where
S: Debug,
impl<S> Debug for Timeout<S>
impl<S> Debug for TlsStream<S>where
S: Debug,
impl<S> Debug for TlsStream<S>where
S: Debug,
impl<S, B> Debug for StreamReader<S, B>
impl<S, C> Debug for CollectFuture<S, C>
impl<S, C> Debug for TryCollectFuture<S, C>
impl<S, F> Debug for FilterMap<S, F>
impl<S, F> Debug for ForEachFuture<S, F>
impl<S, F> Debug for Inspect<S, F>
impl<S, F> Debug for Inspect<S, F>
impl<S, F> Debug for Map<S, F>
impl<S, F> Debug for Map<S, F>
impl<S, F, Fut> Debug for Then<S, F, Fut>
impl<S, F, T> Debug for FoldFuture<S, F, T>
impl<S, FromA, FromB> Debug for UnzipFuture<S, FromA, FromB>
impl<S, Fut> Debug for StopAfterFuture<S, Fut>
impl<S, Item> Debug for SplitSink<S, Item>
impl<S, P> Debug for Filter<S, P>
impl<S, P> Debug for Filter<S, P>
impl<S, P> Debug for MapWhile<S, P>
impl<S, P> Debug for SkipWhile<S, P>
impl<S, P> Debug for SkipWhile<S, P>
impl<S, P> Debug for TakeWhile<S, P>
impl<S, P> Debug for TakeWhile<S, P>
impl<S, P, B> Debug for PartitionFuture<S, P, B>
impl<S, St, F> Debug for Scan<S, St, F>
impl<S, St, F> Debug for Scan<S, St, F>
impl<S, U> Debug for Chain<S, U>
impl<S, U> Debug for Chain<S, U>
impl<S, U> Debug for Flatten<S>
impl<S, U, F> Debug for FlatMap<S, U, F>
impl<Si1, Si2> Debug for Fanout<Si1, Si2>
impl<Si, F> Debug for SinkMapErr<Si, F>
impl<Si, Item> Debug for Buffer<Si, Item>
impl<Si, Item, E> Debug for SinkErrInto<Si, Item, E>
impl<Si, Item, U, Fut, F> Debug for With<Si, Item, U, Fut, F>
impl<Si, Item, U, St, F> Debug for WithFlatMap<Si, Item, U, St, F>
impl<Si, St> Debug for SendAll<'_, Si, St>
impl<Side, State> Debug for ConfigBuilder<Side, State>where
Side: ConfigSide,
State: Debug,
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<St1, St2> Debug for Chain<St1, St2>
impl<St1, St2> Debug for Select<St1, St2>
impl<St1, St2> Debug for Zip<St1, St2>
impl<St1, St2, Clos, State> Debug for SelectWithStrategy<St1, St2, Clos, State>
impl<St> Debug for BufferUnordered<St>
impl<St> Debug for Buffered<St>
impl<St> Debug for CatchUnwind<St>where
St: Debug,
impl<St> Debug for Chunks<St>
impl<St> Debug for Concat<St>
impl<St> Debug for Count<St>where
St: Debug,
impl<St> Debug for Cycle<St>where
St: Debug,
impl<St> Debug for Enumerate<St>where
St: Debug,
impl<St> Debug for Flatten<St>
impl<St> Debug for Fuse<St>where
St: Debug,
impl<St> Debug for IntoAsyncRead<St>
impl<St> Debug for IntoIter<St>
impl<St> Debug for IntoStream<St>where
St: Debug,
impl<St> Debug for Peek<'_, St>
impl<St> Debug for PeekMut<'_, St>
impl<St> Debug for Peekable<St>
impl<St> Debug for ReadyChunks<St>
impl<St> Debug for SelectAll<St>where
St: Debug,
impl<St> Debug for Skip<St>where
St: Debug,
impl<St> Debug for StreamFuture<St>where
St: Debug,
impl<St> Debug for Take<St>where
St: Debug,
impl<St> Debug for TryBufferUnordered<St>
impl<St> Debug for TryBuffered<St>
impl<St> Debug for TryChunks<St>
impl<St> Debug for TryConcat<St>
impl<St> Debug for TryFlatten<St>
impl<St> Debug for TryFlattenUnordered<St>
impl<St> Debug for TryReadyChunks<St>where
St: Debug + TryStream,
impl<St, C> Debug for Collect<St, C>
impl<St, C> Debug for TryCollect<St, C>
impl<St, E> Debug for ErrInto<St, E>where
MapErr<St, IntoFn<E>>: Debug,
impl<St, F> Debug for Inspect<St, F>where
Map<St, InspectFn<F>>: Debug,
impl<St, F> Debug for InspectErr<St, F>where
Inspect<IntoStream<St>, InspectErrFn<F>>: Debug,
impl<St, F> Debug for InspectOk<St, F>where
Inspect<IntoStream<St>, InspectOkFn<F>>: Debug,
impl<St, F> Debug for Iterate<St, F>where
St: Debug,
impl<St, F> Debug for Map<St, F>where
St: Debug,
impl<St, F> Debug for MapErr<St, F>where
Map<IntoStream<St>, MapErrFn<F>>: Debug,
impl<St, F> Debug for MapOk<St, F>where
Map<IntoStream<St>, MapOkFn<F>>: Debug,
impl<St, F> Debug for NextIf<'_, St, F>
impl<St, F> Debug for Unfold<St, F>where
St: Debug,
impl<St, FromA, FromB> Debug for Unzip<St, FromA, FromB>
impl<St, Fut> Debug for TakeUntil<St, Fut>
impl<St, Fut, F> Debug for All<St, Fut, F>
impl<St, Fut, F> Debug for AndThen<St, Fut, F>
impl<St, Fut, F> Debug for Any<St, Fut, F>
impl<St, Fut, F> Debug for Filter<St, Fut, F>
impl<St, Fut, F> Debug for FilterMap<St, Fut, F>
impl<St, Fut, F> Debug for ForEach<St, Fut, F>
impl<St, Fut, F> Debug for ForEachConcurrent<St, Fut, F>
impl<St, Fut, F> Debug for OrElse<St, Fut, F>
impl<St, Fut, F> Debug for SkipWhile<St, Fut, F>
impl<St, Fut, F> Debug for TakeWhile<St, Fut, F>
impl<St, Fut, F> Debug for Then<St, Fut, F>
impl<St, Fut, F> Debug for TryAll<St, Fut, F>
impl<St, Fut, F> Debug for TryAny<St, Fut, F>
impl<St, Fut, F> Debug for TryFilter<St, Fut, F>
impl<St, Fut, F> Debug for TryFilterMap<St, Fut, F>
impl<St, Fut, F> Debug for TryForEach<St, Fut, F>
impl<St, Fut, F> Debug for TryForEachConcurrent<St, Fut, F>
impl<St, Fut, F> Debug for TrySkipWhile<St, Fut, F>
impl<St, Fut, F> Debug for TryTakeWhile<St, Fut, F>
impl<St, Fut, T, F> Debug for Fold<St, Fut, T, F>
impl<St, Fut, T, F> Debug for TryFold<St, Fut, T, F>
impl<St, S, Fut, F> Debug for Scan<St, S, Fut, F>
impl<St, Si> Debug for Forward<St, Si>where
Forward<St, Si, <St as TryStream>::Ok>: Debug,
St: TryStream,
impl<St, T> Debug for NextIfEq<'_, St, T>
impl<St, U, F> Debug for FlatMap<St, U, F>where
Flatten<Map<St, F>, U>: Debug,
impl<St, U, F> Debug for FlatMapUnordered<St, U, F>
impl<Storage> Debug for __BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<Storage> Debug for __BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<Storage> Debug for __BindgenBitfieldUnit<Storage>where
Storage: Debug,
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> 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 std::sync::mpmc::error::SendTimeoutError<T>
impl<T> Debug for std::sync::mpsc::TrySendError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)
This trait is implemented for tuples up to twelve items long.