pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}
Expand description
?
formatting.
Debug
should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive
a Debug
implementation.
When used with the alternate format specifier #?
, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive]
if all fields implement Debug
. When
derive
d for structs, it will use the name of the struct
, then {
, then a
comma-separated list of each field’s name and Debug
value, then }
. For
enum
s, it will use the name of the variant and, if applicable, (
, then the
Debug
values of the fields, then )
.
Stability
Derived Debug
formats are not stable, and so may change with future Rust
versions. Additionally, Debug
implementations of types provided by the
standard library (std
, core
, alloc
, etc.) are not stable, and
may also change with future Rust versions.
Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(format!("The origin is: {origin:?}"), "The origin is: Point { x: 0, y: 0 }");
Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(format!("The origin is: {origin:?}"), "The origin is: Point { x: 0, y: 0 }");
There are a number of helper methods on the Formatter
struct to help you with manual
implementations, such as debug_struct
.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter
trait (debug_struct
, debug_tuple
,
debug_list
, debug_set
, debug_map
) can do something totally custom by
manually writing an arbitrary representation to the Formatter
.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}
Debug
implementations using either derive
or the debug builder API
on Formatter
support pretty-printing using the alternate flag: {:#?}
.
Pretty-printing with #?
:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(format!("The origin is: {origin:#?}"),
"The origin is: Point {
x: 0,
y: 0,
}");
Required Methods§
sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
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 Body
impl Debug for kvarn::application::Error
impl Debug for HttpConnection
impl Debug for PushedResponsePipe
impl Debug for ResponseBodyPipe
impl Debug for ResponsePipe
impl Debug for CachePreferenceError
impl Debug for ClientCachePreference
impl Debug for CompressPreference
impl Debug for PreferredCompression
impl Debug for ServerCachePreference
impl Debug for UriKey
impl Debug for Value
impl Debug for PluginResponseKind
handover
only.impl Debug for Encryption
impl Debug for kvarn::encryption::Error
impl Debug for BindIpVersion
impl Debug for CacheAction
impl Debug for kvarn::host::CertificateError
impl Debug for Action
impl Debug for AcceptAction
impl Debug for kvarn::prelude::compact_str::core::cmp::Ordering
impl Debug for Infallible
impl Debug for c_void
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for Which
impl Debug for SearchStep
impl Debug for kvarn::prelude::compact_str::core::sync::atomic::Ordering
impl Debug for kvarn::prelude::io::ErrorKind
impl Debug for SeekFrom
impl Debug for kvarn::prelude::net::IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for Shutdown
impl Debug for kvarn::prelude::net::SocketAddr
impl Debug for BytesCow
impl Debug for CacheControlError
impl Debug for kvarn::prelude::utils::parse::Error
impl Debug for RequestParseStage
impl Debug for SanitizeError
impl Debug for kvarn::prelude::fmt::Alignment
impl Debug for webpki::error::Error
impl Debug for webpki::subject_name::ip_address::IpAddr
impl Debug for TryReserveErrorKind
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for std::sync::mpsc::RecvTimeoutError
impl Debug for std::sync::mpsc::TryRecvError
impl Debug for _Unwind_Reason_Code
impl Debug for FlushCompress
impl Debug for FlushDecompress
impl Debug for Status
impl Debug for log::Level
impl Debug for log::LevelFilter
impl Debug for Sign
impl Debug for FloatErrorKind
impl Debug for petgraph::dot::Config
impl Debug for Directed
impl Debug for Direction
impl Debug for Undirected
impl Debug for Always
impl Debug for InterfaceIndexOrAddress
impl Debug for Variant
impl Debug for uuid::Version
impl Debug for BernoulliError
impl Debug for WeightedError
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
impl Debug for bool
impl Debug for char
impl Debug for f32
impl Debug for f64
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 ByteBody
impl Debug for TcpStreamAsyncWrapper
impl Debug for CompressedResponse
impl Debug for CompressionOptions
impl Debug for PathQuery
impl Debug for AllowList
impl Debug for ComputedRule
impl Debug for Rule
impl Debug for kvarn::csp::ValueSet
impl Debug for kvarn::ctl::Arguments
handover
only.impl Debug for PluginResponse
handover
only.impl Debug for Plugins
handover
only.impl Debug for kvarn::extensions::Extensions
impl Debug for kvarn::extensions::Id
impl Debug for LazyRequestBody
impl Debug for Collection
impl Debug for CollectionBuilder
impl Debug for Host
impl Debug for Options
impl Debug for kvarn::limiting::Manager
impl Debug for kvarn::read::Metadata
impl Debug for AcceptManager
impl Debug for kvarn::shutdown::Manager
impl Debug for CacheReply
impl Debug for FatResponse
impl Debug for PortDescriptor
impl Debug for RunConfig
impl Debug for Settings
impl Debug for VariedResponse
impl Debug for UninitSlice
impl Debug for kvarn::prelude::bytes::Bytes
impl Debug for BytesMut
impl Debug for OffsetDateTime
impl Debug for AllocError
impl Debug for Layout
impl Debug for LayoutError
impl Debug for TypeId
impl Debug for CpuidResult
impl Debug for __m128
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512i
impl Debug for TryFromSliceError
impl Debug for kvarn::prelude::compact_str::core::ascii::EscapeDefault
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for DecodeUtf16Error
impl Debug for kvarn::prelude::compact_str::core::char::EscapeDebug
impl Debug for kvarn::prelude::compact_str::core::char::EscapeDefault
impl Debug for kvarn::prelude::compact_str::core::char::EscapeUnicode
impl Debug for ParseCharError
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for CStr
impl Debug for FromBytesUntilNulError
impl Debug for FromBytesWithNulError
impl Debug for SipHasher
impl Debug for PhantomPinned
impl Debug for Assume
impl Debug for NonZeroI8
impl Debug for NonZeroI16
impl Debug for NonZeroI32
impl Debug for NonZeroI64
impl Debug for NonZeroI128
impl Debug for NonZeroIsize
impl Debug for NonZeroU8
impl Debug for NonZeroU16
impl Debug for NonZeroU32
impl Debug for NonZeroU64
impl Debug for NonZeroU128
impl Debug for NonZeroUsize
impl Debug for kvarn::prelude::compact_str::core::num::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for kvarn::prelude::compact_str::core::ptr::Alignment
impl Debug for TimSortRun
impl Debug for AtomicBool
target_has_atomic_load_store="8"
only.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 kvarn::prelude::compact_str::core::task::Context<'_>
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for kvarn::prelude::compact_str::core::task::Waker
impl Debug for kvarn::prelude::compact_str::core::time::Duration
impl Debug for TryFromFloatSecsError
impl Debug for CompactString
impl Debug for kvarn::prelude::compact_str::Drain<'_>
impl Debug for Utf16Error
impl Debug for kvarn::prelude::fs::File
impl Debug for kvarn::prelude::fs::OpenOptions
impl Debug for HeaderName
impl Debug for HeaderValue
impl Debug for InvalidHeaderName
impl Debug for InvalidHeaderValue
impl Debug for ToStrError
impl Debug for Mime
impl Debug for BorrowedBuf<'_>
impl Debug for kvarn::prelude::io::Empty
impl Debug for kvarn::prelude::io::Error
impl Debug for kvarn::prelude::io::Repeat
impl Debug for kvarn::prelude::io::Sink
impl Debug for Stderr
impl Debug for StderrLock<'_>
impl Debug for Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdout
impl Debug for StdoutLock<'_>
impl Debug for WriterPanicked
impl Debug for kvarn::prelude::net::AddrParseError
impl Debug for IntoIncoming
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for kvarn::prelude::net::TcpListener
impl Debug for kvarn::prelude::net::TcpStream
impl Debug for kvarn::prelude::net::UdpSocket
impl Debug for Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for ParseBoolError
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for kvarn::prelude::Instant
impl Debug for Method
impl Debug for Path
impl Debug for PathBuf
impl Debug for ReadBuf<'_>
impl Debug for StatusCode
impl Debug for kvarn::prelude::Version
impl Debug for WriteableBytes
impl Debug for Authority
impl Debug for kvarn::prelude::uri::Builder
impl Debug for InvalidUri
impl Debug for InvalidUriParts
impl Debug for kvarn::prelude::uri::Parts
impl Debug for PathAndQuery
impl Debug for Scheme
impl Debug for Uri
impl Debug for CacheControl
impl Debug for CriticalRequestComponents
impl Debug for PresentArguments
impl Debug for PresentExtensions
impl Debug for PresentExtensionsIter
impl Debug for ring::aead::quic::Algorithm
impl Debug for ring::aead::Algorithm
impl Debug for LessSafeKey
impl Debug for UnboundKey
impl Debug for ring::agreement::Algorithm
impl Debug for EphemeralPrivateKey
impl Debug for ring::agreement::PublicKey
impl Debug for ring::digest::Algorithm
impl Debug for Digest
impl Debug for Ed25519KeyPair
impl Debug for EdDSAParameters
impl Debug for EcdsaKeyPair
impl Debug for EcdsaSigningAlgorithm
impl Debug for EcdsaVerificationAlgorithm
impl Debug for KeyRejected
impl Debug for Unspecified
impl Debug for ring::hkdf::Algorithm
impl Debug for Prk
impl Debug for Salt
impl Debug for ring::hmac::Algorithm
impl Debug for ring::hmac::Context
impl Debug for ring::hmac::Key
impl Debug for ring::hmac::Tag
impl Debug for SystemRandom
impl Debug for RsaKeyPair
impl Debug for RsaSubjectPublicKey
impl Debug for RsaParameters
impl Debug for TestCase
impl Debug for EndOfInput
impl Debug for DnsName
impl Debug for DnsNameRef<'_>
alloc
only.Requires the alloc
feature.
impl Debug for webpki::subject_name::dns_name::InvalidDnsNameError
impl Debug for webpki::subject_name::ip_address::AddrParseError
impl Debug for InvalidSubjectNameError
impl Debug for webpki::time::Time
impl Debug for Global
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 String
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for DefaultHasher
impl Debug for RandomState
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 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 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 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::ucred::UCred
impl Debug for Components<'_>
impl Debug for Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for StripPrefixError
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for std::process::Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for Stdio
impl Debug for std::sync::barrier::Barrier
impl Debug for std::sync::barrier::BarrierWaitResult
impl Debug for std::sync::condvar::Condvar
impl Debug for std::sync::condvar::WaitTimeoutResult
impl Debug for std::sync::mpsc::RecvError
impl Debug for std::sync::once::Once
impl Debug for std::sync::once::OnceState
impl Debug for AccessError
impl Debug for std::thread::scoped::Scope<'_, '_>
impl Debug for std::thread::Builder
impl Debug for Thread
impl Debug for ThreadId
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for Adler32
impl Debug for FixedBitSet
impl Debug for Crc
impl Debug for GzBuilder
impl Debug for GzHeader
impl Debug for Compress
impl Debug for CompressError
impl Debug for Decompress
impl Debug for flate2::mem::DecompressError
impl Debug for flate2::Compression
impl Debug for getrandom::error::Error
impl Debug for h2::client::Builder
impl Debug for PushPromise
impl Debug for PushPromises
impl Debug for PushedResponseFuture
impl Debug for ResponseFuture
impl Debug for h2::error::Error
impl Debug for h2::ext::Protocol
impl Debug for Reason
impl Debug for h2::server::Builder
impl Debug for FlowControl
impl Debug for Ping
impl Debug for PingPong
impl Debug for Pong
impl Debug for RecvStream
impl Debug for StreamId
impl Debug for http::error::Error
impl Debug for http::extensions::Extensions
impl Debug for InvalidMethod
impl Debug for http::request::Builder
impl Debug for http::request::Parts
impl Debug for http::response::Builder
impl Debug for http::response::Parts
impl Debug for InvalidStatusCode
impl Debug for log::ParseLevelError
impl Debug for SetLoggerError
impl Debug for FromStrError
impl Debug for BigInt
impl Debug for BigUint
impl Debug for ParseBigIntError
impl Debug for num_traits::ParseFloatError
impl Debug for NegativeCycle
impl Debug for EdgesNotSorted
impl Debug for petgraph::visit::dfsvisit::Time
impl Debug for SockAddr
impl Debug for Socket
impl Debug for SockRef<'_>
impl Debug for Domain
impl Debug for socket2::Protocol
impl Debug for RecvFlags
impl Debug for TcpKeepalive
impl Debug for Type
impl Debug for DefaultCallsite
impl Debug for Identifier
impl Debug for DefaultGuard
impl Debug for Dispatch
impl Debug for SetGlobalDefaultError
impl Debug for WeakDispatch
impl Debug for tracing_core::field::Empty
impl Debug for Field
impl Debug for FieldSet
impl Debug for tracing_core::field::Iter
impl Debug for Kind
impl Debug for tracing_core::metadata::Level
impl Debug for tracing_core::metadata::LevelFilter
impl Debug for tracing_core::metadata::ParseLevelError
impl Debug for ParseLevelFilterError
impl Debug for Current
impl Debug for tracing_core::span::Id
impl Debug for tracing_core::subscriber::Interest
impl Debug for NoSubscriber
impl Debug for EnteredSpan
impl Debug for Span
impl Debug for ATerm
impl Debug for B0
impl Debug for B1
impl Debug for Z0
impl Debug for Equal
impl Debug for Greater
impl Debug for Less
impl Debug for UTerm
impl Debug for uuid::builder::Builder
impl Debug for uuid::error::Error
impl Debug for Braced
impl Debug for Hyphenated
impl Debug for Simple
impl Debug for Urn
impl Debug for Uuid
impl Debug for NoContext
impl Debug for Timestamp
impl Debug for Bernoulli
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for Alphanumeric
impl Debug for Standard
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for ReadError
impl Debug for StepRng
impl Debug for SmallRng
impl Debug for StdRng
impl Debug for ThreadRng
impl Debug for ChaCha8Core
impl Debug for ChaCha8Rng
impl Debug for ChaCha12Core
impl Debug for ChaCha12Rng
impl Debug for ChaCha20Core
impl Debug for ChaCha20Rng
impl Debug for rand_core::error::Error
impl Debug for OsRng
impl Debug for kvarn::prelude::fmt::Arguments<'_>
impl Debug for kvarn::prelude::fmt::Error
impl Debug for ASN1DateTime
impl Debug for ASN1Time
impl Debug for ASN1TimeZone
impl Debug for AbortHandle
impl Debug for AbortHandle
impl Debug for AbortRegistration
impl Debug for Aborted
impl Debug for AccessKind
impl Debug for AccessMode
impl Debug for AcquireError
impl Debug for AlertDescription
impl Debug for AlertLevel
impl Debug for AlertMessagePayload
impl Debug for Alphabet
impl Debug for AnyDelimiterCodec
impl Debug for AnyDelimiterCodecError
impl Debug for AtomicWaker
impl Debug for Backoff
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for BasicConstraints
impl Debug for BerClassFromIntError
impl Debug for BigEndian
impl Debug for BitOrder
impl Debug for BlockSwitch
impl Debug for Boolean
impl Debug for BorrowedFormatItem<'_>
alloc
only.impl Debug for BroCatliResult
impl Debug for BrotliDecoderErrorCode
impl Debug for BrotliDistanceParams
impl Debug for BrotliEncoderMode
impl Debug for BrotliEncoderParameter
impl Debug for BrotliEncoderParams
impl Debug for BrotliEncoderThreadError
impl Debug for BrotliHasherParams
impl Debug for BrotliResult
impl Debug for Builder
impl Debug for Builder
impl Debug for BulkAlgorithm
impl Debug for BytesCodec
impl Debug for Canceled
impl Debug for CancellationToken
impl Debug for CapacityError
impl Debug for CertReqExtension
impl Debug for Certificate
impl Debug for CertificateEntry
impl Debug for CertificateError
impl Debug for CertificateExtension
impl Debug for CertificatePayloadTLS13
impl Debug for CertificateRequestPayload
impl Debug for CertificateRequestPayloadTLS13
impl Debug for CertificateStatus
impl Debug for CertificateStatusRequest
impl Debug for CertificateStatusType
impl Debug for ChallengePassword
impl Debug for ChangeCipherSpecPayload
impl Debug for CipherSuite
impl Debug for CipherSuiteCommon
impl Debug for Class
impl Debug for ClientCertificateType
impl Debug for ClientConfig
impl Debug for ClientConnection
impl Debug for ClientECDHParams
impl Debug for ClientExtension
impl Debug for ClientHelloPayload
impl Debug for ClientSessionCommon
impl Debug for ClientSessionTicket
impl Debug for CloseCode
impl Debug for CollectionAllocErr
impl Debug for Collector
impl Debug for Command
impl Debug for CompareResult
impl Debug for Component
impl Debug for ComponentRange
impl Debug for Compression
impl Debug for CompressionLevel
impl Debug for CompressionStrategy
impl Debug for Condvar
impl Debug for Config
impl Debug for Config
impl Debug for Configuration
impl Debug for Connection
impl Debug for ContentType
impl Debug for Control
impl Debug for ConversionRange
impl Debug for CopyCommand
impl Debug for CreateKind
impl Debug for CtVersion
impl Debug for DIR
impl Debug for Data
impl Debug for DataChange
impl Debug for DataFormat
impl Debug for Date
impl Debug for DateKind
impl Debug for Day
impl Debug for DecodeError
impl Debug for DecodeError
impl Debug for DecodeKind
impl Debug for DecodePaddingMode
impl Debug for DecodePartial
impl Debug for DecodeSliceError
impl Debug for DecompressError
impl Debug for Decrypted
impl Debug for Deframed
impl Debug for DeframerError
impl Debug for DeliveryMode
impl Debug for DerConstraint
impl Debug for DestinationSlot
impl Debug for DictCommand
impl Debug for DifferentVariant
impl Debug for DigitallySignedStruct
impl Debug for DirBuilder
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for DirEntry
impl Debug for DistinguishedName
impl Debug for Dl_info
impl Debug for DropGuard
impl Debug for DuplexStream
impl Debug for Duration
impl Debug for ECCurveType
impl Debug for ECDHEServerKeyExchange
impl Debug for ECParameters
impl Debug for ECPointFormat
impl Debug for Eager
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 Empty
impl Debug for Empty
impl Debug for EncodeSliceError
impl Debug for Encoding
impl Debug for EndOfContent
impl Debug for Endianness
impl Debug for Enter
impl Debug for EnterError
impl Debug for Entry
impl Debug for Entry
impl Debug for Entry32
impl Debug for Entry128
impl Debug for Enumerated
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 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 EventKind
impl Debug for EventMask
impl Debug for Events
impl Debug for Explicit
impl Debug for ExtensionType
impl Debug for FILE
impl Debug for Fd
impl Debug for File
impl Debug for FileTime
impl Debug for FilterOp
impl Debug for FinderBuilder
impl Debug for Fixed
impl Debug for FixedBuf
impl Debug for Flag
impl Debug for Flags
impl Debug for Format
impl Debug for FormattedComponents
impl Debug for Frame
impl Debug for FrameHeader
impl Debug for Fsync
impl Debug for FsyncFlags
impl Debug for GeneralPurposeConfig
impl Debug for GeneralizedTime
impl Debug for Guard
impl Debug for Handle
impl Debug for Handle
impl Debug for HandshakeMessagePayload
impl Debug for HandshakePayload
impl Debug for HandshakeType
impl Debug for HashAlgorithm
impl Debug for Hasher
impl Debug for HeartbeatMessageType
impl Debug for HeartbeatMode
impl Debug for HelloRetryExtension
impl Debug for HelloRetryRequest
impl Debug for HexU8
impl Debug for HexU16
impl Debug for Hour
impl Debug for HuffmanCode
impl Debug for INotifyWatcher
impl Debug for Ignore
impl Debug for Implicit
impl Debug for Incomplete
impl Debug for IndeterminateOffset
impl Debug for InhibitAnyPolicy
impl Debug for Inotify
impl Debug for Instant
impl Debug for Instant
impl Debug for Interest
impl Debug for Interest
impl Debug for Interval
impl Debug for IntoIter
impl Debug for InvalidBufferSize
impl Debug for InvalidDnsNameError
impl Debug for InvalidFormatDescription
impl Debug for InvalidLength
impl Debug for InvalidMessage
impl Debug for InvalidOutputSize
impl Debug for InvalidVariant
impl Debug for IoState
impl Debug for IsFirst
impl Debug for Item
impl Debug for Iter
impl Debug for IterRaw
impl Debug for JobHandle
impl Debug for JoinError
impl Debug for KeyExchangeAlgorithm
impl Debug for KeyUpdateRequest
impl Debug for KeyUsage
impl Debug for Lazy
impl Debug for Length
impl Debug for LengthDelimitedCodec
impl Debug for LengthDelimitedCodecError
impl Debug for LinesCodec
impl Debug for LinesCodecError
impl Debug for LiteralBlockSwitch
impl Debug for LiteralPredictionModeNibble
impl Debug for LittleEndian
impl Debug for LoadedEntry
impl Debug for LocalEnterGuard
impl Debug for LocalHandle
impl Debug for LocalPool
impl Debug for LocalSet
impl Debug for LocalSpawner
impl Debug for MZError
impl Debug for MZFlush
impl Debug for MZStatus
impl Debug for Message
impl Debug for Message
impl Debug for MessageError
impl Debug for MessagePayload
impl Debug for MetadataKind
impl Debug for MimeGuess
impl Debug for Minute
impl Debug for MissedTickBehavior
impl Debug for Mode
impl Debug for ModifyKind
impl Debug for Month
impl Debug for Month
impl Debug for MonthRepr
impl Debug for NSCertType
impl Debug for NamedCurve
impl Debug for NamedGroup
impl Debug for Needed
impl Debug for NewSessionTicketExtension
impl Debug for NewSessionTicketPayload
impl Debug for NewSessionTicketPayloadTLS13
impl Debug for NidError
impl Debug for Nop
impl Debug for Notify
impl Debug for Null
impl Debug for Null
impl Debug for NullWatcher
impl Debug for OCSPCertificateStatusRequest
impl Debug for OffsetHour
impl Debug for OffsetMinute
impl Debug for OffsetPrecision
impl Debug for OffsetSecond
impl Debug for OidEntry
impl Debug for OidParseError
impl Debug for OnPoolDropBehavior
impl Debug for Once
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for OnceState
impl Debug for OpCode
impl Debug for OpaqueMessage
impl Debug for OpenHow
impl Debug for OpenOptions
impl Debug for OptTaggedParser
impl Debug for Ordinal
impl Debug for OwnedFormatItem
impl Debug for OwnedReadHalf
impl Debug for OwnedReadHalf
impl Debug for OwnedSemaphorePermit
impl Debug for OwnedTrustAnchor
impl Debug for OwnedWriteHalf
impl Debug for OwnedWriteHalf
impl Debug for PDF
impl Debug for PEMError
impl Debug for PSKKeyExchangeMode
impl Debug for Padding
impl Debug for Parameters
impl Debug for ParkResult
impl Debug for ParkToken
impl Debug for Parker
impl Debug for Parse
impl Debug for ParseAlphabetError
impl Debug for ParseFromDescription
impl Debug for Parsed
impl Debug for Payload
impl Debug for PayloadU8
impl Debug for PayloadU16
impl Debug for PayloadU24
impl Debug for PeerIncompatible
impl Debug for PeerMisbehaved
impl Debug for Pem
impl Debug for Period
impl Debug for PlainMessage
impl Debug for Policy
impl Debug for PolicyConstraints
impl Debug for Poll
impl Debug for PollAdd
impl Debug for PollNext
impl Debug for PollRemove
impl Debug for PollSemaphore
impl Debug for PollWatcher
impl Debug for PosData
impl Debug for PredicateError
impl Debug for Prefilter
impl Debug for PrettyPrinterFlag
impl Debug for PrimitiveDateTime
impl Debug for PrivateKey
impl Debug for Probe
impl Debug for ProtocolError
impl Debug for ProtocolName
impl Debug for ProtocolVersion
impl Debug for PushError
impl Debug for Random
impl Debug for ReadDir
impl Debug for ReadFixed
impl Debug for Readv
impl Debug for Ready
impl Debug for ReadyTimeoutError
impl Debug for Real
impl Debug for ReasonCode
impl Debug for ReasonFlags
impl Debug for Receiver
impl Debug for RecursiveMode
impl Debug for RecvError
impl Debug for RecvError
impl Debug for RecvError
impl Debug for RecvError
impl Debug for RecvMsg
impl Debug for RecvMsgMulti
impl Debug for RecvTimeoutError
impl Debug for Registry
impl Debug for RemovalCause
impl Debug for RemoveKind
impl Debug for RenameMode
impl Debug for Repeat
impl Debug for Repeat
impl Debug for RequeueOp
impl Debug for ResponderId
impl Debug for Resumption
impl Debug for ReuniteError
impl Debug for ReuniteError
impl Debug for Rfc2822
impl Debug for Rfc3339
impl Debug for Role
impl Debug for RootCertStore
impl Debug for Runtime
impl Debug for RuntimeFlavor
impl Debug for Scope<'_>
impl Debug for Sct
impl Debug for Second
impl Debug for Select<'_>
impl Debug for SelectTimeoutError
impl Debug for SelectedOperation<'_>
impl Debug for Semaphore
impl Debug for SendError
impl Debug for SendMsg
impl Debug for SendMsgZc
impl Debug for Sender
impl Debug for SerializeError
impl Debug for ServerConfig
impl Debug for ServerConnection
impl Debug for ServerECDHParams
impl Debug for ServerExtension
impl Debug for ServerHelloPayload
impl Debug for ServerKeyExchangePayload
impl Debug for ServerName
impl Debug for ServerName
impl Debug for ServerNamePayload
impl Debug for ServerNameType
impl Debug for ServerSessionValue
impl Debug for SessionId
impl Debug for Sha1Core
impl Debug for Side
impl Debug for SignError
impl Debug for SignatureAlgorithm
impl Debug for SignatureScheme
impl Debug for Sink
impl Debug for Sink
impl Debug for Sleep
impl Debug for SliceOffset
impl Debug for SocketAddr
impl Debug for SocketAddr
impl Debug for Soundness
impl Debug for SpawnError
impl Debug for Specification
impl Debug for SpecificationError
impl Debug for SpeedAndMax
impl Debug for StandardAlloc
impl Debug for StartPosQueue
impl Debug for StreamResult
impl Debug for Subsecond
impl Debug for SubsecondDigits
impl Debug for SupportedCipherSuite
impl Debug for SupportedKxGroup
impl Debug for SupportedProtocolVersion
impl Debug for SyncFileRange
impl Debug for TDEFLFlush
impl Debug for TDEFLStatus
impl Debug for TINFLStatus
impl Debug for Tag
impl Debug for TbsCertificateParser
impl Debug for TcpListener
impl Debug for TcpListener
impl Debug for TcpSocket
impl Debug for TcpStream
impl Debug for TcpStream
impl Debug for Time
impl Debug for TimePrecision
impl Debug for Timeout
impl Debug for TimeoutFlags
impl Debug for Timespec
impl Debug for Tls12CipherSuite
impl Debug for Tls12ClientSessionValue
impl Debug for Tls12Resumption
impl Debug for Tls13CipherSuite
impl Debug for Tls13ClientSessionValue
impl Debug for TlsError
impl Debug for Token
impl Debug for Translate
impl Debug for TruncSide
impl Debug for TryAcquireError
impl Debug for TryCurrentError
impl Debug for TryFromParsed
impl Debug for TryIoError
impl Debug for TryLockError
impl Debug for TryReadyError
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 TrySelectError
impl Debug for UCred
impl Debug for UdpSocket
impl Debug for UdpSocket
impl Debug for Union1
impl Debug for UnixDatagram
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for UnixStream
impl Debug for UnixTimestamp
impl Debug for UnixTimestampPrecision
impl Debug for UnknownExtension
impl Debug for UnparkResult
impl Debug for UnparkToken
impl Debug for Unparker
impl Debug for UrlError
impl Debug for UtcOffset
impl Debug for UtcTime
impl Debug for Validity
impl Debug for VerboseErrorKind
impl Debug for WaitForCancellationFutureOwned
impl Debug for WaitGroup
impl Debug for WaitTimeoutResult
impl Debug for Waker
impl Debug for WalkDir
impl Debug for WantsCipherSuites
impl Debug for WantsClientCert
impl Debug for WantsKxGroups
impl Debug for WantsServerCert
impl Debug for WantsTransparencyPolicyOrClientCert
impl Debug for WantsVerifier
impl Debug for WantsVersions
impl Debug for WatchDescriptor
impl Debug for WatchMask
impl Debug for WatcherKind
impl Debug for WebSocketConfig
impl Debug for WebSocketContext
impl Debug for WeekNumber
impl Debug for WeekNumberRepr
impl Debug for Weekday
impl Debug for Weekday
impl Debug for WeekdayRepr
impl Debug for Wrap
impl Debug for WriteFixed
impl Debug for Writev
impl Debug for X509CertificateParser
impl Debug for X509Error
impl Debug for X509ExtensionParser
impl Debug for X509Version
impl Debug for Year
impl Debug for YearRepr
impl Debug for ZopfliNode
impl Debug for __c_anonymous_ifr_ifru
extra_traits
and libc_union
only.impl Debug for __c_anonymous_ifru_map
impl Debug for __c_anonymous_ptrace_syscall_info_data
extra_traits
and libc_union
only.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_j1939
impl Debug for __c_anonymous_sockaddr_can_tp
impl Debug for __exit_status
impl Debug for __timeval
impl Debug for _libc_fpstate
impl Debug for _libc_fpxreg
impl Debug for _libc_xmmreg
impl Debug for addrinfo
impl Debug for af_alg_iv
extra_traits
only.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 can_filter
impl Debug for clone_args
impl Debug for cmsghdr
impl Debug for cpu_set_t
impl Debug for dirent
extra_traits
only.impl Debug for dirent64
extra_traits
only.impl Debug for dl_phdr_info
impl Debug for dqblk
impl Debug for dyn Any + 'static
impl Debug for dyn Any + Send + 'static
impl Debug for dyn Any + Sync + Send + 'static
impl Debug for dyn Value + 'static
impl Debug for epoll_event
extra_traits
only.impl Debug for fanotify_event_metadata
impl Debug for fanotify_response
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 flock
impl Debug for flock64
impl Debug for fpos64_t
impl Debug for fpos_t
impl Debug for fsid_t
impl Debug for genlmsghdr
impl Debug for glob64_t
impl Debug for glob_t
impl Debug for group
impl Debug for hostent
impl Debug for if_nameindex
impl Debug for ifaddrs
impl Debug for ifreq
extra_traits
only.impl Debug for in6_addr
impl Debug for in6_ifreq
impl Debug for in6_pktinfo
impl Debug for in6_rtmsg
impl Debug for in_addr
impl Debug for in_pktinfo
impl Debug for inotify_event
impl Debug for 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 iovec
impl Debug for ip_mreq
impl Debug for ip_mreq_source
impl Debug for ip_mreqn
impl Debug for ipc_perm
impl Debug for ipv6_mreq
impl Debug for itimerspec
impl Debug for itimerval
impl Debug for j1939_filter
impl Debug for lconv
impl Debug for linger
impl Debug for mallinfo
impl Debug for mallinfo2
impl Debug for mcontext_t
impl Debug for mmsghdr
impl Debug for mntent
impl Debug for mq_attr
extra_traits
only.impl Debug for msghdr
impl Debug for msginfo
impl Debug for msqid_ds
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for ntptimeval
impl Debug for open_how
impl Debug for option
impl Debug for packet_mreq
impl Debug for passwd
impl Debug for pollfd
impl Debug for posix_spawn_file_actions_t
impl Debug for posix_spawnattr_t
impl Debug for protoent
impl Debug for pthread_attr_t
impl Debug for pthread_cond_t
extra_traits
only.impl Debug for pthread_condattr_t
impl Debug for pthread_mutex_t
extra_traits
only.impl Debug for pthread_mutexattr_t
impl Debug for pthread_rwlock_t
extra_traits
only.impl Debug for pthread_rwlockattr_t
impl Debug for ptrace_peeksiginfo_args
impl Debug for ptrace_rseq_configuration
impl Debug for ptrace_syscall_info
impl Debug for regex_t
impl Debug for regmatch_t
impl Debug for rlimit
impl Debug for rlimit64
impl Debug for rtentry
impl Debug for rusage
impl Debug for sched_param
impl Debug for seccomp_data
impl Debug for seccomp_notif_sizes
impl Debug for sem_t
impl Debug for sembuf
impl Debug for semid_ds
impl Debug for seminfo
impl Debug for servent
impl Debug for shmid_ds
impl Debug for sigaction
impl Debug for sigevent
extra_traits
only.impl Debug for siginfo_t
impl Debug for signalfd_siginfo
impl Debug for sigset_t
impl Debug for sigval
impl Debug for sock_extended_err
impl Debug for sock_filter
impl Debug for sock_fprog
impl Debug for sockaddr
impl Debug for sockaddr_alg
extra_traits
only.impl Debug for sockaddr_in
impl Debug for sockaddr_in6
impl Debug for sockaddr_ll
impl Debug for sockaddr_nl
extra_traits
only.impl Debug for sockaddr_storage
extra_traits
only.impl Debug for sockaddr_un
extra_traits
only.impl Debug for sockaddr_vm
impl Debug for spwd
impl Debug for stack_t
impl Debug for stat
impl Debug for stat64
impl Debug for statfs
impl Debug for statfs64
impl Debug for statvfs
impl Debug for statvfs64
impl Debug for statx
impl Debug for statx_timestamp
impl Debug for sysinfo
impl Debug for termios
impl Debug for termios2
impl Debug for timespec
impl Debug for timeval
impl Debug for timex
impl Debug for timezone
impl Debug for tm
impl Debug for tms
impl Debug for u24
impl Debug for ucontext_t
extra_traits
only.impl Debug for ucred
impl Debug for uinput_abs_setup
impl Debug for uinput_ff_erase
impl Debug for uinput_ff_upload
impl Debug for uinput_setup
extra_traits
only.impl Debug for uinput_user_dev
extra_traits
only.impl Debug for user
impl Debug for user_fpregs_struct
extra_traits
only.impl Debug for user_regs_struct
impl Debug for utimbuf
impl Debug for utmpx
extra_traits
only.impl Debug for utsname
extra_traits
only.impl Debug for winsize
impl<'a> Debug for MethodAllowList<'a>
impl<'a> Debug for SendKind<'a>
impl<'a> Debug for IpAddrRef<'a>
impl<'a> Debug for SubjectNameRef<'a>
impl<'a> Debug for std::path::Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for IndexVecIter<'a>
impl<'a> Debug for PresentData<'a>
impl<'a> Debug for Demand<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for Location<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for kvarn::prelude::net::Incoming<'a>
impl<'a> Debug for kvarn::prelude::str::Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for kvarn::prelude::str::EscapeDebug<'a>
impl<'a> Debug for kvarn::prelude::str::EscapeDefault<'a>
impl<'a> Debug for kvarn::prelude::str::EscapeUnicode<'a>
impl<'a> Debug for kvarn::prelude::str::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for Query<'a>
impl<'a> Debug for QueryPair<'a>
impl<'a> Debug for QueryPairIter<'a>
impl<'a> Debug for PresentArgumentsIter<'a>
impl<'a> Debug for QuotedStrSplitIter<'a>
impl<'a> Debug for ValueQualitySet<'a>
impl<'a> Debug for Input<'a>
impl<'a> Debug for untrusted::Reader<'a>
impl<'a> Debug for TlsClientTrustAnchors<'a>
impl<'a> Debug for TlsServerTrustAnchors<'a>
impl<'a> Debug for TrustAnchor<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for 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 Name<'a>
impl<'a> Debug for Params<'a>
impl<'a> Debug for MaybeUninitSlice<'a>
impl<'a> Debug for tracing_core::event::Event<'a>
impl<'a> Debug for tracing_core::field::ValueSet<'a>
impl<'a> Debug for tracing_core::metadata::Metadata<'a>
impl<'a> Debug for Attributes<'a>
impl<'a> Debug for tracing_core::span::Record<'a>
impl<'a> Debug for Entered<'a>
impl<'a> Debug for AccessDescription<'a>
impl<'a> Debug for AlgorithmIdentifier<'a>
impl<'a> Debug for Any<'a>
impl<'a> Debug for AttributeTypeAndValue<'a>
impl<'a> Debug for AuthorityInfoAccess<'a>
impl<'a> Debug for AuthorityKeyIdentifier<'a>
impl<'a> Debug for BerObject<'a>
impl<'a> Debug for BerObjectContent<'a>
impl<'a> Debug for BerObjectIntoIterator<'a>
impl<'a> Debug for BerObjectRefIterator<'a>
impl<'a> Debug for BitString<'a>
impl<'a> Debug for BitStringObject<'a>
impl<'a> Debug for BmpString<'a>
impl<'a> Debug for BufReadDecoderError<'a>
impl<'a> Debug for CRLDistributionPoint<'a>
impl<'a> Debug for CRLDistributionPoints<'a>
impl<'a> Debug for CertificateRevocationList<'a>
impl<'a> Debug for CtExtensions<'a>
impl<'a> Debug for CtLogID<'a>
impl<'a> Debug for DecodeError<'a>
impl<'a> Debug for DigitallySigned<'a>
impl<'a> Debug for DistributionPointName<'a>
impl<'a> Debug for ECPoint<'a>
impl<'a> Debug for EcdsaSigValue<'a>
impl<'a> Debug for EmbeddedPdv<'a>
impl<'a> Debug for EnterGuard<'a>
impl<'a> Debug for Events<'a>
impl<'a> Debug for ExtendedKeyUsage<'a>
impl<'a> Debug for ExtensionRequest<'a>
impl<'a> Debug for GeneralName<'a>
impl<'a> Debug for GeneralString<'a>
impl<'a> Debug for GeneralSubtree<'a>
impl<'a> Debug for GraphicString<'a>
impl<'a> Debug for Header<'a>
impl<'a> Debug for HexSlice<'a>
impl<'a> Debug for Ia5String<'a>
impl<'a> Debug for InputPair<'a>
impl<'a> Debug for InputReference<'a>
impl<'a> Debug for Integer<'a>
impl<'a> Debug for IssuerAlternativeName<'a>
impl<'a> Debug for Iter<'a>
impl<'a> Debug for KeyIdentifier<'a>
impl<'a> Debug for Log<'a>
impl<'a> Debug for NameConstraints<'a>
impl<'a> Debug for Notified<'a>
impl<'a> Debug for NumericString<'a>
impl<'a> Debug for ObjectDescriptor<'a>
impl<'a> Debug for OctetString<'a>
impl<'a> Debug for Oid<'a>
impl<'a> Debug for OidRegistry<'a>
impl<'a> Debug for ParsedCriAttribute<'a>
impl<'a> Debug for ParsedExtension<'a>
impl<'a> Debug for PdvIdentification<'a>
impl<'a> Debug for PercentDecode<'a>
impl<'a> Debug for PolicyInformation<'a>
impl<'a> Debug for PolicyMapping<'a>
impl<'a> Debug for PolicyMappings<'a>
impl<'a> Debug for PolicyQualifierInfo<'a>
impl<'a> Debug for PrettyBer<'a>
impl<'a> Debug for PrintableString<'a>
impl<'a> Debug for PublicKey<'a>
impl<'a> Debug for RSAPublicKey<'a>
impl<'a> Debug for ReadHalf<'a>
impl<'a> Debug for ReadHalf<'a>
impl<'a> Debug for RelativeDistinguishedName<'a>
impl<'a> Debug for RevokedCertificate<'a>
impl<'a> Debug for RsaAesOaepParams<'a>
impl<'a> Debug for RsaSsaPssParams<'a>
impl<'a> Debug for SemaphorePermit<'a>
impl<'a> Debug for Sequence<'a>
impl<'a> Debug for Set<'a>
impl<'a> Debug for SignatureAlgorithm<'a>
impl<'a> Debug for SignedCertificateTimestamp<'a>
impl<'a> Debug for SourceFd<'a>
impl<'a> Debug for SubjectAlternativeName<'a>
impl<'a> Debug for SubjectPublicKeyInfo<'a>
impl<'a> Debug for TbsCertList<'a>
impl<'a> Debug for TbsCertificate<'a>
impl<'a> Debug for TeletexString<'a>
impl<'a> Debug for UniqueIdentifier<'a>
impl<'a> Debug for UniversalString<'a>
impl<'a> Debug for Utf8String<'a>
impl<'a> Debug for VideotexString<'a>
impl<'a> Debug for VisibleString<'a>
impl<'a> Debug for WaitForCancellationFuture<'a>
impl<'a> Debug for WakerRef<'a>
impl<'a> Debug for WriteHalf<'a>
impl<'a> Debug for WriteHalf<'a>
impl<'a> Debug for X509Certificate<'a>
impl<'a> Debug for X509CertificationRequest<'a>
impl<'a> Debug for X509CertificationRequestInfo<'a>
impl<'a> Debug for X509CriAttribute<'a>
impl<'a> Debug for X509Extension<'a>
impl<'a> Debug for X509Name<'a>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b> Debug for MaskGenAlgorithm<'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, A> Debug for kvarn::prelude::compact_str::core::option::Iter<'a, A>where A: Debug + 'a,
impl<'a, A> Debug for kvarn::prelude::compact_str::core::option::IterMut<'a, A>where A: Debug + 'a,
impl<'a, A, B> Debug for ArcUnionBorrow<'a, A, B>where A: Debug + 'a, B: Debug + 'a,
impl<'a, C, T> Debug for Stream<'a, C, T>where C: Debug + 'a + ?Sized, T: Debug + 'a + Read + Write + ?Sized,
impl<'a, E, Ix> Debug for petgraph::adj::EdgeIndices<'a, E, Ix>where E: Debug, Ix: Debug + IndexType,
impl<'a, E, Ix> Debug for petgraph::adj::EdgeReference<'a, E, Ix>where E: Debug, Ix: Debug + IndexType,
impl<'a, E, Ix> Debug for petgraph::adj::EdgeReferences<'a, E, Ix>where E: Debug, Ix: IndexType,
impl<'a, E, Ix> Debug for petgraph::adj::Neighbors<'a, E, Ix>where E: Debug, Ix: Debug + IndexType,
impl<'a, E, Ix> Debug for OutgoingEdgeReferences<'a, E, Ix>where E: Debug, Ix: Debug + IndexType,
impl<'a, E, Ix> Debug for petgraph::graph_impl::stable_graph::EdgeIndices<'a, E, Ix>where E: Debug + 'a, Ix: Debug + 'a,
impl<'a, E, Ix> Debug for petgraph::graph_impl::stable_graph::EdgeReference<'a, E, Ix>where E: Debug + 'a, Ix: Debug,
impl<'a, E, Ix> Debug for petgraph::graph_impl::stable_graph::EdgeReferences<'a, E, Ix>where E: Debug + 'a, Ix: Debug + 'a,
impl<'a, E, Ix> Debug for petgraph::graph_impl::stable_graph::Neighbors<'a, E, Ix>where E: Debug + 'a, Ix: Debug + 'a,
impl<'a, E, Ix> Debug for petgraph::graph_impl::EdgeReference<'a, E, Ix>where E: Debug + 'a, Ix: Debug,
impl<'a, E, Ix> Debug for petgraph::graph_impl::EdgeReferences<'a, E, Ix>where E: Debug + 'a, Ix: Debug + IndexType,
impl<'a, E, Ix> Debug for EdgeWeightsMut<'a, E, Ix>where E: Debug + 'a, Ix: Debug + IndexType,
impl<'a, E, Ix> Debug for petgraph::graph_impl::Neighbors<'a, E, Ix>where E: Debug + 'a, Ix: Debug + 'a,
impl<'a, E, Ty, Ix> Debug for petgraph::csr::EdgeReference<'a, E, Ty, Ix>where E: Debug + 'a, Ty: Debug, Ix: Debug + 'a,
impl<'a, E, Ty, Ix> Debug for petgraph::csr::EdgeReferences<'a, E, Ty, Ix>where E: Debug + 'a, Ty: Debug, Ix: Debug + 'a,
impl<'a, E, Ty, Ix> Debug for petgraph::csr::Edges<'a, E, Ty, Ix>where E: Debug + 'a, Ty: Debug, Ix: Debug + 'a,
impl<'a, E, Ty, Ix> Debug for petgraph::graph_impl::stable_graph::Edges<'a, E, Ty, Ix>where E: Debug + 'a, Ty: Debug + EdgeType, Ix: Debug + 'a + IndexType,
impl<'a, E, Ty, Ix> Debug for petgraph::graph_impl::stable_graph::EdgesConnecting<'a, E, Ty, Ix>where E: Debug + 'a, Ty: Debug + EdgeType, Ix: Debug + 'a + IndexType,
impl<'a, E, Ty, Ix> Debug for petgraph::graph_impl::Edges<'a, E, Ty, Ix>where E: Debug + 'a, Ty: Debug + EdgeType, Ix: Debug + 'a + IndexType,
impl<'a, E, Ty, Ix> Debug for petgraph::graph_impl::EdgesConnecting<'a, E, Ty, Ix>where E: Debug + 'a, Ty: Debug + EdgeType, Ix: Debug + 'a + IndexType,
impl<'a, Fut> Debug for Iter<'a, Fut>where Fut: Debug + Unpin,
impl<'a, Fut> Debug for IterMut<'a, Fut>where Fut: Debug + Unpin,
impl<'a, Fut> Debug for IterPinMut<'a, Fut>where Fut: Debug,
impl<'a, Fut> Debug for IterPinRef<'a, Fut>where Fut: Debug,
impl<'a, G> Debug for Dot<'a, G>where G: IntoEdgeReferences + IntoNodeReferences + NodeIndexable + GraphProp, <G as Data>::EdgeWeight: Debug, <G as Data>::NodeWeight: Debug,
impl<'a, G, F> Debug for EdgeFilteredNeighbors<'a, G, F>where G: Debug + IntoEdges, F: Debug + 'a, <G as IntoEdges>::Edges: Debug,
impl<'a, G, F> Debug for EdgeFilteredNeighborsDirected<'a, G, F>where G: Debug + IntoEdgesDirected, F: Debug + 'a, <G as IntoEdgesDirected>::EdgesDirected: Debug, <G as GraphBase>::NodeId: Debug,
impl<'a, G, I, F> Debug for EdgeFilteredEdges<'a, G, I, F>where G: Debug, I: Debug, F: Debug + 'a,
impl<'a, G, I, F> Debug for NodeFilteredEdgeReferences<'a, G, I, F>where G: Debug, I: Debug, F: Debug + 'a,
impl<'a, G, I, F> Debug for NodeFilteredEdges<'a, G, I, F>where G: Debug, I: Debug, F: Debug + 'a,
impl<'a, I> Debug for ByRefSized<'a, I>where I: Debug,
impl<'a, I, A> Debug for Splice<'a, I, A>where I: Debug + Iterator + 'a, A: Debug + Allocator + 'a, <I as Iterator>::Item: Debug,
impl<'a, I, F> Debug for NodeFilteredNeighbors<'a, I, F>where I: Debug, F: Debug + 'a,
impl<'a, I, F> Debug for NodeFilteredNodes<'a, I, F>where I: Debug, F: Debug + 'a,
impl<'a, Ix> Debug for petgraph::csr::Neighbors<'a, Ix>where Ix: Debug + 'a,
impl<'a, Ix> Debug for petgraph::matrix_graph::NodeIdentifiers<'a, Ix>where Ix: Debug,
impl<'a, K, F> Debug for std::collections::hash::set::DrainFilter<'a, K, F>where F: FnMut(&K) -> bool,
impl<'a, K, V, F> Debug for std::collections::hash::map::DrainFilter<'a, K, V, F>where F: FnMut(&K, &mut V) -> bool,
impl<'a, K, V, S> Debug for Ref<'a, K, V, S>where K: Eq + Hash + Debug, V: Debug, S: BuildHasher,
impl<'a, K, V, S> Debug for RefMut<'a, K, V, S>where K: Eq + Hash + Debug, V: Debug, S: BuildHasher,
impl<'a, K, V, T, S> Debug for MappedRef<'a, K, V, T, S>where K: Eq + Hash + Debug, T: Debug, S: BuildHasher,
impl<'a, K, V, T, S> Debug for MappedRefMut<'a, K, V, T, S>where K: Eq + Hash + Debug, T: Debug, S: BuildHasher,
impl<'a, L> Debug for Okm<'a, L>where L: Debug + KeyType,
impl<'a, N> Debug for DominatedByIter<'a, N>where N: Debug + 'a + Copy + Eq + Hash,
impl<'a, N> Debug for DominatorsIter<'a, N>where N: Debug + 'a + Copy + Eq + Hash,
impl<'a, N> Debug for Nodes<'a, N>where N: Debug + 'a + NodeTrait,
impl<'a, N, E, Ty> Debug for AllEdges<'a, N, E, Ty>where N: Debug + 'a + NodeTrait, E: Debug + 'a, Ty: Debug,
impl<'a, N, E, Ty> Debug for petgraph::graphmap::Edges<'a, N, E, Ty>where N: Debug + 'a + NodeTrait, E: Debug + 'a, Ty: Debug + EdgeType,
impl<'a, N, E, Ty> Debug for EdgesDirected<'a, N, E, Ty>where N: Debug + 'a + NodeTrait, E: Debug + 'a, Ty: Debug + EdgeType,
impl<'a, N, E, Ty> Debug for petgraph::graphmap::NodeIdentifiers<'a, N, E, Ty>where N: Debug + 'a + NodeTrait, E: Debug + 'a, Ty: Debug,
impl<'a, N, E, Ty> Debug for petgraph::graphmap::NodeReferences<'a, N, E, Ty>where N: Debug + 'a + NodeTrait, E: Debug + 'a, Ty: Debug,
impl<'a, N, Ix> Debug for petgraph::csr::NodeReferences<'a, N, Ix>where N: Debug + 'a, Ix: Debug + IndexType,
impl<'a, N, Ix> Debug for petgraph::graph_impl::stable_graph::NodeIndices<'a, N, Ix>where N: Debug + 'a, Ix: Debug + 'a,
impl<'a, N, Ix> Debug for petgraph::graph_impl::stable_graph::NodeReferences<'a, N, Ix>where N: Debug + 'a, Ix: Debug + IndexType,
impl<'a, N, Ix> Debug for petgraph::graph_impl::NodeReferences<'a, N, Ix>where N: Debug + 'a, Ix: Debug + IndexType,
impl<'a, N, Ix> Debug for NodeWeightsMut<'a, N, Ix>where N: Debug + 'a, Ix: Debug + IndexType,
impl<'a, N, Ix> Debug for petgraph::matrix_graph::NodeReferences<'a, N, Ix>where N: Debug + 'a, Ix: Debug,
impl<'a, N, Ty> Debug for petgraph::graphmap::Neighbors<'a, N, Ty>where N: Debug + 'a, Ty: Debug + EdgeType,
impl<'a, N, Ty> Debug for NeighborsDirected<'a, N, Ty>where N: Debug + 'a, Ty: Debug + EdgeType,
impl<'a, N, Ty, Ix> Debug for petgraph::graph_impl::stable_graph::Externals<'a, N, Ty, Ix>where N: Debug + 'a, Ty: Debug, Ix: Debug + IndexType,
impl<'a, N, Ty, Ix> Debug for petgraph::graph_impl::Externals<'a, N, Ty, Ix>where N: Debug + 'a, Ty: Debug, Ix: Debug + IndexType,
impl<'a, P> Debug for MatchIndices<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for Matches<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for RMatchIndices<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for RMatches<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for kvarn::prelude::str::RSplit<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for kvarn::prelude::str::RSplitN<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for RSplitTerminator<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for kvarn::prelude::str::Split<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for kvarn::prelude::str::SplitInclusive<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for kvarn::prelude::str::SplitN<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for SplitTerminator<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, R> Debug for FillBuf<'a, R>where R: Debug + ?Sized,
impl<'a, R> Debug for Read<'a, R>where R: Debug + ?Sized,
impl<'a, R> Debug for ReadExact<'a, R>where R: Debug + ?Sized,
impl<'a, R> Debug for ReadLine<'a, R>where R: Debug + ?Sized,
impl<'a, R> Debug for ReadToEnd<'a, R>where R: Debug + ?Sized,
impl<'a, R> Debug for ReadToString<'a, R>where R: Debug + ?Sized,
impl<'a, R> Debug for ReadUntil<'a, R>where R: Debug + ?Sized,
impl<'a, R> Debug for ReadVectored<'a, R>where R: Debug + ?Sized,
impl<'a, R> Debug for SeeKRelative<'a, R>where R: Debug,
impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T>where R: RawMutex + 'a, G: GetThreadId + 'a, T: Debug + 'a + ?Sized,
impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T>where R: RawMutex + 'a, G: GetThreadId + 'a, T: Debug + 'a + ?Sized,
impl<'a, R, T> Debug for MappedMutexGuard<'a, R, T>where R: RawMutex + 'a, T: Debug + 'a + ?Sized,
impl<'a, R, T> Debug for MappedRwLockReadGuard<'a, R, T>where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,
impl<'a, R, T> Debug for MappedRwLockWriteGuard<'a, R, T>where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,
impl<'a, R, T> Debug for MutexGuard<'a, R, T>where R: RawMutex + 'a, T: Debug + 'a + ?Sized,
impl<'a, R, T> Debug for RwLockReadGuard<'a, R, T>where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>where R: RawRwLockUpgrade + 'a, T: Debug + 'a + ?Sized,
impl<'a, R, T> Debug for RwLockWriteGuard<'a, R, T>where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,
impl<'a, R, W> Debug for Copy<'a, R, W>where R: Debug, W: Debug + ?Sized,
impl<'a, R, W> Debug for CopyBuf<'a, R, W>where R: Debug, W: Debug + ?Sized,
impl<'a, R, W> Debug for CopyBufAbortable<'a, R, W>where R: Debug, W: Debug + ?Sized,
impl<'a, S> Debug for Seek<'a, S>where S: Debug + ?Sized,
impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>where S: Debug + 'a + ?Sized, T: Debug + 'a,
impl<'a, Si, Item> Debug for Close<'a, Si, Item>where Si: Debug + ?Sized, Item: Debug,
impl<'a, Si, Item> Debug for Feed<'a, Si, Item>where Si: Debug + ?Sized, Item: Debug,
impl<'a, Si, Item> Debug for Flush<'a, Si, Item>where Si: Debug + ?Sized, Item: Debug,
impl<'a, Si, Item> Debug for Send<'a, Si, Item>where Si: Debug + ?Sized, Item: Debug,
impl<'a, St> Debug for Iter<'a, St>where St: Debug + Unpin,
impl<'a, St> Debug for IterMut<'a, St>where St: Debug + Unpin,
impl<'a, St> Debug for Next<'a, St>where St: Debug + ?Sized,
impl<'a, St> Debug for SelectNextSome<'a, St>where St: Debug + ?Sized,
impl<'a, St> Debug for TryNext<'a, St>where St: Debug + ?Sized,
impl<'a, T> Debug for kvarn::prelude::header::Entry<'a, T>where T: Debug + 'a,
impl<'a, T> Debug for kvarn::prelude::compact_str::core::result::Iter<'a, T>where T: Debug + 'a,
impl<'a, T> Debug for kvarn::prelude::compact_str::core::result::IterMut<'a, T>where T: Debug + 'a,
impl<'a, T> Debug for kvarn::prelude::compact_str::core::slice::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 kvarn::prelude::header::Drain<'a, T>where T: Debug,
impl<'a, T> Debug for GetAll<'a, T>where T: Debug,
impl<'a, T> Debug for kvarn::prelude::header::Iter<'a, T>where T: Debug,
impl<'a, T> Debug for kvarn::prelude::header::IterMut<'a, T>where T: Debug,
impl<'a, T> Debug for kvarn::prelude::header::Keys<'a, T>where T: Debug,
impl<'a, T> Debug for kvarn::prelude::header::OccupiedEntry<'a, T>where T: Debug,
impl<'a, T> Debug for kvarn::prelude::header::VacantEntry<'a, T>where T: Debug,
impl<'a, T> Debug for ValueDrain<'a, T>where T: Debug,
impl<'a, T> Debug for ValueIter<'a, T>where T: Debug,
impl<'a, T> Debug for ValueIterMut<'a, T>where T: Debug,
impl<'a, T> Debug for kvarn::prelude::header::Values<'a, T>where T: Debug,
impl<'a, T> Debug for kvarn::prelude::header::ValuesMut<'a, T>where T: Debug,
impl<'a, T> Debug for CleanDebug<'a, T>where T: Display + ?Sized,
impl<'a, T> Debug for alloc::collections::binary_heap::Drain<'a, T>where T: Debug + 'a,
impl<'a, T> Debug for DrainSorted<'a, T>where T: Debug + Ord,
impl<'a, T> Debug for alloc::collections::btree::set::Range<'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 Slice<'a, T>where T: Debug,
impl<'a, T> Debug for ArcBorrow<'a, T>where T: Debug + 'a + ?Sized,
impl<'a, T> Debug for AsyncFdReadyGuard<'a, T>where T: Debug + AsRawFd,
impl<'a, T> Debug for AsyncFdReadyMutGuard<'a, T>where T: Debug + AsRawFd,
impl<'a, T> Debug for CallocBackingStore<'a, T>where T: Debug + 'a,
impl<'a, T> Debug for Cancellation<'a, T>where T: Debug,
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>where T: Debug + ?Sized,
impl<'a, T> Debug for MutexGuard<'a, T>where T: Debug + 'a + ?Sized,
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for Ref<'a, T>where T: Debug,
impl<'a, T> Debug for RwLockMappedWriteGuard<'a, T>where T: Debug + ?Sized,
impl<'a, T> Debug for RwLockReadGuard<'a, T>where T: Debug + 'a + ?Sized,
impl<'a, T> Debug for RwLockReadGuard<'a, T>where T: Debug + ?Sized,
impl<'a, T> Debug for RwLockUpgradeableGuard<'a, T>where T: Debug + 'a + ?Sized,
impl<'a, T> Debug for RwLockWriteGuard<'a, T>where T: Debug + 'a + ?Sized,
impl<'a, T> Debug for RwLockWriteGuard<'a, T>where T: Debug + ?Sized,
impl<'a, T> Debug for VacantEntry<'a, T>where T: Debug,
impl<'a, T, F, A> Debug for alloc::vec::drain_filter::DrainFilter<'a, T, F, A>where T: Debug, F: Debug + FnMut(&mut T) -> bool, A: Debug + Allocator,
impl<'a, T, F, E> Debug for SequenceIterator<'a, T, F, E>where T: Debug, F: Debug + ASN1Parser, E: Debug,
impl<'a, T, P> Debug for GroupBy<'a, T, P>where T: 'a + Debug,
impl<'a, T, P> Debug for GroupByMut<'a, T, P>where T: 'a + Debug,
impl<'a, T, const N: usize> Debug for kvarn::prelude::compact_str::core::slice::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, TagKind, T, E> Debug for TaggedParser<'a, TagKind, T, E>where TagKind: Debug, T: Debug, E: Debug,
impl<'a, Ty, Null, Ix> Debug for petgraph::matrix_graph::EdgeReferences<'a, Ty, Null, Ix>where Ty: Debug + EdgeType, Null: Debug + 'a + Nullable, Ix: Debug,
impl<'a, Ty, Null, Ix> Debug for petgraph::matrix_graph::Edges<'a, Ty, Null, Ix>where Ty: Debug + EdgeType, Null: Debug + 'a + Nullable, Ix: Debug,
impl<'a, Ty, Null, Ix> Debug for petgraph::matrix_graph::Neighbors<'a, Ty, Null, Ix>where Ty: Debug + EdgeType, Null: Debug + 'a + Nullable, Ix: Debug,
impl<'a, W> Debug for Close<'a, W>where W: Debug + ?Sized,
impl<'a, W> Debug for Flush<'a, W>where W: Debug + ?Sized,
impl<'a, W> Debug for Write<'a, W>where W: Debug + ?Sized,
impl<'a, W> Debug for WriteAll<'a, W>where W: Debug + ?Sized,
impl<'a, W> Debug for WriteVectored<'a, W>where W: Debug + ?Sized,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'b, T> Debug for Ptr<'b, T>where T: Debug,
impl<'buf> Debug for RecvMsgOut<'buf>
impl<'e, E, R> Debug for DecoderReader<'e, E, R>where E: Engine, R: Read,
impl<'e, E, W> Debug for EncoderWriter<'e, E, W>where E: Engine, W: Write,
impl<'f> Debug for VaListImpl<'f>
impl<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'n> Debug for Finder<'n>
impl<'n> Debug for FinderRev<'n>
impl<'prev, 'now> Debug for SubmitArgs<'prev, 'now>where 'prev: 'now,
impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env>
impl<'scope, T> Debug for std::thread::scoped::ScopedJoinHandle<'scope, T>
impl<'t> Debug for CloseFrame<'t>
impl<A> Debug for kvarn::prelude::compact_str::core::iter::Repeat<A>where A: Debug,
impl<A> Debug for kvarn::prelude::compact_str::core::option::IntoIter<A>where A: Debug,
impl<A> Debug for ExtendedGcd<A>where A: Debug,
impl<A> Debug for IntoIter<A>where A: Array, <A as Array>::Item: Debug,
impl<A> Debug for SmallVec<A>where A: Array, <A as Array>::Item: Debug,
impl<A, B> Debug for kvarn::prelude::compact_str::core::iter::Chain<A, B>where A: Debug, B: Debug,
impl<A, B> Debug for kvarn::prelude::compact_str::core::iter::Zip<A, B>where A: Debug, B: Debug,
impl<A, B> Debug for ArcUnion<A, B>where A: Debug, B: Debug,
impl<A, B> Debug for Either<A, B>where A: Debug, B: Debug,
impl<A, B> Debug for Select<A, B>where A: Debug, B: Debug,
impl<A, B> Debug for TrySelect<A, B>where A: Debug, B: Debug,
impl<B> Debug for Cow<'_, B>where B: Debug + ToOwned + ?Sized, <B as ToOwned>::Owned: Debug,
impl<B> Debug for petgraph::visit::dfsvisit::Control<B>where B: Debug,
impl<B> Debug for kvarn::prelude::bytes::buf::Reader<B>where B: Debug,
impl<B> Debug for Writer<B>where B: Debug,
impl<B> Debug for kvarn::prelude::io::Lines<B>where B: Debug,
impl<B> Debug for kvarn::prelude::io::Split<B>where B: Debug,
impl<B> Debug for UnparsedPublicKey<B>where B: Debug + AsRef<[u8]>,
impl<B> Debug for RsaPublicKeyComponents<B>where B: Debug + AsRef<[u8]>,
impl<B> Debug for ReadySendRequest<B>where B: Debug + Buf,
impl<B> Debug for SendRequest<B>where B: Buf,
impl<B> Debug for SendPushedResponse<B>where B: Buf + Debug,
impl<B> Debug for SendResponse<B>where B: Debug + Buf,
impl<B> Debug for SendStream<B>where B: Debug,
impl<B, C> Debug for ControlFlow<B, C>where B: Debug, C: Debug,
impl<BlockSize, Kind> Debug for BlockBuffer<BlockSize, Kind>where BlockSize: Debug + ArrayLength<u8> + IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>, Kind: Debug + BufferKind, <BlockSize as IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>>::Output: NonZero,
impl<C, T> Debug for StreamOwned<C, T>where C: Debug, T: Debug + Read + Write,
impl<D, F, T, S> Debug for DistMap<D, F, T, S>where D: Debug, F: Debug, T: Debug, S: Debug,
impl<D, R, T> Debug for DistIter<D, R, T>where D: Debug, R: Debug, T: Debug,
impl<Dyn> Debug for DynMetadata<Dyn>where Dyn: ?Sized,
impl<E> Debug for Report<E>where Report<E>: Display,
impl<E> Debug for Err<E>where E: Debug,
impl<E> Debug for SubmissionQueue<'_, E>where E: EntryMarker,
impl<E, Ix> Debug for List<E, Ix>where E: Debug, Ix: IndexType,
impl<E, Ix> Debug for Edge<E, Ix>where E: Debug, Ix: Debug,
impl<F> Debug for kvarn::prelude::compact_str::core::future::PollFn<F>
impl<F> Debug for FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for kvarn::prelude::compact_str::core::iter::RepeatWith<F>
impl<F> Debug for CharPredicateSearcher<'_, F>where F: FnMut(char) -> bool,
impl<F> Debug for Flatten<F>where Flatten<F, <F as Future>::Output>: Debug, F: Future,
impl<F> Debug for FlattenStream<F>where Flatten<F, <F as Future>::Output>: Debug, F: Future,
impl<F> Debug for IntoStream<F>where Once<F>: Debug,
impl<F> Debug for JoinAll<F>where F: Future + Debug, <F as Future>::Output: Debug,
impl<F> Debug for Lazy<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 RepeatWith<F>where F: Debug,
impl<F> Debug for TryJoinAll<F>where F: TryFuture + Debug, <F as TryFuture>::Ok: Debug, <F as TryFuture>::Error: Debug, <F as Future>::Output: Debug,
impl<Fut1, Fut2> Debug for Join<Fut1, Fut2>where Fut1: Future + Debug, <Fut1 as Future>::Output: Debug, Fut2: Future + Debug, <Fut2 as Future>::Output: Debug,
impl<Fut1, Fut2> Debug for TryFlatten<Fut1, Fut2>where TryFlatten<Fut1, Fut2>: Debug,
impl<Fut1, Fut2> Debug for TryJoin<Fut1, Fut2>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,
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>where Fut1: Future + Debug, <Fut1 as Future>::Output: Debug, Fut2: Future + Debug, <Fut2 as Future>::Output: Debug, Fut3: Future + Debug, <Fut3 as Future>::Output: Debug,
impl<Fut1, Fut2, Fut3> Debug for TryJoin3<Fut1, Fut2, Fut3>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,
impl<Fut1, Fut2, Fut3, Fut4> Debug for Join4<Fut1, Fut2, Fut3, Fut4>where Fut1: Future + Debug, <Fut1 as Future>::Output: Debug, Fut2: Future + Debug, <Fut2 as Future>::Output: Debug, Fut3: Future + Debug, <Fut3 as Future>::Output: Debug, Fut4: Future + Debug, <Fut4 as Future>::Output: Debug,
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>where Fut1: Future + Debug, <Fut1 as Future>::Output: Debug, Fut2: Future + Debug, <Fut2 as Future>::Output: Debug, Fut3: Future + Debug, <Fut3 as Future>::Output: Debug, Fut4: Future + Debug, <Fut4 as Future>::Output: Debug, Fut5: Future + Debug, <Fut5 as Future>::Output: Debug,
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 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>where Fut: Debug + Unpin,
impl<Fut> Debug for MaybeDone<Fut>where Fut: Debug + Future, <Fut as Future>::Output: Debug,
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>where Fut: Future + Debug,
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>where Fut: Debug + TryFuture, <Fut as TryFuture>::Ok: Debug,
impl<Fut> Debug for UnitError<Fut>where Map<Fut, OkFn<()>>: Debug,
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 MinSpanningTree<G>where G: Debug + Data + IntoNodeReferences, <G as IntoNodeReferences>::NodeReferences: Debug, <G as Data>::EdgeWeight: Debug, <G as GraphBase>::NodeId: Debug,
impl<G> Debug for Reversed<G>where G: Debug,
impl<G, F> Debug for EdgeFiltered<G, F>where G: Debug, F: Debug,
impl<G, F> Debug for NodeFiltered<G, F>where G: Debug, F: Debug,
impl<H> Debug for BuildHasherDefault<H>
impl<H> Debug for HeaderWithLength<H>where H: Debug,
impl<H, T> Debug for HeaderSlice<H, T>where H: Debug, T: Debug + ?Sized,
impl<H, T> Debug for ThinArc<H, T>where H: Debug, T: Debug,
impl<I> Debug for FromIter<I>where I: Debug,
impl<I> Debug for DecodeUtf16<I>where I: Debug + Iterator<Item = u16>,
impl<I> Debug for Cloned<I>where I: Debug,
impl<I> Debug for Copied<I>where I: Debug,
impl<I> Debug for kvarn::prelude::compact_str::core::iter::Cycle<I>where I: Debug,
impl<I> Debug for kvarn::prelude::compact_str::core::iter::Enumerate<I>where I: Debug,
impl<I> Debug for kvarn::prelude::compact_str::core::iter::Fuse<I>where I: Debug,
impl<I> Debug for Intersperse<I>where I: Debug + Iterator, <I as Iterator>::Item: Clone + Debug,
impl<I> Debug for kvarn::prelude::compact_str::core::iter::Peekable<I>where I: Debug + Iterator, <I as Iterator>::Item: Debug,
impl<I> Debug for kvarn::prelude::compact_str::core::iter::Skip<I>where I: Debug,
impl<I> Debug for StepBy<I>where I: Debug,
impl<I> Debug for kvarn::prelude::compact_str::core::iter::Take<I>where I: Debug,
impl<I> Debug for ReversedEdgeReferences<I>where I: Debug,
impl<I> Debug for ReversedEdges<I>where I: Debug,
impl<I> Debug for Error<I>where I: Debug,
impl<I> Debug for Iter<I>where I: Debug,
impl<I> Debug for VerboseError<I>where I: Debug,
impl<I, F> Debug for kvarn::prelude::compact_str::core::iter::FilterMap<I, F>where I: Debug,
impl<I, F> Debug for kvarn::prelude::compact_str::core::iter::Inspect<I, F>where I: Debug,
impl<I, F> Debug for kvarn::prelude::compact_str::core::iter::Map<I, F>where I: Debug,
impl<I, F> Debug for FilterElements<I, F>where I: Debug, F: Debug,
impl<I, G> Debug for IntersperseWith<I, G>where I: Iterator + Debug, <I as Iterator>::Item: Debug, G: Debug,
impl<I, P> Debug for kvarn::prelude::compact_str::core::iter::Filter<I, P>where I: Debug,
impl<I, P> Debug for MapWhile<I, P>where I: Debug,
impl<I, P> Debug for kvarn::prelude::compact_str::core::iter::SkipWhile<I, P>where I: Debug,
impl<I, P> Debug for kvarn::prelude::compact_str::core::iter::TakeWhile<I, P>where I: Debug,
impl<I, P> Debug for FilterEntry<I, P>where I: Debug, P: Debug,
impl<I, St, F> Debug for kvarn::prelude::compact_str::core::iter::Scan<I, St, F>where I: Debug, St: Debug,
impl<I, U> Debug for kvarn::prelude::compact_str::core::iter::Flatten<I>where I: Debug + Iterator, <I as Iterator>::Item: IntoIterator<IntoIter = U, Item = <U as Iterator>::Item>, U: Debug + Iterator,
impl<I, U, F> Debug for kvarn::prelude::compact_str::core::iter::FlatMap<I, U, F>where I: Debug, U: IntoIterator, <U as IntoIterator>::IntoIter: Debug,
impl<I, const N: usize> Debug for kvarn::prelude::compact_str::core::iter::ArrayChunks<I, N>where I: Debug + Iterator, <I as Iterator>::Item: Debug,
impl<Idx> Debug for kvarn::prelude::compact_str::core::ops::Range<Idx>where Idx: Debug,
impl<Idx> Debug for RangeFrom<Idx>where Idx: Debug,
impl<Idx> Debug for RangeInclusive<Idx>where Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where Idx: Debug,
impl<Idx> Debug for RangeToInclusive<Idx>where Idx: Debug,
impl<Ix> Debug for petgraph::adj::EdgeIndex<Ix>where Ix: Debug + IndexType,
impl<Ix> Debug for petgraph::adj::NodeIndices<Ix>where Ix: Debug,
impl<Ix> Debug for OutgoingEdgeIndices<Ix>where Ix: Debug + IndexType,
impl<Ix> Debug for petgraph::csr::NodeIdentifiers<Ix>where Ix: Debug,
impl<Ix> Debug for petgraph::graph_impl::EdgeIndex<Ix>where Ix: Debug,
impl<Ix> Debug for petgraph::graph_impl::EdgeIndices<Ix>where Ix: Debug,
impl<Ix> Debug for NodeIndex<Ix>where Ix: Debug,
impl<Ix> Debug for petgraph::graph_impl::NodeIndices<Ix>where Ix: 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 UnionFind<K>where K: Debug,
impl<K> Debug for Iter<'_, K>where K: Debug,
impl<K, A> Debug for Drain<'_, K, A>where K: Debug, A: Allocator + Clone,
impl<K, A> Debug for IntoIter<K, A>where K: Debug, A: Allocator + Clone,
impl<K, Q, V, S, A> Debug for EntryRef<'_, '_, K, Q, V, S, A>where K: Borrow<Q>, Q: Debug + ?Sized, V: Debug, A: Allocator + Clone,
impl<K, Q, V, S, A> Debug for OccupiedEntryRef<'_, '_, K, Q, V, S, A>where K: Borrow<Q>, Q: Debug + ?Sized, V: Debug, A: Allocator + Clone,
impl<K, Q, V, S, A> Debug for VacantEntryRef<'_, '_, K, Q, V, S, A>where K: Borrow<Q>, Q: Debug + ?Sized, A: Allocator + Clone,
impl<K, S> Debug for DashSet<K, S>where K: Eq + Hash + Debug, S: BuildHasher + Clone,
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for indexmap::map::core::Entry<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for RangeMut<'_, K, V>where K: Debug, V: Debug,
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>where K: Debug, V: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>where K: Debug, V: Debug,
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>where K: Debug, V: Debug,
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>where K: Debug, V: Debug,
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>where K: Debug, V: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>where K: Debug, V: Debug,
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 indexmap::map::core::raw::OccupiedEntry<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for indexmap::map::core::VacantEntry<'_, K, V>where K: Debug,
impl<K, V> Debug for indexmap::map::Drain<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for indexmap::map::IntoIter<K, V>where K: Debug, V: Debug,
impl<K, V> Debug for indexmap::map::IntoKeys<K, V>where K: Debug,
impl<K, V> Debug for indexmap::map::IntoValues<K, V>where V: Debug,
impl<K, V> Debug for indexmap::map::Iter<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for indexmap::map::IterMut<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for indexmap::map::Keys<'_, K, V>where K: Debug,
impl<K, V> Debug for indexmap::map::Values<'_, K, V>where V: Debug,
impl<K, V> Debug for indexmap::map::ValuesMut<'_, K, V>where V: Debug,
impl<K, V> Debug for Entry<K, V>where K: Debug, V: Debug,
impl<K, V> Debug for Iter<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for IterMut<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for Keys<'_, K, V>where K: 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, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>where K: Debug + Ord, V: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>where K: Debug + Ord, V: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>where K: Debug + Ord, V: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>where K: Debug + Ord, A: Allocator + Clone,
impl<K, V, A> Debug for BTreeMap<K, V, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>where K: Debug, V: Debug,
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>where K: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>where V: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for Drain<'_, K, V, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for IntoIter<K, V, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for IntoKeys<K, V, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for IntoValues<K, V, A>where V: Debug, A: Allocator + Clone,
impl<K, V, F> Debug for alloc::collections::btree::map::DrainFilter<'_, K, V, F, Global>where K: Debug, V: Debug, F: FnMut(&K, &mut V) -> bool,
impl<K, V, S> Debug for std::collections::hash::map::RawEntryMut<'_, K, V, S>where K: Debug, V: Debug,
impl<K, V, S> Debug for kvarn::prelude::HashMap<K, V, S>where K: Debug, V: Debug,
impl<K, V, S> Debug for std::collections::hash::map::RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawOccupiedEntryMut<'_, K, V, S>where K: Debug, V: Debug,
impl<K, V, S> Debug for std::collections::hash::map::RawVacantEntryMut<'_, K, V, S>
impl<K, V, S> Debug for IndexMap<K, V, S>where K: Debug, V: Debug,
impl<K, V, S> Debug for Cache<K, V, S>where K: Debug + Eq + Hash + Send + Sync + 'static, V: Debug + Clone + Send + Sync + 'static, S: BuildHasher + Clone + Send + Sync + 'static,
impl<K, V, S> Debug for DashMap<K, V, S>where K: Eq + Hash + Debug, V: Debug, S: BuildHasher + Clone,
impl<K, V, S> Debug for ReadOnlyView<K, V, S>where K: Eq + Hash + Debug, V: Debug, S: BuildHasher + Clone,
impl<K, V, S> Debug for SegmentedCache<K, V, S>where K: Debug + Eq + Hash + Send + Sync + 'static, V: Debug + Clone + Send + Sync + 'static, S: BuildHasher + Clone + Send + Sync + 'static,
impl<K, V, S, A> Debug for Entry<'_, K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for HashMap<K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for OccupiedEntry<'_, K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for OccupiedError<'_, K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for RawEntryBuilder<'_, K, V, S, A>where A: Allocator + Clone,
impl<K, V, S, A> Debug for RawEntryBuilderMut<'_, K, V, S, A>where A: Allocator + Clone,
impl<K, V, S, A> Debug for RawEntryMut<'_, K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for RawOccupiedEntryMut<'_, K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for RawVacantEntryMut<'_, K, V, S, A>where A: Allocator + Clone,
impl<K, V, S, A> Debug for VacantEntry<'_, K, V, S, A>where K: Debug, A: Allocator + Clone,
impl<K: Debug + Hash + Eq + Send + Sync + 'static, V: Debug + Clone + Send + Sync + 'static> Debug for MokaCache<K, V>
impl<L, R> Debug for Either<L, R>where L: Debug, R: Debug,
impl<N> Debug for DfsEvent<N>where N: Debug,
impl<N> Debug for OpeningKey<N>where N: NonceSequence,
impl<N> Debug for SealingKey<N>where N: NonceSequence,
impl<N> Debug for Dominators<N>where N: Debug + Copy + Eq + Hash,
impl<N> Debug for petgraph::algo::Cycle<N>where N: Debug,
impl<N> Debug for TarjanScc<N>where N: Debug,
impl<N, E> Debug for Element<N, E>where N: Debug, E: Debug,
impl<N, E, Ty> Debug for GraphMap<N, E, Ty>where N: Eq + Hash + Debug, E: Debug, Ty: EdgeType,
impl<N, E, Ty, Ix> Debug for Csr<N, E, Ty, Ix>where N: Debug, E: Debug, Ty: Debug, Ix: Debug,
impl<N, E, Ty, Ix> Debug for StableGraph<N, E, Ty, Ix>where N: Debug, E: Debug, Ty: EdgeType, Ix: IndexType,
impl<N, E, Ty, Ix> Debug for Graph<N, E, Ty, Ix>where N: Debug, E: Debug, Ty: EdgeType, Ix: IndexType,
impl<N, Ix> Debug for Node<N, Ix>where N: Debug, Ix: Debug,
impl<N, VM> Debug for DfsSpace<N, VM>where N: Debug, VM: Debug,
impl<N, VM> Debug for Dfs<N, VM>where N: Debug, VM: Debug,
impl<N, VM> Debug for DfsPostOrder<N, VM>where N: Debug, VM: Debug,
impl<NodeId, EdgeWeight> Debug for Paths<NodeId, EdgeWeight>where NodeId: Debug, EdgeWeight: Debug,
impl<P> Debug for Pin<P>where P: Debug,
impl<R> Debug for ReadToAsync<R>where R: Debug,
impl<R> Debug for kvarn::prelude::io::BufReader<R>where R: Debug,
impl<R> Debug for kvarn::prelude::io::Bytes<R>where R: Debug,
impl<R> Debug for CrcReader<R>where R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateDecoder<R>where R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateEncoder<R>where R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateDecoder<R>where R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateEncoder<R>where R: Debug,
impl<R> Debug for flate2::gz::bufread::GzDecoder<R>where R: Debug,
impl<R> Debug for flate2::gz::bufread::GzEncoder<R>where R: Debug,
impl<R> Debug for flate2::gz::bufread::MultiGzDecoder<R>where R: Debug,
impl<R> Debug for flate2::gz::read::GzDecoder<R>where R: Debug,
impl<R> Debug for flate2::gz::read::GzEncoder<R>where R: Debug,
impl<R> Debug for flate2::gz::read::MultiGzDecoder<R>where R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibDecoder<R>where R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibEncoder<R>where R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibDecoder<R>where R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibEncoder<R>where R: Debug,
impl<R> Debug for ReversedEdgeReference<R>where R: Debug,
impl<R> Debug for ReadRng<R>where R: Debug,
impl<R> Debug for BlockRng64<R>where R: BlockRngCore + Debug,
impl<R> Debug for BlockRng<R>where R: BlockRngCore + Debug,
impl<R> Debug for BufReader<R>where R: Debug,
impl<R> Debug for BufReader<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 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 TryResult<R>where R: Debug,
impl<R, G, T> Debug for ReentrantMutex<R, G, T>where R: RawMutex, G: GetThreadId, T: Debug + ?Sized,
impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>where R: Debug + BlockRngCore + SeedableRng, Rsdr: Debug + RngCore,
impl<R, T> Debug for Mutex<R, T>where R: RawMutex, T: Debug + ?Sized,
impl<R, T> Debug for RwLock<R, T>where R: RawRwLock, T: Debug + ?Sized,
impl<R: AsyncRead + Unpin + Debug> Debug for Http1Body<R>
impl<R: Debug> Debug for RuleSet<R>
impl<RW> Debug for BufStream<RW>where RW: Debug,
impl<Ret, T> Debug for fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C-unwind" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C-unwind" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C-unwind" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C-unwind" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<S> Debug for Ascii<S>where S: Debug,
impl<S> Debug for UniCase<S>where S: Debug,
impl<S> Debug for BlockingStream<S>where S: Debug + Stream + Unpin,
impl<S> Debug for Event<S>where S: Debug,
impl<S> Debug for MaybeTlsStream<S>where S: Read + Write + Debug,
impl<S> Debug for PollImmediate<S>where S: Debug,
impl<S> Debug for SplitStream<S>where S: Debug,
impl<S> Debug for WebSocketStream<S>where S: Debug,
impl<S, Item> Debug for SplitSink<S, Item>where S: Debug, Item: Debug,
impl<Si1, Si2> Debug for Fanout<Si1, Si2>where Si1: Debug, Si2: Debug,
impl<Si, F> Debug for SinkMapErr<Si, F>where Si: Debug, F: Debug,
impl<Si, Item> Debug for Buffer<Si, Item>where Si: Debug, Item: Debug,
impl<Si, Item, E> Debug for SinkErrInto<Si, Item, E>where Si: Debug + Sink<Item>, Item: Debug, E: Debug, <Si as Sink<Item>>::Error: Debug,
impl<Si, Item, U, Fut, F> Debug for With<Si, Item, U, Fut, F>where Si: Debug, Fut: Debug,
impl<Si, Item, U, St, F> Debug for WithFlatMap<Si, Item, U, St, F>where Si: Debug, St: Debug, Item: Debug,
impl<Si, St> Debug for SendAll<'_, Si, St>where Si: Debug + ?Sized, St: Debug + TryStream + ?Sized, <St as TryStream>::Ok: Debug,
impl<Side, State> Debug for ConfigBuilder<Side, State>where Side: ConfigSide, State: Debug,
impl<SliceType> Debug for Command<SliceType>where SliceType: Debug + SliceWrapper<u8>,
impl<SliceType> Debug for FeatureFlagSliceType<SliceType>where SliceType: Debug + SliceWrapper<u8>,
impl<SliceType> Debug for LiteralCommand<SliceType>where SliceType: Debug + SliceWrapper<u8>,
impl<SliceType> Debug for PredictionModeContextMap<SliceType>where SliceType: Debug + SliceWrapper<u8>,
impl<St1, St2> Debug for Chain<St1, St2>where St1: Debug, St2: Debug,
impl<St1, St2> Debug for Select<St1, St2>where St1: Debug, St2: Debug,
impl<St1, St2> Debug for Zip<St1, St2>where St1: Debug + Stream, St2: Debug + Stream, <St1 as Stream>::Item: Debug, <St2 as Stream>::Item: Debug,
impl<St1, St2, Clos, State> Debug for SelectWithStrategy<St1, St2, Clos, State>where St1: Debug, St2: Debug, State: Debug,
impl<St> Debug for BufferUnordered<St>where St: Stream + Debug,
impl<St> Debug for Buffered<St>where St: Stream + Debug, <St as Stream>::Item: Future,
impl<St> Debug for CatchUnwind<St>where St: Debug,
impl<St> Debug for Chunks<St>where St: Debug + Stream, <St as Stream>::Item: Debug,
impl<St> Debug for Concat<St>where St: Debug + Stream, <St as Stream>::Item: Debug,
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>where Flatten<St, <St as Stream>::Item>: Debug, St: Stream,
impl<St> Debug for Fuse<St>where St: Debug,
impl<St> Debug for IntoAsyncRead<St>where St: Debug + TryStream<Error = Error>, <St as TryStream>::Ok: AsRef<[u8]> + Debug,
impl<St> Debug for IntoIter<St>where St: Debug + Unpin,
impl<St> Debug for IntoStream<St>where St: Debug,
impl<St> Debug for Peek<'_, St>where St: Stream + Debug, <St as Stream>::Item: Debug,
impl<St> Debug for PeekMut<'_, St>where St: Stream + Debug, <St as Stream>::Item: Debug,
impl<St> Debug for Peekable<St>where St: Debug + Stream, <St as Stream>::Item: Debug,
impl<St> Debug for ReadyChunks<St>where St: Debug + Stream,
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>where St: Debug + TryStream, <St as TryStream>::Ok: Debug,
impl<St> Debug for TryBuffered<St>where St: Debug + TryStream, <St as TryStream>::Ok: TryFuture + Debug,
impl<St> Debug for TryChunks<St>where St: Debug + TryStream, <St as TryStream>::Ok: Debug,
impl<St> Debug for TryConcat<St>where St: Debug + TryStream, <St as TryStream>::Ok: Debug,
impl<St> Debug for TryFlatten<St>where St: Debug + TryStream, <St as TryStream>::Ok: Debug,
impl<St> Debug for TryFlattenUnordered<St>where FlattenUnorderedWithFlowController<NestedTryStreamIntoEitherTryStream<St>, PropagateBaseStreamError<St>>: Debug, St: TryStream, <St as TryStream>::Ok: TryStream + Unpin, <<St as TryStream>::Ok as TryStream>::Error: From<<St as TryStream>::Error>,
impl<St, C> Debug for Collect<St, C>where St: Debug, C: Debug,
impl<St, C> Debug for TryCollect<St, C>where St: Debug, C: Debug,
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 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>where St: Stream + Debug, <St as Stream>::Item: Debug,
impl<St, FromA, FromB> Debug for Unzip<St, FromA, FromB>where St: Debug, FromA: Debug, FromB: Debug,
impl<St, Fut> Debug for TakeUntil<St, Fut>where St: Stream + Debug, <St as Stream>::Item: Debug, Fut: Future + Debug,
impl<St, Fut, F> Debug for All<St, Fut, F>where St: Debug, Fut: Debug,
impl<St, Fut, F> Debug for AndThen<St, Fut, F>where St: Debug, Fut: Debug,
impl<St, Fut, F> Debug for Any<St, Fut, F>where St: Debug, Fut: Debug,
impl<St, Fut, F> Debug for Filter<St, Fut, F>where St: Stream + Debug, <St as Stream>::Item: Debug, Fut: Debug,
impl<St, Fut, F> Debug for FilterMap<St, Fut, F>where St: Debug, Fut: Debug,
impl<St, Fut, F> Debug for ForEach<St, Fut, F>where St: Debug, Fut: Debug,
impl<St, Fut, F> Debug for ForEachConcurrent<St, Fut, F>where St: Debug, Fut: Debug,
impl<St, Fut, F> Debug for OrElse<St, Fut, F>where St: Debug, Fut: Debug,
impl<St, Fut, F> Debug for SkipWhile<St, Fut, F>where St: Stream + Debug, <St as Stream>::Item: Debug, Fut: Debug,
impl<St, Fut, F> Debug for TakeWhile<St, Fut, F>where St: Stream + Debug, <St as Stream>::Item: Debug, Fut: Debug,
impl<St, Fut, F> Debug for Then<St, Fut, F>where St: Debug, Fut: Debug,
impl<St, Fut, F> Debug for TryFilter<St, Fut, F>where St: TryStream + Debug, <St as TryStream>::Ok: Debug, Fut: Debug,
impl<St, Fut, F> Debug for TryFilterMap<St, Fut, F>where St: Debug, Fut: Debug,
impl<St, Fut, F> Debug for TryForEach<St, Fut, F>where St: Debug, Fut: Debug,
impl<St, Fut, F> Debug for TryForEachConcurrent<St, Fut, F>where St: Debug, Fut: Debug,
impl<St, Fut, F> Debug for TrySkipWhile<St, Fut, F>where St: TryStream + Debug, <St as TryStream>::Ok: Debug, Fut: Debug,
impl<St, Fut, F> Debug for TryTakeWhile<St, Fut, F>where St: TryStream + Debug, <St as TryStream>::Ok: Debug, Fut: Debug,
impl<St, Fut, T, F> Debug for Fold<St, Fut, T, F>where St: Debug, Fut: Debug, T: Debug,
impl<St, Fut, T, F> Debug for TryFold<St, Fut, T, F>where St: Debug, Fut: Debug, T: Debug,
impl<St, S, Fut, F> Debug for Scan<St, S, Fut, F>where St: Stream + Debug, <St as Stream>::Item: Debug, S: Debug, Fut: Debug,
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>where St: Stream + Debug, <St as Stream>::Item: Debug, T: ?Sized,
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>where FlattenUnorderedWithFlowController<Map<St, F>, ()>: Debug, St: Stream, U: Stream + Unpin, F: FnMut(<St as Stream>::Item) -> U,
impl<Stream> Debug for FrameSocket<Stream>where Stream: Debug,
impl<Stream> Debug for WebSocket<Stream>where Stream: Debug,
impl<T> Debug for Bound<T>where T: Debug,
impl<T> Debug for Option<T>where T: Debug,
impl<T> Debug for kvarn::prelude::compact_str::core::task::Poll<T>where T: Debug,
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 &Twhere T: Debug + ?Sized,
impl<T> Debug for &mut Twhere T: Debug + ?Sized,
impl<T> Debug for [T]where T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where T: Debug + ?Sized,
This trait is implemented for tuples up to twelve items long.
impl<T> Debug for kvarn::prelude::bytes::buf::IntoIter<T>where T: Debug,
impl<T> Debug for Limit<T>where T: Debug,
impl<T> Debug for kvarn::prelude::bytes::buf::Take<T>where T: Debug,
impl<T> Debug for Cell<T>where T: Copy + Debug,
impl<T> Debug for kvarn::prelude::compact_str::core::cell::OnceCell<T>where T: Debug,
impl<T> Debug for kvarn::prelude::compact_str::core::cell::Ref<'_, T>where T: Debug + ?Sized,
impl<T> Debug for RefCell<T>where T: Debug + ?Sized,
impl<T> Debug for kvarn::prelude::compact_str::core::cell::RefMut<'_, T>where T: Debug + ?Sized,
impl<T> Debug for SyncUnsafeCell<T>where T: ?Sized,
impl<T> Debug for UnsafeCell<T>where T: ?Sized,
impl<T> Debug for Reverse<T>where T: Debug,
impl<T> Debug for kvarn::prelude::compact_str::core::future::Pending<T>
impl<T> Debug for kvarn::prelude::compact_str::core::future::Ready<T>where T: Debug,
impl<T> Debug for kvarn::prelude::compact_str::core::iter::Empty<T>
impl<T> Debug for kvarn::prelude::compact_str::core::iter::Once<T>where T: Debug,
impl<T> Debug for Rev<T>where T: Debug,
impl<T> Debug for PhantomData<T>where T: ?Sized,
impl<T> Debug for Discriminant<T>
impl<T> Debug for ManuallyDrop<T>where T: Debug + ?Sized,
impl<T> Debug for Saturating<T>where T: Debug,
impl<T> Debug for Wrapping<T>where T: Debug,
impl<T> Debug for Yeet<T>where T: Debug,
impl<T> Debug for AssertUnwindSafe<T>where T: Debug,
impl<T> Debug for NonNull<T>where T: ?Sized,
impl<T> Debug for kvarn::prelude::compact_str::core::result::IntoIter<T>where T: Debug,
impl<T> Debug for kvarn::prelude::compact_str::core::slice::Iter<'_, T>where T: Debug,
impl<T> Debug for kvarn::prelude::compact_str::core::slice::IterMut<'_, T>where T: Debug,
impl<T> Debug for AtomicPtr<T>
target_has_atomic_load_store="ptr"
only.