pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}Expand description
? formatting.
Debug should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive a Debug implementation.
When used with the alternate format specifier #?, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive] if all fields implement Debug. When
derived for structs, it will use the name of the struct, then {, then a
comma-separated list of each field’s name and Debug value, then }. For
enums, it will use the name of the variant and, if applicable, (, then the
Debug values of the fields, then ).
§Stability
Derived Debug formats are not stable, and so may change with future Rust
versions. Additionally, Debug implementations of types provided by the
standard library (std, core, alloc, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);There are a number of helper methods on the Formatter struct to help you with manual
implementations, such as debug_struct.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter trait (debug_struct, debug_tuple,
debug_list, debug_set, debug_map) can do something totally custom by
manually writing an arbitrary representation to the Formatter.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}Debug implementations using either derive or the debug builder API
on Formatter support pretty-printing using the alternate flag: {:#?}.
Pretty-printing with #?:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err if, and only if, the provided Formatter returns Err.
String formatting is considered an infallible operation; this function only
returns a Result because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");Implementors§
impl Debug for DriverType
impl Debug for OwnedFd
impl Debug for PipeEnd
impl Debug for PipeMode
impl Debug for SerdeJsonCodecError
impl Debug for ConfigError
impl Debug for ConnectError
impl Debug for compio::quic::ConnectionError
impl Debug for compio::quic::ReadError
impl Debug for ReadExactError
impl Debug for StoppedError
impl Debug for compio::quic::WriteError
impl Debug for compio::quic::h3::error::ConnectionError
impl Debug for LocalError
impl Debug for StreamError
impl Debug for ErrorOrigin
impl Debug for FrameProtocolError
impl Debug for FrameStreamError
impl Debug for compio::quic::h3::proto::frame::Frame<PayloadLen>
impl Debug for FrameError
impl Debug for SettingsError
impl Debug for HeaderError
impl Debug for compio::quic::h3::proto::stream::Side
impl Debug for ConnectionErrorIncoming
impl Debug for StreamErrorIncoming
impl Debug for compio::tls::native_tls::Protocol
impl Debug for EarlyDataError
impl Debug for EchMode
impl Debug for EchStatus
impl Debug for Tls12Resumption
impl Debug for VerifierBuilderError
impl Debug for CompressionCache
impl Debug for CompressionLevel
impl Debug for KeyExchangeAlgorithm
impl Debug for HashAlgorithm
impl Debug for AlertDescription
impl Debug for CertRevocationListError
impl Debug for CertificateCompressionAlgorithm
impl Debug for CertificateError
impl Debug for CipherSuite
impl Debug for compio::tls::rustls::Connection
impl Debug for ContentType
impl Debug for EncryptedClientHelloError
impl Debug for compio::tls::rustls::Error
impl Debug for ExtendedKeyPurpose
impl Debug for HandshakeKind
impl Debug for HandshakeType
impl Debug for InconsistentKeys
impl Debug for InvalidMessage
impl Debug for NamedGroup
impl Debug for PeerIncompatible
impl Debug for PeerMisbehaved
impl Debug for ProtocolVersion
impl Debug for compio::tls::rustls::Side
impl Debug for SignatureAlgorithm
impl Debug for SignatureScheme
impl Debug for SupportedCipherSuite
impl Debug for FipsStatus
impl Debug for compio::tls::rustls::pki_types::IpAddr
impl Debug for ServerName<'_>
impl Debug for compio::tls::rustls::pki_types::pem::Error
impl Debug for SectionKind
impl Debug for compio::tls::rustls::quic::Connection
impl Debug for compio::tls::rustls::quic::Version
impl Debug for CertificateType
impl Debug for EncodeError
impl Debug for EncryptError
impl Debug for compio::ws::tungstenite::Error
impl Debug for Message
impl Debug for compio::ws::tungstenite::error::CapacityError
impl Debug for ProtocolError
impl Debug for SubProtocolError
impl Debug for TlsError
impl Debug for UrlError
impl Debug for Role
impl Debug for CloseCode
impl Debug for Control
impl Debug for Data
impl Debug for OpCode
impl Debug for Mode
impl Debug for ReserveError
impl Debug for ReserveExactError
impl Debug for TryReserveErrorKind
impl Debug for compio::buf::bumpalo::core_alloc::slice::GetDisjointMutError
impl Debug for SearchStep
impl Debug for compio::buf::bumpalo::core_alloc::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for Sign
impl Debug for AsciiChar
impl Debug for core::cmp::Ordering
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for Locality
impl Debug for AtomicOrdering
impl Debug for SimdAlign
impl Debug for TypeKind
impl Debug for core::net::ip_addr::IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for SocketAddr
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for std::fs::TryLockError
impl Debug for SeekFrom
impl Debug for std::io::error::ErrorKind
impl Debug for Shutdown
impl Debug for BacktraceStyle
impl Debug for std::sync::mpsc::RecvTimeoutError
impl Debug for std::sync::mpsc::TryRecvError
impl Debug for log::Level
impl Debug for log::LevelFilter
impl Debug for FloatErrorKind
impl Debug for Always
impl Debug for Category
impl Debug for serde_json::value::Value
impl Debug for BernoulliError
impl Debug for rand::distr::uniform::Error
impl Debug for rand::distr::weighted::Error
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
impl Debug for bool
impl Debug for char
impl Debug for f16
impl Debug for f32
impl Debug for f64
impl Debug for f128
impl Debug for i8
impl Debug for i16
impl Debug for i32
impl Debug for i64
impl Debug for i128
impl Debug for isize
impl Debug for !
impl Debug for str
impl Debug for u8
impl Debug for u16
impl Debug for u32
impl Debug for u64
impl Debug for u128
impl Debug for ()
impl Debug for usize
impl Debug for Dispatcher
impl Debug for AsyncifyPool
impl Debug for compio::driver::BufferPool
impl Debug for Extra
impl Debug for ProactorBuilder
impl Debug for ClientOptions
impl Debug for NamedPipeClient
impl Debug for NamedPipeServer
impl Debug for PipeInfo
impl Debug for ServerOptions
impl Debug for compio::fs::File
impl Debug for compio::fs::FileType
impl Debug for compio::fs::OpenOptions
impl Debug for compio::fs::Permissions
impl Debug for compio::fs::Stderr
impl Debug for compio::fs::Stdin
impl Debug for compio::fs::Stdout
impl Debug for SerdeJsonCodec
impl Debug for compio::io::framed::frame::Frame
impl Debug for LengthDelimited
impl Debug for Null
impl Debug for SocketOpts
impl Debug for compio::net::TcpListener
impl Debug for compio::net::TcpStream
impl Debug for compio::net::UdpSocket
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for compio::process::Command
impl Debug for Bbr
impl Debug for BbrConfig
impl Debug for Cubic
impl Debug for CubicConfig
impl Debug for NewReno
impl Debug for NewRenoConfig
impl Debug for NoInitialCipherSuite
impl Debug for CryptoError
impl Debug for ExportKeyingMaterialError
impl Debug for UnsupportedVersion
impl Debug for InternalConnectionError
impl Debug for compio::quic::h3::error::Code
impl Debug for compio::quic::h3::ext::Protocol
impl Debug for compio::quic::h3::proto::coding::UnexpectedEnd
impl Debug for compio::quic::h3::proto::frame::FrameType
impl Debug for PushPromise
impl Debug for SettingId
impl Debug for Settings
impl Debug for compio::quic::h3::proto::headers::Header
impl Debug for InvalidPushId
impl Debug for PushId
impl Debug for StreamType
impl Debug for compio::quic::h3::proto::varint::VarInt
impl Debug for compio::quic::h3::proto::varint::VarIntBoundsExceeded
impl Debug for InvalidStreamId
impl Debug for compio::quic::h3::quic::StreamId
impl Debug for SessionId
impl Debug for AckFrequencyConfig
impl Debug for ApplicationClose
impl Debug for Chunk
impl Debug for compio::quic::ClientConfig
impl Debug for ClosedStream
impl Debug for Connecting
impl Debug for compio::quic::Connection
impl Debug for ConnectionClose
impl Debug for ConnectionStats
impl Debug for compio::quic::Endpoint
impl Debug for EndpointConfig
impl Debug for IdleTimeout
impl Debug for compio::quic::Incoming
impl Debug for IncomingFuture
impl Debug for MtuDiscoveryConfig
impl Debug for compio::quic::RecvStream
impl Debug for SendStream
impl Debug for compio::quic::ServerConfig
impl Debug for compio::quic::StreamId
impl Debug for Transmit
impl Debug for TransportConfig
impl Debug for compio::quic::VarInt
impl Debug for compio::runtime::event::Event
impl Debug for BorrowedBuffer<'_>
impl Debug for compio::runtime::BufferPool
impl Debug for RuntimeBuilder
impl Debug for Elapsed
impl Debug for Interval
impl Debug for compio::tls::native_tls::Error
impl Debug for compio::tls::native_tls::TlsConnector
impl Debug for DangerousClientConfigBuilder
impl Debug for HandshakeSignatureValid
impl Debug for ServerCertVerified
impl Debug for AlwaysResolvesClientRawPublicKeys
impl Debug for ClientConnectionData
impl Debug for ClientSessionMemoryCache
impl Debug for EchConfig
impl Debug for EchGreaseConfig
impl Debug for Resumption
impl Debug for ServerCertVerifierBuilder
impl Debug for Tls12ClientSessionValue
impl Debug for Tls13ClientSessionValue
impl Debug for WebPkiServerVerifier
impl Debug for CompressionCacheInner
impl Debug for CompressionFailed
impl Debug for DecompressionFailed
impl Debug for OutboundOpaqueMessage
impl Debug for PlainMessage
impl Debug for PrefixedPayload
impl Debug for UnsupportedOperationError
impl Debug for EncapsulatedSecret
impl Debug for HpkePublicKey
impl Debug for HpkeSuite
impl Debug for CryptoProvider
impl Debug for GetRandomFailed
impl Debug for WebPkiSupportedAlgorithms
impl Debug for OutputLengthError
impl Debug for compio::tls::rustls::pki_types::AddrParseError
impl Debug for AlgorithmIdentifier
impl Debug for Der<'_>
impl Debug for EchConfigListBytes<'_>
impl Debug for InvalidDnsNameError
impl Debug for InvalidSignature
impl Debug for compio::tls::rustls::pki_types::Ipv4Addr
impl Debug for compio::tls::rustls::pki_types::Ipv6Addr
impl Debug for PrivatePkcs1KeyDer<'_>
impl Debug for PrivatePkcs8KeyDer<'_>
impl Debug for PrivateSec1KeyDer<'_>
impl Debug for UnixTime
impl Debug for compio::tls::rustls::quic::ClientConnection
impl Debug for compio::tls::rustls::quic::ServerConnection
impl Debug for ClientCertVerified
impl Debug for compio::tls::rustls::server::Accepted
impl Debug for AcceptedAlert
impl Debug for AlwaysResolvesServerRawPublicKeys
impl Debug for ClientCertVerifierBuilder
impl Debug for NoClientAuth
impl Debug for NoServerSessionStorage
impl Debug for ResolvesServerCertUsingSni
impl Debug for ServerConnectionData
impl Debug for ServerSessionMemoryCache
impl Debug for WantsServerCert
impl Debug for WebPkiClientVerifier
impl Debug for CertifiedKey
impl Debug for SingleCertAndKey
impl Debug for compio::tls::rustls::ClientConfig
impl Debug for compio::tls::rustls::ClientConnection
impl Debug for DigitallySignedStruct
impl Debug for DistinguishedName
impl Debug for IoState
impl Debug for KeyLogFile
impl Debug for NoKeyLog
impl Debug for OtherError
impl Debug for RootCertStore
impl Debug for compio::tls::rustls::ServerConfig
impl Debug for compio::tls::rustls::ServerConnection
impl Debug for SupportedProtocolVersion
impl Debug for TicketRotator
std only.impl Debug for TicketSwitcher
impl Debug for Tls12CipherSuite
impl Debug for Tls13CipherSuite
impl Debug for WantsVerifier
impl Debug for WantsVersions
impl Debug for DefaultTimeProvider
impl Debug for InsufficientSizeError
impl Debug for compio::tls::TlsConnector
impl Debug for NoCallback
impl Debug for InvalidHeaderName
impl Debug for InvalidHeaderValue
impl Debug for MaxSizeReached
impl Debug for ToStrError
impl Debug for InvalidMethod
impl Debug for compio::ws::tungstenite::http::request::Builder
impl Debug for compio::ws::tungstenite::http::request::Parts
impl Debug for compio::ws::tungstenite::http::response::Builder
impl Debug for compio::ws::tungstenite::http::response::Parts
impl Debug for InvalidStatusCode
impl Debug for compio::ws::tungstenite::http::Error
impl Debug for Extensions
impl Debug for HeaderName
impl Debug for HeaderValue
impl Debug for Method
impl Debug for StatusCode
impl Debug for Uri
impl Debug for compio::ws::tungstenite::http::Version
impl Debug for Authority
impl Debug for compio::ws::tungstenite::http::uri::Builder
impl Debug for InvalidUri
impl Debug for InvalidUriParts
impl Debug for compio::ws::tungstenite::http::uri::Parts
impl Debug for PathAndQuery
impl Debug for Scheme
impl Debug for compio::ws::tungstenite::protocol::frame::Frame
impl Debug for FrameHeader
impl Debug for CloseFrame
impl Debug for WebSocketConfig
impl Debug for WebSocketContext
impl Debug for compio::ws::tungstenite::Bytes
impl Debug for ClientRequestBuilder
impl Debug for Utf8Bytes
impl Debug for UninitSlice
impl Debug for BytesMut
impl Debug for TryGetError
impl Debug for AllocErr
impl Debug for compio::buf::bumpalo::core_alloc::alloc::AllocError
impl Debug for Global
impl Debug for Layout
impl Debug for LayoutError
impl Debug for ByteStr
impl Debug for ByteString
impl Debug for UnorderedKeyError
impl Debug for TryReserveError
impl Debug for CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for compio::buf::bumpalo::core_alloc::ffi::NulError
impl Debug for compio::buf::bumpalo::core_alloc::str::Chars<'_>
impl Debug for compio::buf::bumpalo::core_alloc::str::EncodeUtf16<'_>
impl Debug for ParseBoolError
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for compio::buf::bumpalo::core_alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for String
impl Debug for untrusted::input::Input<'_>
The value is intentionally omitted from the output to avoid leaking secrets.
impl Debug for EndOfInput
impl Debug for untrusted::reader::Reader<'_>
Avoids writing the value or position to avoid creating a side channel,
though Reader can’t avoid leaking the position via timing.
impl Debug for TypeId
impl Debug for core::array::TryFromSliceError
impl Debug for core::ascii::EscapeDefault
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for ParseCharError
impl Debug for core::char::decode::DecodeUtf16Error
impl Debug for core::char::EscapeDebug
impl Debug for core::char::EscapeDefault
impl Debug for core::char::EscapeUnicode
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for CpuidResult
impl Debug for __m128
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128h
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for core::core_arch::x86::bf16
impl Debug for CStr
Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
impl Debug for FromBytesUntilNulError
impl Debug for VaList<'_>
impl Debug for SipHasher
impl Debug for Last
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomPinned
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for Assume
impl Debug for Array
impl Debug for Bool
impl Debug for Char
impl Debug for core::mem::type_info::Field
impl Debug for Float
impl Debug for Int
impl Debug for Pointer
impl Debug for Reference
impl Debug for core::mem::type_info::Slice
impl Debug for core::mem::type_info::Str
impl Debug for Tuple
impl Debug for core::mem::type_info::Type
impl Debug for core::net::ip_addr::Ipv4Addr
impl Debug for core::net::ip_addr::Ipv6Addr
impl Debug for core::net::parser::AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for core::num::dec2flt::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for Location<'_>
impl Debug for PanicMessage<'_>
impl Debug for core::ptr::alignment::Alignment
impl Debug for core::sync::atomic::AtomicBool
target_has_atomic_load_store=8 only.impl Debug for core::sync::atomic::AtomicI8
impl Debug for core::sync::atomic::AtomicI16
impl Debug for core::sync::atomic::AtomicI32
impl Debug for core::sync::atomic::AtomicI64
impl Debug for AtomicI128
impl Debug for core::sync::atomic::AtomicIsize
impl Debug for core::sync::atomic::AtomicU8
impl Debug for core::sync::atomic::AtomicU16
impl Debug for core::sync::atomic::AtomicU32
impl Debug for core::sync::atomic::AtomicU64
impl Debug for AtomicU128
impl Debug for core::sync::atomic::AtomicUsize
impl Debug for core::task::wake::Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for Duration
impl Debug for TryFromFloatSecsError
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for std::ffi::os_str::OsStr
impl Debug for OsString
impl Debug for std::fs::Dir
impl Debug for DirBuilder
impl Debug for std::fs::DirEntry
impl Debug for std::fs::File
impl Debug for FileTimes
impl Debug for std::fs::FileType
impl Debug for std::fs::Metadata
impl Debug for std::fs::OpenOptions
impl Debug for std::fs::Permissions
impl Debug for ReadDir
impl Debug for DefaultHasher
impl Debug for RandomState
impl Debug for WriterPanicked
impl Debug for std::io::error::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for std::io::stdio::Stderr
impl Debug for StderrLock<'_>
impl Debug for std::io::stdio::Stdin
impl Debug for StdinLock<'_>
impl Debug for std::io::stdio::Stdout
impl Debug for StdoutLock<'_>
impl Debug for std::io::util::Empty
impl Debug for std::io::util::Repeat
impl Debug for std::io::util::Sink
impl Debug for IntoIncoming
impl Debug for std::net::tcp::TcpListener
impl Debug for std::net::tcp::TcpStream
impl Debug for std::net::udp::UdpSocket
impl Debug for EncodeWide<'_>
impl Debug for BorrowedHandle<'_>
impl Debug for HandleOrInvalid
impl Debug for HandleOrNull
impl Debug for InvalidHandleError
impl Debug for NullHandleError
impl Debug for OwnedHandle
impl Debug for BorrowedSocket<'_>
impl Debug for OwnedSocket
impl Debug for Components<'_>
impl Debug for std::path::Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for NormalizeError
impl Debug for Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for std::process::Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for Stdio
impl Debug for DefaultRandomSource
impl Debug for std::sync::barrier::Barrier
impl Debug for std::sync::barrier::BarrierWaitResult
impl Debug for std::sync::mpsc::RecvError
impl Debug for std::sync::nonpoison::condvar::Condvar
impl Debug for WouldBlock
impl Debug for std::sync::once::Once
impl Debug for OnceState
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for WaitTimeoutResult
impl Debug for std::thread::builder::Builder
impl Debug for ThreadId
impl Debug for AccessError
impl Debug for std::thread::scoped::Scope<'_, '_>
impl Debug for Thread
impl Debug for Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for getrandom::error::Error
impl Debug for half::bfloat::bf16
target_arch=spirv only.impl Debug for f16
target_arch=spirv only.impl Debug for log::ParseLevelError
impl Debug for SetLoggerError
impl Debug for num_traits::ParseFloatError
impl Debug for IgnoredAny
impl Debug for serde_core::de::value::Error
impl Debug for serde_json::error::Error
impl Debug for serde_json::map::IntoIter
impl Debug for serde_json::map::IntoValues
impl Debug for serde_json::map::Map<String, Value>
impl Debug for Number
impl Debug for CompactFormatter
impl Debug for Choice
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 widestring::error::DecodeUtf16Error
impl Debug for DecodeUtf32Error
impl Debug for MissingNulTerminator
impl Debug for Utf16Error
impl Debug for Utf32Error
impl Debug for widestring::ucstr::Display<'_, U16CStr>
impl Debug for widestring::ucstr::Display<'_, U32CStr>
impl Debug for U16CStr
impl Debug for U32CStr
impl Debug for U16CString
impl Debug for U32CString
impl Debug for CharsLossyUtf16<'_>
impl Debug for CharsLossyUtf32<'_>
impl Debug for widestring::ustr::iter::CharsUtf16<'_>
impl Debug for widestring::ustr::iter::CharsUtf32<'_>
impl Debug for widestring::ustr::Display<'_, U16Str>
impl Debug for widestring::ustr::Display<'_, U32Str>
impl Debug for U16Str
impl Debug for U32Str
impl Debug for U16String
impl Debug for U32String
impl Debug for widestring::utfstr::iter::CharsUtf16<'_>
impl Debug for widestring::utfstr::iter::CharsUtf32<'_>
impl Debug for Utf16Str
impl Debug for Utf32Str
impl Debug for DrainUtf16<'_>
impl Debug for DrainUtf32<'_>
impl Debug for Utf16String
impl Debug for Utf32String
impl Debug for Bernoulli
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for Alphabetic
impl Debug for Alphanumeric
impl Debug for rand::distr::slice::Empty
impl Debug for StandardUniform
impl Debug for UniformUsize
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for StepRng
impl Debug for SmallRng
impl Debug for StdRng
impl Debug for ThreadRng
Debug implementation does not leak internal state
impl Debug for ChaCha8Core
impl Debug for ChaCha8Rng
impl Debug for ChaCha12Core
impl Debug for ChaCha12Rng
impl Debug for ChaCha20Core
impl Debug for ChaCha20Rng
impl Debug for OsError
impl Debug for OsRng
impl Debug for Arguments<'_>
impl Debug for compio::buf::bumpalo::core_alloc::fmt::Error
impl Debug for FormattingOptions
impl Debug for AbortHandle
impl Debug for AbortRegistration
impl Debug for Aborted
impl Debug for AcceptError
impl Debug for AcquireError
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for Algorithm
impl Debug for AllocError
impl Debug for Alternation
impl Debug for Anchored
impl Debug for Ansi256Color
impl Debug for AnsiColor
impl Debug for Arg
impl Debug for ArgAction
impl Debug for ArgCursor
impl Debug for ArgGroup
impl Debug for ArgMatches
impl Debug for ArgPredicate
impl Debug for Assertion
impl Debug for AssertionKind
impl Debug for Ast
impl Debug for AtomicBool
impl Debug for AtomicI8
impl Debug for AtomicI16
impl Debug for AtomicI32
impl Debug for AtomicI64
impl Debug for AtomicIsize
impl Debug for AtomicU8
impl Debug for AtomicU16
impl Debug for AtomicU32
impl Debug for AtomicU64
impl Debug for AtomicUsize
impl Debug for AtomicWaker
impl Debug for Attribute
impl Debug for AxisScale
impl Debug for Backoff
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for Baseline
impl Debug for BatchSize
impl Debug for BenchmarkFilter
impl Debug for BigEndian
impl Debug for BitOrder
impl Debug for BoolValueParser
impl Debug for BoolishValueParser
impl Debug for BuildError
impl Debug for BuildError
impl Debug for Builder
impl Debug for Builder
impl Debug for Builder
impl Debug for Builder
impl Debug for ByteClasses
impl Debug for Cache
impl Debug for Cache
impl Debug for Canceled
impl Debug for CanonicalValue
impl Debug for Capture
impl Debug for CaptureLocations
impl Debug for CaptureLocations
impl Debug for CaptureName
impl Debug for Captures
impl Debug for CaseFoldError
impl Debug for CertContext
impl Debug for CertStore
impl Debug for CertificateResult
impl Debug for Class
impl Debug for ClassAscii
impl Debug for ClassAsciiKind
impl Debug for ClassBracketed
impl Debug for ClassBytes
impl Debug for ClassBytesRange
impl Debug for ClassPerl
impl Debug for ClassPerlKind
impl Debug for ClassSet
impl Debug for ClassSetBinaryOp
impl Debug for ClassSetBinaryOpKind
impl Debug for ClassSetItem
impl Debug for ClassSetRange
impl Debug for ClassSetUnion
impl Debug for ClassUnicode
impl Debug for ClassUnicode
impl Debug for ClassUnicodeKind
impl Debug for ClassUnicodeOpKind
impl Debug for ClassUnicodeRange
impl Debug for ClearBuffer
impl Debug for ClearLine
impl Debug for Code
impl Debug for CollectionAllocErr
impl Debug for Collector
impl Debug for Color
impl Debug for Color
impl Debug for Color
impl Debug for ColorChoice
impl Debug for Command
impl Debug for Comment
impl Debug for Compiler
impl Debug for ComputerNameKind
impl Debug for Concat
impl Debug for Config
impl Debug for Config
impl Debug for Config
impl Debug for Config
impl Debug for Config
impl Debug for Configuration
impl Debug for Connection
impl Debug for ConnectionError
impl Debug for ConnectionEvent
impl Debug for ConnectionHandle
impl Debug for ConnectionId
impl Debug for Console
impl Debug for Context
impl Debug for CoreId
impl Debug for CrlsRequired
impl Debug for Current
impl Debug for Datagram
impl Debug for DebugByte
impl Debug for DecodeError
impl Debug for DecodeKind
impl Debug for DecodePartial
impl Debug for DefaultCallsite
impl Debug for DefaultGuard
impl Debug for DenseTransitions
impl Debug for DerTypeId
impl Debug for DeserializeError
impl Debug for Digest
impl Debug for Dir
impl Debug for DirEntry
impl Debug for Direction
impl Debug for DisableCursorBlinking
impl Debug for DisableMouseEvents
impl Debug for Dispatch
impl Debug for Domain
impl Debug for Dot
impl Debug for DummyBackendError
impl Debug for Eager
impl Debug for EcdsaKeyPair
impl Debug for EcdsaSigningAlgorithm
impl Debug for EcdsaVerificationAlgorithm
impl Debug for EcnCodepoint
impl Debug for Ed25519KeyPair
impl Debug for EdDSAParameters
impl Debug for EffectIter
impl Debug for Effects
§Examples
let effects = anstyle::Effects::new();
assert_eq!(format!("{:?}", effects), "Effects()");
let effects = anstyle::Effects::BOLD | anstyle::Effects::UNDERLINE;
assert_eq!(format!("{:?}", effects), "Effects(BOLD | UNDERLINE)");impl Debug for Empty
impl Debug for Empty
impl Debug for EnableCursorBlinking
impl Debug for EnableMouseEvents
impl Debug for Encoding
impl Debug for Endpoint
impl Debug for EndpointEvent
impl Debug for EnteredSpan
impl Debug for EphemeralPrivateKey
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for ErrorKind
impl Debug for ErrorKind
impl Debug for ErrorKind
impl Debug for ErrorKind
impl Debug for Event
impl Debug for ExpirationPolicy
impl Debug for ExtractKind
impl Debug for Extractor
impl Debug for FalseyValueParser
impl Debug for Field
impl Debug for FieldSet
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for FinderBuilder
impl Debug for FinderRev
impl Debug for FinderRev
impl Debug for FinishError
impl Debug for Flag
impl Debug for Flags
impl Debug for FlagsItem
impl Debug for FlagsItemKind
impl Debug for FnContext
impl Debug for FrameStats
impl Debug for FrameType
impl Debug for GetDisjointMutError
impl Debug for Group
impl Debug for GroupInfo
impl Debug for GroupInfoError
impl Debug for GroupKind
impl Debug for Guard
impl Debug for HSLColor
impl Debug for HalfMatch
impl Debug for Handle
impl Debug for Handle
impl Debug for HandleRef
impl Debug for Header
impl Debug for Header<'_>
impl Debug for HexLiteralKind
impl Debug for HideCursor
impl Debug for Hir
impl Debug for HirKind
impl Debug for Id
impl Debug for Id
impl Debug for Identifier
impl Debug for Incoming
impl Debug for Incomplete
impl Debug for Integer
impl Debug for Intense
impl Debug for Interest
impl Debug for InterfaceIndexOrAddress
impl Debug for IntoIter
impl Debug for InvalidBufferSize
impl Debug for InvalidChunkSize
impl Debug for InvalidCid
impl Debug for InvalidLength
impl Debug for InvalidNameContext
impl Debug for InvalidOutputSize
impl Debug for Iter
impl Debug for Key
impl Debug for KeyPair
impl Debug for KeyPurposeId<'_>
impl Debug for KeyRejected
impl Debug for KeyUsage
impl Debug for Kind
impl Debug for Lazy
impl Debug for LessSafeKey
impl Debug for Level
impl Debug for LevelFilter
impl Debug for Literal
impl Debug for Literal
impl Debug for Literal
impl Debug for LiteralKind
impl Debug for LittleEndian
impl Debug for LocalHandle
impl Debug for LongType
impl Debug for Look
impl Debug for Look
impl Debug for LookMatcher
impl Debug for LookSet
impl Debug for LookSet
impl Debug for LookSetIter
impl Debug for LookSetIter
impl Debug for Match
impl Debug for MatchError
impl Debug for MatchErrorKind
impl Debug for MatchKind
impl Debug for MatchesError
impl Debug for Metadata<'_>
impl Debug for MoveCursorDown
impl Debug for MoveCursorLeft
impl Debug for MoveCursorRight
impl Debug for MoveCursorTo
impl Debug for MoveCursorToColumn
impl Debug for MoveCursorToNextLine
impl Debug for MoveCursorToPreviousLine
impl Debug for MoveCursorUp
impl Debug for NFA
impl Debug for NoSubscriber
impl Debug for NonEmptyStringValueParser
impl Debug for NonMaxUsize
impl Debug for Notify
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for One
impl Debug for One
impl Debug for One
impl Debug for OsStr
impl Debug for OsStringValueParser
impl Debug for OwnedCertRevocationList
impl Debug for OwnedNotified
impl Debug for OwnedRevokedCert
impl Debug for OwnedSemaphorePermit
impl Debug for PacketDecodeError
impl Debug for Pair
impl Debug for Parker
impl Debug for ParseLevelError
impl Debug for ParseLevelFilterError
impl Debug for Parser
impl Debug for Parser
impl Debug for ParserBuilder
impl Debug for ParserBuilder
impl Debug for ParserConfig
impl Debug for PartialDecode
impl Debug for PathBufValueParser
impl Debug for PathStats
impl Debug for PatternID
impl Debug for PatternIDError
impl Debug for PatternSet
impl Debug for PatternSetInsertError
impl Debug for PikeVM
impl Debug for PlotConfiguration
impl Debug for PlottingBackend
impl Debug for PollNext
impl Debug for Position
impl Debug for Position
impl Debug for PossibleValue
impl Debug for PossibleValuesParser
impl Debug for Prefilter
impl Debug for PrefilterConfig
impl Debug for Printer
impl Debug for Printer
impl Debug for Prk
impl Debug for ProjectionMatrix
impl Debug for Properties
impl Debug for ProtectedHeader
impl Debug for ProtectedInitialHeader
impl Debug for Protocol
impl Debug for Protocol
impl Debug for PublicKey
impl Debug for PublicKey
impl Debug for Quartiles
impl Debug for RGBAColor
impl Debug for RGBColor
impl Debug for Rand32
impl Debug for Rand64
impl Debug for RandomConnectionIdGenerator
impl Debug for RawArgs
impl Debug for ReadBuf<'_>
impl Debug for ReadError
impl Debug for ReadableError
impl Debug for Rect
impl Debug for RecvError
impl Debug for RecvError
impl Debug for RecvError
impl Debug for RecvError
impl Debug for RecvFlags
impl Debug for RecvTimeoutError
impl Debug for Regex
impl Debug for Regex
impl Debug for Regex
impl Debug for RegexBuilder
impl Debug for RegexBuilder
impl Debug for RegexSet
impl Debug for RegexSet
impl Debug for RegexSetBuilder
impl Debug for RegexSetBuilder
impl Debug for Repeat
impl Debug for Repetition
impl Debug for Repetition
impl Debug for RepetitionKind
impl Debug for RepetitionOp
impl Debug for RepetitionRange
impl Debug for ReportCursorPosition
impl Debug for RequiredEkuNotFoundContext
impl Debug for Reset
impl Debug for ResetAttributes
impl Debug for ResizeTextArea
impl Debug for RestoreCursorPosition
impl Debug for RetryError
impl Debug for RevocationCheckDepth
impl Debug for RevocationReason
impl Debug for RgbColor
impl Debug for Rng
impl Debug for RsaParameters
impl Debug for Salt
impl Debug for SamplingMode
impl Debug for SaveCursorPosition
impl Debug for ScheduleInfo
impl Debug for Scope<'_>
impl Debug for ScrollBufferDown
impl Debug for ScrollBufferUp
impl Debug for Semaphore
impl Debug for SendDatagramError
impl Debug for SendDatagramError
impl Debug for SendDatagramErrorIncoming
impl Debug for SendError
impl Debug for Seq
impl Debug for SerializeError
impl Debug for SeriesLabelPosition
impl Debug for SetAttribute
impl Debug for SetBackgroundColor
impl Debug for SetFlags
impl Debug for SetForegroundColor
impl Debug for SetGlobalDefaultError
impl Debug for SetMatches
impl Debug for SetMatches
impl Debug for SetMatchesIntoIter
impl Debug for SetMatchesIntoIter
impl Debug for Sha1Core
impl Debug for ShapeStyle
impl Debug for Shift
impl Debug for ShouldTransmit
impl Debug for ShowCursor
impl Debug for Side
impl Debug for Sink
impl Debug for SmallIndex
impl Debug for SmallIndexError
impl Debug for SockAddr
impl Debug for SockAddrStorage
impl Debug for SockRef<'_>
impl Debug for Socket
impl Debug for Span
impl Debug for Span
impl Debug for Span
impl Debug for SparseTransitions
impl Debug for SpawnError
impl Debug for SpecialLiteralKind
impl Debug for Specification
impl Debug for SpecificationError
impl Debug for State
impl Debug for StateID
impl Debug for StateIDError
impl Debug for Str
impl Debug for StreamEvent
impl Debug for StringValueParser
impl Debug for Style
impl Debug for StyledStr
impl Debug for Styles
impl Debug for SwitchBufferToAlternate
impl Debug for SwitchBufferToNormal
impl Debug for SystemRandom
impl Debug for Tag
impl Debug for TcpKeepalive
impl Debug for ThreadBuilder
impl Debug for ThreadPool
impl Debug for ThreadPoolBuildError
impl Debug for Three
impl Debug for Three
impl Debug for Three
impl Debug for Throughput
impl Debug for TokenMemoryCache
impl Debug for Transition
impl Debug for Translate
impl Debug for Translator
impl Debug for TranslatorBuilder
impl Debug for TransportParameters
impl Debug for TruncSide
impl Debug for TryAcquireError
impl Debug for TryFromSliceError
impl Debug for TryLockError
impl Debug for TryRecvError
impl Debug for TryRecvError
impl Debug for TryRecvError
impl Debug for TryRecvError
impl Debug for TryRecvError
impl Debug for Two
impl Debug for Two
impl Debug for Two
impl Debug for Type
impl Debug for UdpStats
impl Debug for UnboundKey
impl Debug for UnexpectedEnd
impl Debug for UnicodeWordBoundaryError
impl Debug for UnicodeWordError
impl Debug for Unit
impl Debug for UnknownArgumentValueParser
impl Debug for UnknownStatusPolicy
impl Debug for Unparker
impl Debug for Unspecified
impl Debug for UnsupportedSignatureAlgorithmContext
impl Debug for UnsupportedSignatureAlgorithmForPublicKeyContext
impl Debug for Utf8Range
impl Debug for Utf8Sequence
impl Debug for Utf8Sequences
impl Debug for ValidationTokenConfig
impl Debug for Value
impl Debug for ValueHint
impl Debug for ValueParser
impl Debug for ValueRange
impl Debug for ValueSet<'_>
impl Debug for ValueSource
impl Debug for VarIntBoundsExceeded
impl Debug for Verifier
impl Debug for VersionError
impl Debug for WaitGroup
impl Debug for WakerSlot
impl Debug for WalkDir
impl Debug for WeakDispatch
impl Debug for WhichCaptures
impl Debug for WithComments
impl Debug for Wrap
impl Debug for WriteError
impl Debug for Written
impl Debug for Yield
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl Debug for dyn Value
impl<'a> Debug for BorrowedFd<'a>
impl<'a> Debug for OutboundChunks<'a>
impl<'a> Debug for PrivateKeyDer<'a>
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for IndexVecIter<'a>
impl<'a> Debug for AnyDelimited<'a>
impl<'a> Debug for DangerousClientConfig<'a>
impl<'a> Debug for InboundPlainMessage<'a>
impl<'a> Debug for OutboundPlainMessage<'a>
impl<'a> Debug for FfdheGroup<'a>
impl<'a> Debug for CertificateDer<'a>
impl<'a> Debug for CertificateRevocationListDer<'a>
impl<'a> Debug for CertificateSigningRequestDer<'a>
impl<'a> Debug for DnsName<'a>
impl<'a> Debug for SubjectPublicKeyInfoDer<'a>
impl<'a> Debug for TrustAnchor<'a>
impl<'a> Debug for ClientHello<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for compio::buf::bumpalo::core_alloc::str::Bytes<'a>
impl<'a> Debug for compio::buf::bumpalo::core_alloc::str::CharIndices<'a>
impl<'a> Debug for compio::buf::bumpalo::core_alloc::str::EscapeDebug<'a>
impl<'a> Debug for compio::buf::bumpalo::core_alloc::str::EscapeDefault<'a>
impl<'a> Debug for compio::buf::bumpalo::core_alloc::str::EscapeUnicode<'a>
impl<'a> Debug for compio::buf::bumpalo::core_alloc::str::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for compio::buf::bumpalo::core_alloc::str::SplitAsciiWhitespace<'a>
impl<'a> Debug for compio::buf::bumpalo::core_alloc::str::SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for core::error::Request<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for ProcThreadAttributeList<'a>
impl<'a> Debug for ProcThreadAttributeListBuilder<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for 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 serde_json::map::Iter<'a>
impl<'a> Debug for serde_json::map::IterMut<'a>
impl<'a> Debug for serde_json::map::Keys<'a>
impl<'a> Debug for serde_json::map::Values<'a>
impl<'a> Debug for serde_json::map::ValuesMut<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for CharIndicesLossyUtf16<'a>
impl<'a> Debug for CharIndicesLossyUtf32<'a>
impl<'a> Debug for widestring::ustr::iter::CharIndicesUtf16<'a>
impl<'a> Debug for widestring::ustr::iter::CharIndicesUtf32<'a>
impl<'a> Debug for widestring::utfstr::iter::CharIndicesUtf16<'a>
impl<'a> Debug for widestring::utfstr::iter::CharIndicesUtf32<'a>
impl<'a> Debug for CodeUnits<'a>
impl<'a> Debug for Attributes<'a>
impl<'a> Debug for BorrowedCertRevocationList<'a>
impl<'a> Debug for BorrowedRevokedCert<'a>
impl<'a> Debug for BroadcastContext<'a>
impl<'a> Debug for BufReadDecoderError<'a>
impl<'a> Debug for ByteClassElements<'a>
impl<'a> Debug for ByteClassIter<'a>
impl<'a> Debug for ByteClassRepresentatives<'a>
impl<'a> Debug for CapturesPatternIter<'a>
impl<'a> Debug for CertRevocationList<'a>
impl<'a> Debug for ClassBytesIter<'a>
impl<'a> Debug for ClassUnicodeIter<'a>
impl<'a> Debug for DebugHaystack<'a>
impl<'a> Debug for DecodeError<'a>
impl<'a> Debug for Display<'a>
impl<'a> Debug for Drain<'a>
impl<'a> Debug for Encoder<'a>
impl<'a> Debug for Entered<'a>
impl<'a> Debug for Event<'a>
impl<'a> Debug for GroupInfoAllNames<'a>
impl<'a> Debug for GroupInfoPatternNames<'a>
impl<'a> Debug for IdsRef<'a>
impl<'a> Debug for Indices<'a>
impl<'a> Debug for MaybeUninitSlice<'a>
impl<'a> Debug for Notified<'a>
impl<'a> Debug for PatternIter<'a>
impl<'a> Debug for PatternSetIter<'a>
impl<'a> Debug for RawPublicKeyEntity<'a>
impl<'a> Debug for RawValues<'a>
impl<'a> Debug for Record<'a>
impl<'a> Debug for RevocationOptions<'a>
impl<'a> Debug for RevocationOptionsBuilder<'a>
impl<'a> Debug for SemaphorePermit<'a>
impl<'a> Debug for SetMatchesIter<'a>
impl<'a> Debug for SetMatchesIter<'a>
impl<'a> Debug for WakerRef<'a>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'h> Debug for OneIter<'a, 'h>
impl<'a, 'h> Debug for OneIter<'a, 'h>
impl<'a, 'h> Debug for OneIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for TwoIter<'a, 'h>
impl<'a, 'h> Debug for TwoIter<'a, 'h>
impl<'a, 'h> Debug for TwoIter<'a, 'h>
impl<'a, A> Debug for core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, C, T> Debug for Stream<'a, C, T>
impl<'a, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
std or alloc only.impl<'a, E> Debug for StrDeserializer<'a, E>
impl<'a, Fut> Debug for Iter<'a, Fut>
impl<'a, Fut> Debug for IterMut<'a, Fut>
impl<'a, Fut> Debug for IterPinMut<'a, Fut>where
Fut: Debug,
impl<'a, Fut> Debug for IterPinRef<'a, Fut>where
Fut: Debug,
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I> Debug for Format<'a, I>
impl<'a, I, A> Debug for compio::buf::bumpalo::core_alloc::collections::vec_deque::Splice<'a, I, A>
impl<'a, I, A> Debug for compio::buf::bumpalo::core_alloc::vec::Splice<'a, I, A>
impl<'a, I, E> Debug for ProcessResults<'a, I, E>
impl<'a, I, F> Debug for FormatWith<'a, I, F>
impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F>
impl<'a, I, F> Debug for TakeWhileRef<'a, I, F>
impl<'a, K, V> Debug for Drain<'a, K, V>
impl<'a, K, V> Debug for Iter<'a, K, V>
impl<'a, K, V> Debug for Iter<'a, K, V>
impl<'a, K, V> Debug for IterMut<'a, K, V>
impl<'a, K, V> Debug for IterMut<'a, K, V>
impl<'a, L> Debug for Okm<'a, L>where
L: Debug + KeyType,
impl<'a, P> Debug for compio::buf::bumpalo::core_alloc::str::MatchIndices<'a, P>
impl<'a, P> Debug for compio::buf::bumpalo::core_alloc::str::Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for compio::buf::bumpalo::core_alloc::str::RSplit<'a, P>
impl<'a, P> Debug for compio::buf::bumpalo::core_alloc::str::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for compio::buf::bumpalo::core_alloc::str::Split<'a, P>
impl<'a, P> Debug for compio::buf::bumpalo::core_alloc::str::SplitInclusive<'a, P>
impl<'a, P> Debug for compio::buf::bumpalo::core_alloc::str::SplitN<'a, P>
impl<'a, P> Debug for compio::buf::bumpalo::core_alloc::str::SplitTerminator<'a, P>
impl<'a, R> Debug for FillBuf<'a, R>
impl<'a, R> Debug for Read<'a, R>
impl<'a, R> Debug for ReadExact<'a, R>
impl<'a, R> Debug for ReadLine<'a, R>
impl<'a, R> Debug for ReadToEnd<'a, R>
impl<'a, R> Debug for ReadToString<'a, R>
impl<'a, R> Debug for ReadUntil<'a, R>
impl<'a, R> Debug for ReadVectored<'a, R>
impl<'a, R> Debug for ReplacerRef<'a, R>
impl<'a, R> Debug for ReplacerRef<'a, R>
impl<'a, R> Debug for SeeKRelative<'a, R>where
R: Debug,
impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T>
impl<'a, R, T> Debug for MappedMutexGuard<'a, R, T>
impl<'a, R, T> Debug for MappedRwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for MappedRwLockWriteGuard<'a, R, T>
impl<'a, R, T> Debug for MutexGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockWriteGuard<'a, R, T>
impl<'a, R, W> Debug for Copy<'a, R, W>
impl<'a, R, W> Debug for CopyBuf<'a, R, W>
impl<'a, R, W> Debug for CopyBufAbortable<'a, R, W>
impl<'a, S> Debug for Seek<'a, S>
impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>
impl<'a, Si, Item> Debug for Close<'a, Si, Item>
impl<'a, Si, Item> Debug for Feed<'a, Si, Item>
impl<'a, Si, Item> Debug for Flush<'a, Si, Item>
impl<'a, Si, Item> Debug for Send<'a, Si, Item>
impl<'a, St> Debug for Iter<'a, St>
impl<'a, St> Debug for IterMut<'a, St>
impl<'a, St> Debug for Next<'a, St>
impl<'a, St> Debug for SelectNextSome<'a, St>
impl<'a, St> Debug for TryNext<'a, St>
impl<'a, Str, CharIndices> Debug for widestring::utfstr::iter::Lines<'a, Str, CharIndices>
impl<'a, T> Debug for compio::ws::tungstenite::http::header::Entry<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for compio::net::ReadHalf<'a, T>where
T: Debug,
impl<'a, T> Debug for compio::net::WriteHalf<'a, T>where
T: Debug,
impl<'a, T> Debug for compio::ws::tungstenite::http::header::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for GetAll<'a, T>where
T: Debug,
impl<'a, T> Debug for compio::ws::tungstenite::http::header::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for compio::ws::tungstenite::http::header::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for compio::ws::tungstenite::http::header::Keys<'a, T>where
T: Debug,
impl<'a, T> Debug for compio::ws::tungstenite::http::header::OccupiedEntry<'a, T>where
T: Debug,
impl<'a, T> Debug for compio::ws::tungstenite::http::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 compio::ws::tungstenite::http::header::Values<'a, T>where
T: Debug,
impl<'a, T> Debug for compio::ws::tungstenite::http::header::ValuesMut<'a, T>where
T: Debug,
impl<'a, T> Debug for compio::buf::bumpalo::core_alloc::collections::btree_set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for compio::buf::bumpalo::core_alloc::slice::Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for compio::buf::bumpalo::core_alloc::slice::ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for compio::buf::bumpalo::core_alloc::slice::ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for compio::buf::bumpalo::core_alloc::slice::ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for compio::buf::bumpalo::core_alloc::slice::RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for compio::buf::bumpalo::core_alloc::slice::RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for compio::buf::bumpalo::core_alloc::slice::RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for compio::buf::bumpalo::core_alloc::slice::RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for compio::buf::bumpalo::core_alloc::slice::Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for widestring::ustring::iter::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for Choose<'a, T>where
T: Debug,
impl<'a, T> Debug for Cancellation<'a, T>where
T: Debug,
impl<'a, T> Debug for DerIterator<'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 Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for Iter<'a, T>
impl<'a, T> Debug for Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for MappedMutexGuard<'a, T>
impl<'a, T> Debug for MutexGuard<'a, T>
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for RecvFut<'a, T>
impl<'a, T> Debug for RecvStream<'a, T>
impl<'a, T> Debug for Ref<'a, T>
impl<'a, T> Debug for Ref<'a, T>where
T: Debug,
impl<'a, T> Debug for RwLockMappedWriteGuard<'a, T>
impl<'a, T> Debug for RwLockReadGuard<'a, T>
impl<'a, T> Debug for RwLockWriteGuard<'a, T>
impl<'a, T> Debug for SendFut<'a, T>
impl<'a, T> Debug for SendSink<'a, T>
impl<'a, T> Debug for SpinMutexGuard<'a, T>
impl<'a, T> Debug for TryIter<'a, T>
impl<'a, T> Debug for VacantEntry<'a, T>where
T: Debug,
impl<'a, T> Debug for ValuesRef<'a, T>where
T: Debug,
impl<'a, T, A> Debug for compio::buf::bumpalo::core_alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, F> Debug for PoolGuard<'a, T, F>
impl<'a, T, I> Debug for Ptr<'a, T, I>where
T: 'a + ?Sized,
I: Invariants,
impl<'a, T, P> Debug for compio::buf::bumpalo::core_alloc::slice::ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for compio::buf::bumpalo::core_alloc::slice::ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, W> Debug for Close<'a, W>
impl<'a, W> Debug for Flush<'a, W>
impl<'a, W> Debug for Write<'a, W>
impl<'a, W> Debug for WriteAll<'a, W>
impl<'a, W> Debug for WriteVectored<'a, W>
impl<'a, const MIN_ALIGN: usize> Debug for ChunkIter<'a, MIN_ALIGN>
impl<'a, const MIN_ALIGN: usize> Debug for ChunkRawIter<'a, MIN_ALIGN>
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'c, 'h> Debug for SubCaptureMatches<'c, 'h>
impl<'c, 'h> Debug for SubCaptureMatches<'c, 'h>
impl<'c, 'i, Data> Debug for UnbufferedStatus<'c, 'i, Data>where
Data: Debug,
impl<'ch> Debug for Bytes<'ch>
impl<'ch> Debug for CharIndices<'ch>
impl<'ch> Debug for Chars<'ch>
impl<'ch> Debug for EncodeUtf16<'ch>
impl<'ch> Debug for Lines<'ch>
impl<'ch> Debug for SplitAsciiWhitespace<'ch>
impl<'ch> Debug for SplitWhitespace<'ch>
impl<'ch, P> Debug for MatchIndices<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for Matches<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for Split<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for SplitInclusive<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for SplitTerminator<'ch, P>where
P: Debug + Pattern,
impl<'data, T> Debug for Chunks<'data, T>where
T: Debug,
impl<'data, T> Debug for ChunksExact<'data, T>where
T: Debug,
impl<'data, T> Debug for ChunksExactMut<'data, T>where
T: Debug,
impl<'data, T> Debug for ChunksMut<'data, T>where
T: Debug,
impl<'data, T> Debug for Drain<'data, T>
impl<'data, T> Debug for Iter<'data, T>where
T: Debug,
impl<'data, T> Debug for IterMut<'data, T>where
T: Debug,
impl<'data, T> Debug for RChunks<'data, T>where
T: Debug,
impl<'data, T> Debug for RChunksExact<'data, T>where
T: Debug,
impl<'data, T> Debug for RChunksExactMut<'data, T>
impl<'data, T> Debug for RChunksMut<'data, T>where
T: Debug,
impl<'data, T> Debug for Windows<'data, T>where
T: Debug,
impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>
impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>
impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
impl<'h> Debug for Captures<'h>
impl<'h> Debug for Captures<'h>
impl<'h> Debug for Input<'h>
impl<'h> Debug for Match<'h>
impl<'h> Debug for Match<'h>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'h> Debug for Searcher<'h>
impl<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'h, F> Debug for CapturesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for HalfMatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for MatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for TryCapturesIter<'h, F>
alloc only.impl<'h, F> Debug for TryHalfMatchesIter<'h, F>
impl<'h, F> Debug for TryMatchesIter<'h, F>
impl<'headers, 'buf> Debug for Request<'headers, 'buf>
impl<'headers, 'buf> Debug for Response<'headers, 'buf>
impl<'n> Debug for Finder<'n>
impl<'n> Debug for FinderRev<'n>
impl<'name, 'bufs, 'control> Debug for MsgHdr<'name, 'bufs, 'control>
impl<'name, 'bufs, 'control> Debug for MsgHdrMut<'name, 'bufs, 'control>
impl<'r> Debug for CaptureNames<'r>
impl<'r> Debug for CaptureNames<'r>
impl<'r, 'c, 'h> Debug for CapturesMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for FindMatches<'r, 'c, 'h>
impl<'r, 'h> Debug for CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for CapturesMatches<'r, 'h>
impl<'r, 'h> Debug for FindMatches<'r, 'h>
impl<'r, 'h> Debug for Matches<'r, 'h>
impl<'r, 'h> Debug for Matches<'r, 'h>
impl<'r, 'h> Debug for Split<'r, 'h>
impl<'r, 'h> Debug for Split<'r, 'h>
impl<'r, 'h> Debug for Split<'r, 'h>
impl<'r, 'h> Debug for SplitN<'r, 'h>
impl<'r, 'h> Debug for SplitN<'r, 'h>
impl<'r, 'h> Debug for SplitN<'r, 'h>
impl<'r, R> Debug for UnwrapMut<'r, R>
impl<'rwlock, T> Debug for RwLockReadGuard<'rwlock, T>
impl<'rwlock, T, R> Debug for RwLockUpgradableGuard<'rwlock, T, R>
impl<'rwlock, T, R> Debug for RwLockWriteGuard<'rwlock, T, R>
impl<'s> Debug for NoExpand<'s>
impl<'s> Debug for NoExpand<'s>
impl<'s> Debug for ParsedArg<'s>
impl<'s> Debug for ShortFlags<'s>
impl<'s, T> Debug for SliceVec<'s, T>where
T: Debug,
impl<'scope> Debug for Scope<'scope>
impl<'scope> Debug for ScopeFifo<'scope>
impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env>
impl<'scope, T> Debug for std::thread::scoped::ScopedJoinHandle<'scope, T>
impl<A> Debug for core::iter::sources::repeat::Repeat<A>where
A: Debug,
impl<A> Debug for core::iter::sources::repeat_n::RepeatN<A>where
A: Debug,
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for OptionFlatten<A>where
A: Debug,
impl<A> Debug for RangeFromIter<A>where
A: Debug,
impl<A> Debug for RangeInclusiveIter<A>where
A: Debug,
impl<A> Debug for RangeIter<A>where
A: Debug,
impl<A> Debug for EnumAccessDeserializer<A>where
A: Debug,
impl<A> Debug for MapAccessDeserializer<A>where
A: Debug,
impl<A> Debug for SeqAccessDeserializer<A>where
A: Debug,
impl<A> Debug for Aad<A>where
A: Debug,
impl<A> Debug for ArrayVec<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A> Debug for ArrayVecIterator<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A> Debug for IntoIter<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A> Debug for RepeatN<A>where
A: Debug,
impl<A> Debug for SmallVec<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A> Debug for TinyVec<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A> Debug for TinyVecIterator<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for core::iter::adapters::zip::Zip<A, B>
impl<A, B> Debug for Chain<A, B>
impl<A, B> Debug for Either<A, B>
impl<A, B> Debug for EitherOrBoth<A, B>
impl<A, B> Debug for Select<A, B>
impl<A, B> Debug for TrySelect<A, B>
impl<A, B> Debug for Zip<A, B>
impl<A, B> Debug for ZipEq<A, B>
impl<A, S, V> Debug for ConvertError<A, S, V>
impl<B> Debug for compio::quic::h3::proto::frame::Frame<B>where
B: Buf,
impl<B> Debug for Cow<'_, B>
impl<B> Debug for compio::buf::bytes::buf::Reader<B>where
B: Debug,
impl<B> Debug for Writer<B>where
B: Debug,
impl<B> Debug for std::io::Lines<B>where
B: Debug,
impl<B> Debug for std::io::Split<B>where
B: Debug,
impl<B> Debug for Datagram<B>where
B: Debug,
impl<B> Debug for EncodedDatagram<B>
impl<B> Debug for PublicKeyComponents<B>where
B: Debug,
impl<B> Debug for UnparsedPublicKey<B>
impl<B> Debug for UnparsedPublicKey<B>
impl<B, C> Debug for ControlFlow<B, C>
impl<B, T> Debug for AlignAs<B, T>
impl<BlockSize, Kind> Debug for BlockBuffer<BlockSize, Kind>where
BlockSize: Debug + ArrayLength<u8> + IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>,
Kind: Debug + BufferKind,
<BlockSize as IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>>::Output: NonZero,
impl<C> Debug for widestring::error::NulError<C>where
C: Debug,
impl<C> Debug for ContainsNul<C>where
C: Debug,
impl<C, T> Debug for StreamOwned<C, T>
impl<C, V> Debug for NestedValue<C, V>
impl<D, F, T, S> Debug for rand::distr::distribution::Map<D, F, T, S>
impl<D, R, T> Debug for rand::distr::distribution::Iter<D, R, T>
impl<D, S> Debug for Split<D, S>where
D: Debug,
impl<Data> Debug for ConnectionState<'_, '_, Data>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for AllocOrInitError<E>where
E: Debug,
impl<E> Debug for Report<E>
impl<E> Debug for BoolDeserializer<E>
impl<E> Debug for CharDeserializer<E>
impl<E> Debug for F32Deserializer<E>
impl<E> Debug for F64Deserializer<E>
impl<E> Debug for I8Deserializer<E>
impl<E> Debug for I16Deserializer<E>
impl<E> Debug for I32Deserializer<E>
impl<E> Debug for I64Deserializer<E>
impl<E> Debug for I128Deserializer<E>
impl<E> Debug for IsizeDeserializer<E>
impl<E> Debug for StringDeserializer<E>
std or alloc only.impl<E> Debug for U8Deserializer<E>
impl<E> Debug for U16Deserializer<E>
impl<E> Debug for U32Deserializer<E>
impl<E> Debug for U64Deserializer<E>
impl<E> Debug for U128Deserializer<E>
impl<E> Debug for UnitDeserializer<E>
impl<E> Debug for UsizeDeserializer<E>
impl<E> Debug for DrawingAreaErrorKind<E>
impl<E> Debug for DrawingErrorKind<E>
impl<E> Debug for EnumValueParser<E>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for core::future::poll_fn::PollFn<F>
impl<F> Debug for core::iter::sources::from_fn::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for core::iter::sources::repeat_with::RepeatWith<F>
impl<F> Debug for compio::buf::bumpalo::core_alloc::fmt::FromFn<F>
impl<F> Debug for Error<F>where
F: ErrorFormatter,
impl<F> Debug for Fwhere
F: FnPtr,
impl<F> Debug for Flatten<F>
impl<F> Debug for FlattenStream<F>
impl<F> Debug for IntoStream<F>where
Once<F>: Debug,
impl<F> Debug for JoinAll<F>
impl<F> Debug for Lazy<F>where
F: Debug,
impl<F> Debug for 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>
impl<F> Debug for WithInfo<F>where
F: Debug,
impl<Fut1, Fut2> Debug for Join<Fut1, Fut2>
impl<Fut1, Fut2> Debug for TryFlatten<Fut1, Fut2>where
TryFlatten<Fut1, Fut2>: Debug,
impl<Fut1, Fut2> Debug for TryJoin<Fut1, Fut2>
impl<Fut1, Fut2, F> Debug for AndThen<Fut1, Fut2, F>where
TryFlatten<MapOk<Fut1, F>, Fut2>: Debug,
impl<Fut1, Fut2, F> Debug for OrElse<Fut1, Fut2, F>where
TryFlattenErr<MapErr<Fut1, F>, Fut2>: Debug,
impl<Fut1, Fut2, F> Debug for Then<Fut1, Fut2, F>where
Flatten<Map<Fut1, F>, Fut2>: Debug,
impl<Fut1, Fut2, Fut3> Debug for Join3<Fut1, Fut2, Fut3>
impl<Fut1, Fut2, Fut3> Debug for TryJoin3<Fut1, Fut2, Fut3>
impl<Fut1, Fut2, Fut3, Fut4> Debug for Join4<Fut1, Fut2, Fut3, Fut4>
impl<Fut1, Fut2, Fut3, Fut4> Debug for TryJoin4<Fut1, Fut2, Fut3, Fut4>where
Fut1: TryFuture + Debug,
<Fut1 as TryFuture>::Ok: Debug,
<Fut1 as TryFuture>::Error: Debug,
Fut2: TryFuture + Debug,
<Fut2 as TryFuture>::Ok: Debug,
<Fut2 as TryFuture>::Error: Debug,
Fut3: TryFuture + Debug,
<Fut3 as TryFuture>::Ok: Debug,
<Fut3 as TryFuture>::Error: Debug,
Fut4: TryFuture + Debug,
<Fut4 as TryFuture>::Ok: Debug,
<Fut4 as TryFuture>::Error: Debug,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Debug for Join5<Fut1, Fut2, Fut3, Fut4, Fut5>
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Debug for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5>where
Fut1: TryFuture + Debug,
<Fut1 as TryFuture>::Ok: Debug,
<Fut1 as TryFuture>::Error: Debug,
Fut2: TryFuture + Debug,
<Fut2 as TryFuture>::Ok: Debug,
<Fut2 as TryFuture>::Error: Debug,
Fut3: TryFuture + Debug,
<Fut3 as TryFuture>::Ok: Debug,
<Fut3 as TryFuture>::Error: Debug,
Fut4: TryFuture + Debug,
<Fut4 as TryFuture>::Ok: Debug,
<Fut4 as TryFuture>::Error: Debug,
Fut5: TryFuture + Debug,
<Fut5 as TryFuture>::Ok: Debug,
<Fut5 as TryFuture>::Error: Debug,
impl<Fut> Debug for CatchUnwind<Fut>where
Fut: Debug,
impl<Fut> Debug for Fuse<Fut>where
Fut: Debug,
impl<Fut> Debug for FuturesOrdered<Fut>where
Fut: Future,
impl<Fut> Debug for FuturesUnordered<Fut>
impl<Fut> Debug for IntoFuture<Fut>where
Fut: Debug,
impl<Fut> Debug for IntoIter<Fut>
impl<Fut> Debug for MaybeDone<Fut>
impl<Fut> Debug for NeverError<Fut>where
Map<Fut, OkFn<Infallible>>: Debug,
impl<Fut> Debug for Once<Fut>where
Fut: Debug,
impl<Fut> Debug for SelectAll<Fut>where
Fut: Debug,
impl<Fut> Debug for SelectOk<Fut>where
Fut: Debug,
impl<Fut> Debug for TryFlattenStream<Fut>where
TryFlatten<Fut, <Fut as TryFuture>::Ok>: Debug,
Fut: TryFuture,
impl<Fut> Debug for TryMaybeDone<Fut>
impl<Fut> Debug for UnitError<Fut>
impl<Fut, E> Debug for ErrInto<Fut, E>where
MapErr<Fut, IntoFn<E>>: Debug,
impl<Fut, E> Debug for OkInto<Fut, E>where
MapOk<Fut, IntoFn<E>>: Debug,
impl<Fut, F> Debug for Inspect<Fut, F>where
Map<Fut, InspectFn<F>>: Debug,
impl<Fut, F> Debug for InspectErr<Fut, F>where
Inspect<IntoFuture<Fut>, InspectErrFn<F>>: Debug,
impl<Fut, F> Debug for InspectOk<Fut, F>where
Inspect<IntoFuture<Fut>, InspectOkFn<F>>: Debug,
impl<Fut, F> Debug for Map<Fut, F>where
Map<Fut, F>: Debug,
impl<Fut, F> Debug for MapErr<Fut, F>where
Map<IntoFuture<Fut>, MapErrFn<F>>: Debug,
impl<Fut, F> Debug for MapOk<Fut, F>where
Map<IntoFuture<Fut>, MapOkFn<F>>: Debug,
impl<Fut, F> Debug for UnwrapOrElse<Fut, F>where
Map<IntoFuture<Fut>, UnwrapOrElseFn<F>>: Debug,
impl<Fut, F, G> Debug for MapOkOrElse<Fut, F, G>where
Map<IntoFuture<Fut>, ChainFn<MapOkFn<F>, ChainFn<MapErrFn<G>, MergeResultFn>>>: Debug,
impl<Fut, Si> Debug for FlattenSink<Fut, Si>where
TryFlatten<Fut, Si>: Debug,
impl<Fut, T> Debug for MapInto<Fut, T>where
Map<Fut, IntoFn<T>>: Debug,
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<H> Debug for DatagramReader<H>where
H: Debug + RecvDatagram,
impl<H, B> Debug for DatagramSender<H, B>
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for core::char::decode::DecodeUtf16<I>
impl<I> Debug for core::iter::adapters::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::copied::Copied<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::cycle::Cycle<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::fuse::Fuse<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::intersperse::Intersperse<I>
impl<I> Debug for core::iter::adapters::peekable::Peekable<I>
impl<I> Debug for core::iter::adapters::skip::Skip<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<I> Debug for widestring::iter::DecodeUtf16<I>
impl<I> Debug for DecodeUtf16Lossy<I>
impl<I> Debug for DecodeUtf32<I>
impl<I> Debug for DecodeUtf32Lossy<I>
impl<I> Debug for EncodeUtf8<I>
impl<I> Debug for widestring::iter::EncodeUtf16<I>
impl<I> Debug for EncodeUtf32<I>
impl<I> Debug for widestring::utfstr::iter::EscapeDebug<I>where
I: Debug,
impl<I> Debug for widestring::utfstr::iter::EscapeDefault<I>where
I: Debug,
impl<I> Debug for widestring::utfstr::iter::EscapeUnicode<I>where
I: Debug,
impl<I> Debug for Chunks<I>where
I: Debug,
impl<I> Debug for Cloned<I>where
I: Debug,
impl<I> Debug for Combinations<I>
impl<I> Debug for CombinationsWithReplacement<I>
impl<I> Debug for Copied<I>where
I: Debug,
impl<I> Debug for Enumerate<I>where
I: Debug,
impl<I> Debug for ExactlyOneError<I>
impl<I> Debug for ExponentialBlocks<I>where
I: Debug,
impl<I> Debug for Flatten<I>where
I: Debug,
impl<I> Debug for FlattenIter<I>where
I: Debug,
impl<I> Debug for GroupingMap<I>where
I: Debug,
impl<I> Debug for Intersperse<I>
impl<I> Debug for Iter<I>where
I: Debug,
impl<I> Debug for MaxLen<I>where
I: Debug,
impl<I> Debug for MinLen<I>where
I: Debug,
impl<I> Debug for MultiPeek<I>
impl<I> Debug for MultiProduct<I>
impl<I> Debug for PanicFuse<I>where
I: Debug,
impl<I> Debug for PeekNth<I>
impl<I> Debug for Permutations<I>
impl<I> Debug for Powerset<I>
impl<I> Debug for PutBack<I>
impl<I> Debug for PutBackN<I>
impl<I> Debug for RcIter<I>where
I: Debug,
impl<I> Debug for Rev<I>where
I: Debug,
impl<I> Debug for Skip<I>where
I: Debug,
impl<I> Debug for SkipAny<I>where
I: Debug,
impl<I> Debug for StepBy<I>where
I: Debug,
impl<I> Debug for Take<I>where
I: Debug,
impl<I> Debug for TakeAny<I>where
I: Debug,
impl<I> Debug for Tee<I>
impl<I> Debug for UniformBlocks<I>where
I: Debug,
impl<I> Debug for Unique<I>
impl<I> Debug for WhileSome<I>where
I: Debug,
impl<I> Debug for WhileSome<I>where
I: Debug,
impl<I> Debug for WithPosition<I>
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, ElemF> Debug for IntersperseWith<I, ElemF>
impl<I, F> Debug for core::iter::adapters::filter_map::FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::inspect::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::map::Map<I, F>where
I: Debug,
impl<I, F> Debug for Batching<I, F>where
I: Debug,
impl<I, F> Debug for FilterMapOk<I, F>where
I: Debug,
impl<I, F> Debug for FilterOk<I, F>where
I: Debug,
impl<I, F> Debug for FlatMap<I, F>where
I: Debug,
impl<I, F> Debug for FlatMapIter<I, F>where
I: Debug,
impl<I, F> Debug for Inspect<I, F>where
I: Debug,
impl<I, F> Debug for KMergeBy<I, F>
impl<I, F> Debug for Map<I, F>where
I: Debug,
impl<I, F> Debug for PadUsing<I, F>where
I: Debug,
impl<I, F> Debug for Positions<I, F>where
I: Debug,
impl<I, F> Debug for TakeWhileInclusive<I, F>
impl<I, F> Debug for Update<I, F>where
I: Debug,
impl<I, F> Debug for Update<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for core::iter::adapters::intersperse::IntersperseWith<I, G>
impl<I, ID, F> Debug for Fold<I, ID, F>where
I: Debug,
impl<I, ID, F> Debug for FoldChunks<I, ID, F>where
I: Debug,
impl<I, INIT, F> Debug for MapInit<I, INIT, F>where
I: Debug,
impl<I, J> Debug for ConsTuples<I, J>
impl<I, J> Debug for Diff<I, J>
impl<I, J> Debug for Interleave<I, J>
impl<I, J> Debug for Interleave<I, J>
impl<I, J> Debug for InterleaveShortest<I, J>
impl<I, J> Debug for InterleaveShortest<I, J>
impl<I, J> Debug for Product<I, J>
impl<I, J> Debug for ZipEq<I, J>
impl<I, J, F> Debug for MergeBy<I, J, F>
impl<I, P> Debug for core::iter::adapters::filter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for core::iter::adapters::skip_while::SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for core::iter::adapters::take_while::TakeWhile<I, P>where
I: Debug,
impl<I, P> Debug for Filter<I, P>where
I: Debug,
impl<I, P> Debug for FilterEntry<I, P>
impl<I, P> Debug for FilterMap<I, P>where
I: Debug,
impl<I, P> Debug for Positions<I, P>where
I: Debug,
impl<I, P> Debug for SkipAnyWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeAnyWhile<I, P>where
I: Debug,
impl<I, St, F> Debug for core::iter::adapters::scan::Scan<I, St, F>
impl<I, T> Debug for CircularTupleWindows<I, T>
impl<I, T> Debug for TupleCombinations<I, T>
impl<I, T> Debug for TupleWindows<I, T>
impl<I, T> Debug for Tuples<I, T>
impl<I, T, E> Debug for FlattenOk<I, T, E>where
I: Iterator<Item = Result<T, E>> + Debug,
T: IntoIterator,
<T as IntoIterator>::IntoIter: Debug,
impl<I, T, F> Debug for MapWith<I, T, F>
impl<I, U> Debug for core::iter::adapters::flatten::Flatten<I>
impl<I, U, F> Debug for core::iter::adapters::flatten::FlatMap<I, U, F>
impl<I, U, F> Debug for FoldChunksWith<I, U, F>
impl<I, U, F> Debug for FoldWith<I, U, F>
impl<I, U, F> Debug for TryFoldWith<I, U, F>
impl<I, V, F> Debug for UniqueBy<I, V, F>
impl<I, const N: usize> Debug for ArrayChunks<I, N>
impl<IO> Debug for TlsStream<IO>where
IO: Debug,
impl<IO> Debug for TlsStream<IO>where
IO: Debug,
impl<Idx> Debug for Clamp<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<Iter> Debug for IterBridge<Iter>where
Iter: Debug,
impl<K> Debug for compio::buf::bumpalo::core_alloc::collections::btree_set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, A> Debug for std::collections::hash::set::Drain<'_, K, A>
impl<K, A> Debug for std::collections::hash::set::IntoIter<K, A>
impl<K, F, A> Debug for std::collections::hash::set::ExtractIf<'_, K, F, A>
impl<K, R> Debug for PushEntry<K, R>
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::Cursor<'_, K, V>
impl<K, V> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::Iter<'_, K, V>
impl<K, V> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::IterMut<'_, K, V>
impl<K, V> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::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 IntoIter<K, V>
impl<K, V> Debug for IntoIter<K, V>
impl<K, V, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::Entry<'_, K, V, A>
impl<K, V, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::IntoIter<K, V, A>
impl<K, V, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::IntoKeys<K, V, A>
impl<K, V, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::IntoValues<K, V, A>
impl<K, V, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::Drain<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::IntoIter<K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::IntoValues<K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::VacantEntry<'_, K, V, A>
impl<K, V, F, A> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F, A>
impl<K, V, R, F, A> Debug for compio::buf::bumpalo::core_alloc::collections::btree_map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S, A> Debug for HashMap<K, V, S, A>
impl<L, R> Debug for either::Either<L, R>
impl<L, R> Debug for IterEither<L, R>
impl<M> Debug for Builder<M>where
M: Debug,
impl<M> Debug for Runnable<M>where
M: Debug,
impl<N> Debug for OpeningKey<N>where
N: NonceSequence,
impl<N> Debug for SealingKey<N>where
N: NonceSequence,
impl<O> Debug for F32<O>where
O: ByteOrder,
impl<O> Debug for F64<O>where
O: ByteOrder,
impl<O> Debug for I16<O>where
O: ByteOrder,
impl<O> Debug for I32<O>where
O: ByteOrder,
impl<O> Debug for I64<O>where
O: ByteOrder,
impl<O> Debug for I128<O>where
O: ByteOrder,
impl<O> Debug for Isize<O>where
O: ByteOrder,
impl<O> Debug for U16<O>where
O: ByteOrder,
impl<O> Debug for U32<O>where
O: ByteOrder,
impl<O> Debug for U64<O>where
O: ByteOrder,
impl<O> Debug for U128<O>where
O: ByteOrder,
impl<O> Debug for Usize<O>where
O: ByteOrder,
impl<Obj, Stream> Debug for RoundResult<Obj, Stream>
impl<Obj, Stream> Debug for StageResult<Obj, Stream>
impl<P> Debug for MaybeDangling<P>
impl<P> Debug for PaletteColor<P>where
P: Debug + Palette,
impl<P, F> Debug for MapValueParser<P, F>
impl<P, F> Debug for TryMapValueParser<P, F>
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<Public, Private> Debug for KeyPairComponents<Public, Private>where
PublicKeyComponents<Public>: Debug,
impl<R> Debug for compio::io::BufReader<R>where
R: Debug,
impl<R> Debug for compio::io::util::Take<R>where
R: Debug,
impl<R> Debug for std::io::buffered::bufreader::BufReader<R>
impl<R> Debug for std::io::Bytes<R>where
R: Debug,
impl<R> Debug for BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for RngReadAdapter<'_, R>where
R: TryRngCore + ?Sized,
std only.impl<R> Debug for UnwrapErr<R>where
R: Debug + TryRngCore,
impl<R> Debug for BufReader<R>where
R: Debug,
impl<R> Debug for Lines<R>where
R: Debug,
impl<R> Debug for Take<R>where
R: Debug,
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>
impl<R, T> Debug for Mutex<R, T>
impl<R, T> Debug for RwLock<R, T>
impl<Role> Debug for compio::ws::tungstenite::HandshakeError<Role>where
Role: HandshakeRole,
impl<Role> Debug for MidHandshake<Role>
impl<S> Debug for compio::tls::native_tls::HandshakeError<S>where
S: Debug,
impl<S> Debug for compio::ws::tungstenite::stream::MaybeTlsStream<S>
impl<S> Debug for AsyncStream<S>where
S: Debug,
impl<S> Debug for SyncStream<S>where
S: Debug,
impl<S> Debug for Attacher<S>where
S: Debug,
impl<S> Debug for compio::tls::native_tls::MidHandshakeTlsStream<S>where
S: Debug,
impl<S> Debug for compio::tls::native_tls::TlsStream<S>where
S: Debug,
impl<S> Debug for compio::tls::MaybeTlsStream<S>where
S: Debug,
impl<S> Debug for compio::tls::TlsStream<S>where
S: Debug,
impl<S> Debug for WebSocketStream<S>where
S: Debug,
impl<S> Debug for ClientHandshake<S>where
S: Debug,
impl<S> Debug for HandshakeError<S>where
S: Debug,
impl<S> Debug for MidHandshakeTlsStream<S>where
S: Debug,
impl<S> Debug for PollImmediate<S>where
S: Debug,
impl<S> Debug for SplitStream<S>where
S: Debug,
impl<S> Debug for ThreadPoolBuilder<S>
impl<S> Debug for TlsStream<S>where
S: Debug,
impl<S, B> Debug for BufRecvStream<S, B>
impl<S, B> Debug for WalkTree<S, B>
impl<S, B> Debug for WalkTreePostfix<S, B>
impl<S, B> Debug for WalkTreePrefix<S, B>
impl<S, C> Debug for ServerHandshake<S, C>
impl<S, Item> Debug for SplitSink<S, Item>
impl<Si1, Si2> Debug for Fanout<Si1, Si2>
impl<Si, F> Debug for SinkMapErr<Si, F>
impl<Si, Item> Debug for Buffer<Si, Item>
impl<Si, Item, E> Debug for SinkErrInto<Si, Item, E>
impl<Si, Item, U, Fut, F> Debug for With<Si, Item, U, Fut, F>
impl<Si, Item, U, St, F> Debug for WithFlatMap<Si, Item, U, St, F>
impl<Si, St> Debug for SendAll<'_, Si, St>
impl<Side, State> Debug for ConfigBuilder<Side, State>where
Side: ConfigSide,
State: Debug,
impl<Src, Dst> Debug for AlignmentError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for SizeError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for ValidityError<Src, Dst>where
Dst: TryFromBytes + ?Sized,
impl<St1, St2> Debug for Chain<St1, St2>
impl<St1, St2> Debug for Select<St1, St2>
impl<St1, St2> Debug for Zip<St1, St2>
impl<St1, St2, Clos, State> Debug for SelectWithStrategy<St1, St2, Clos, State>
impl<St> Debug for BufferUnordered<St>where
St: Stream + Debug,
impl<St> Debug for Buffered<St>
impl<St> Debug for CatchUnwind<St>where
St: Debug,
impl<St> Debug for Chunks<St>
impl<St> Debug for Concat<St>
impl<St> Debug for Count<St>where
St: Debug,
impl<St> Debug for Cycle<St>where
St: Debug,
impl<St> Debug for Enumerate<St>where
St: Debug,
impl<St> Debug for Flatten<St>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>
impl<St> Debug for IntoIter<St>
impl<St> Debug for IntoStream<St>where
St: Debug,
impl<St> Debug for Peek<'_, St>
impl<St> Debug for PeekMut<'_, St>
impl<St> Debug for Peekable<St>
impl<St> Debug for ReadyChunks<St>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>
impl<St> Debug for TryBuffered<St>
impl<St> Debug for TryChunks<St>
impl<St> Debug for TryConcat<St>
impl<St> Debug for TryFlatten<St>
impl<St> Debug for TryFlattenUnordered<St>
impl<St> Debug for TryReadyChunks<St>where
St: Debug + TryStream,
impl<St, C> Debug for Collect<St, C>
impl<St, C> Debug for TryCollect<St, C>
impl<St, E> Debug for ErrInto<St, E>where
MapErr<St, IntoFn<E>>: Debug,
impl<St, F> Debug for Inspect<St, F>where
Map<St, InspectFn<F>>: Debug,
impl<St, F> Debug for InspectErr<St, F>where
Inspect<IntoStream<St>, InspectErrFn<F>>: Debug,
impl<St, F> Debug for InspectOk<St, F>where
Inspect<IntoStream<St>, InspectOkFn<F>>: Debug,
impl<St, F> Debug for Iterate<St, F>where
St: Debug,
impl<St, F> Debug for Map<St, F>where
St: Debug,
impl<St, F> Debug for MapErr<St, F>where
Map<IntoStream<St>, MapErrFn<F>>: Debug,
impl<St, F> Debug for MapOk<St, F>where
Map<IntoStream<St>, MapOkFn<F>>: Debug,
impl<St, F> Debug for NextIf<'_, St, F>
impl<St, F> Debug for Unfold<St, F>where
St: Debug,
impl<St, FromA, FromB> Debug for Unzip<St, FromA, FromB>
impl<St, Fut> Debug for TakeUntil<St, Fut>
impl<St, Fut, F> Debug for All<St, Fut, F>
impl<St, Fut, F> Debug for AndThen<St, Fut, F>
impl<St, Fut, F> Debug for Any<St, Fut, F>
impl<St, Fut, F> Debug for Filter<St, Fut, F>
impl<St, Fut, F> Debug for FilterMap<St, Fut, F>
impl<St, Fut, F> Debug for ForEach<St, Fut, F>
impl<St, Fut, F> Debug for ForEachConcurrent<St, Fut, F>
impl<St, Fut, F> Debug for OrElse<St, Fut, F>
impl<St, Fut, F> Debug for SkipWhile<St, Fut, F>
impl<St, Fut, F> Debug for TakeWhile<St, Fut, F>
impl<St, Fut, F> Debug for Then<St, Fut, F>
impl<St, Fut, F> Debug for TryAll<St, Fut, F>
impl<St, Fut, F> Debug for TryAny<St, Fut, F>
impl<St, Fut, F> Debug for TryFilter<St, Fut, F>
impl<St, Fut, F> Debug for TryFilterMap<St, Fut, F>
impl<St, Fut, F> Debug for TryForEach<St, Fut, F>
impl<St, Fut, F> Debug for TryForEachConcurrent<St, Fut, F>
impl<St, Fut, F> Debug for TrySkipWhile<St, Fut, F>
impl<St, Fut, F> Debug for TryTakeWhile<St, Fut, F>
impl<St, Fut, T, F> Debug for Fold<St, Fut, T, F>
impl<St, Fut, T, F> Debug for TryFold<St, Fut, T, F>
impl<St, S, Fut, F> Debug for Scan<St, S, Fut, F>
impl<St, Si> Debug for Forward<St, Si>where
Forward<St, Si, <St as TryStream>::Ok>: Debug,
St: TryStream,
impl<St, T> Debug for NextIfEq<'_, St, T>
impl<St, U, F> Debug for FlatMap<St, U, F>where
Flatten<Map<St, F>, U>: Debug,
impl<St, U, F> Debug for FlatMapUnordered<St, U, F>
impl<Stream> Debug for HandshakeMachine<Stream>where
Stream: Debug,
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 Poll<T>where
T: Debug,
impl<T> Debug for std::sync::mpmc::error::SendTimeoutError<T>
impl<T> Debug for std::sync::mpsc::TrySendError<T>
impl<T> Debug for std::sync::oneshot::RecvTimeoutError<T>
impl<T> Debug for std::sync::oneshot::TryRecvError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.
impl<T> Debug for DispatchError<T>
impl<T> Debug for compio::driver::Key<T>
impl<T> Debug for AsyncFd<T>
impl<T> Debug for compio::io::util::split::ReadHalf<T>where
T: Debug,
impl<T> Debug for compio::io::util::split::Split<T>where
T: Debug,
impl<T> Debug for compio::io::util::split::WriteHalf<T>where
T: Debug,
impl<T> Debug for OwnedReadHalf<T>where
T: Debug,
impl<T> Debug for OwnedWriteHalf<T>where
T: Debug,
impl<T> Debug for PollFd<T>
impl<T> Debug for compio::net::ReuniteError<T>where
T: Debug,
impl<T> Debug for ClientBuilder<T>where
T: Debug,
impl<T> Debug for ServerBuilder<T>where
T: Debug,
impl<T> Debug for compio::tls::rustls::lock::Mutex<T>where
T: Debug,
impl<T> Debug for compio::tls::rustls::lock::MutexGuard<'_, T>
impl<T> Debug for compio::ws::tungstenite::http::header::IntoIter<T>where
T: Debug,
impl<T> Debug for HeaderMap<T>where
T: Debug,
impl<T> Debug for compio::ws::tungstenite::http::Request<T>where
T: Debug,
impl<T> Debug for compio::ws::tungstenite::http::Response<T>where
T: Debug,
impl<T> Debug for Port<T>where
T: Debug,
impl<T> Debug for compio::buf::arrayvec::CapacityError<T>
impl<T> Debug for compio::buf::bytes::buf::IntoIter<T>where
T: Debug,
impl<T> Debug for Limit<T>where
T: Debug,
impl<T> Debug for compio::buf::bytes::buf::Take<T>where
T: Debug,
impl<T> Debug for compio::buf::Slice<T>where
T: Debug,
impl<T> Debug for Uninit<T>where
T: Debug,
impl<T> Debug for ThinBox<T>
impl<T> Debug for compio::buf::bumpalo::core_alloc::collections::binary_heap::Iter<'_, T>where
T: Debug,
impl<T> Debug for compio::buf::bumpalo::core_alloc::collections::btree_set::Iter<'_, T>where
T: Debug,
impl<T> Debug for compio::buf::bumpalo::core_alloc::collections::btree_set::SymmetricDifference<'_, T>where
T: Debug,
impl<T> Debug for compio::buf::bumpalo::core_alloc::collections::btree_set::Union<'_, T>where
T: Debug,
impl<T> Debug for compio::buf::bumpalo::core_alloc::collections::linked_list::Iter<'_, T>where
T: Debug,
impl<T> Debug for compio::buf::bumpalo::core_alloc::collections::linked_list::IterMut<'_, T>where
T: Debug,
impl<T> Debug for compio::buf::bumpalo::core_alloc::collections::vec_deque::Iter<'_, T>where
T: Debug,
impl<T> Debug for compio::buf::bumpalo::core_alloc::collections::vec_deque::IterMut<'_, T>where
T: Debug,
impl<T> Debug for compio::buf::bumpalo::core_alloc::slice::Iter<'_, T>where
T: Debug,
impl<T> Debug for compio::buf::bumpalo::core_alloc::slice::IterMut<'_, T>where
T: Debug,
impl<T> Debug for core::cell::once::OnceCell<T>where
T: Debug,
impl<T> Debug for Cell<T>
impl<T> Debug for core::cell::Ref<'_, T>
impl<T> Debug for RefCell<T>
impl<T> Debug for RefMut<'_, T>
impl<T> Debug for SyncUnsafeCell<T>where
T: ?Sized,
impl<T> Debug for UnsafeCell<T>where
T: ?Sized,
impl<T> Debug for Reverse<T>where
T: Debug,
impl<T> Debug for NumBuffer<T>where
T: Debug + NumBufferTrait,
impl<T> Debug for core::future::pending::Pending<T>
impl<T> Debug for core::future::ready::Ready<T>where
T: Debug,
impl<T> Debug for core::iter::adapters::rev::Rev<T>where
T: Debug,
impl<T> Debug for core::iter::sources::empty::Empty<T>
impl<T> Debug for core::iter::sources::once::Once<T>where
T: Debug,
impl<T> Debug for PhantomData<T>where
T: ?Sized,
impl<T> Debug for PhantomContravariant<T>where
T: ?Sized,
impl<T> Debug for PhantomCovariant<T>where
T: ?Sized,
impl<T> Debug for PhantomInvariant<T>where
T: ?Sized,
impl<T> Debug for ManuallyDrop<T>
impl<T> Debug for Discriminant<T>
impl<T> Debug for NonZero<T>where
T: ZeroablePrimitive + Debug,
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 UnsafePinned<T>where
T: ?Sized,
impl<T> Debug for NonNull<T>where
T: ?Sized,
impl<T> Debug for core::result::IntoIter<T>where
T: Debug,
impl<T> Debug for AtomicPtr<T>
target_has_atomic_load_store=ptr only.