Debug

Trait Debug 

1.36.0 · Source
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 · Source

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§

Source§

impl Debug for TypeTag

Source§

impl Debug for wasm_bindgen_x::DecodeError

Source§

impl Debug for JsClassMemberKind

Source§

impl Debug for AsciiChar

1.0.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::cmp::Ordering

1.34.0 · Source§

impl Debug for Infallible

1.64.0 · Source§

impl Debug for FromBytesWithNulError

1.16.0 · Source§

impl Debug for c_void

Source§

impl Debug for Locality

Source§

impl Debug for AtomicOrdering

Source§

impl Debug for SimdAlign

Source§

impl Debug for TypeKind

1.7.0 · Source§

impl Debug for IpAddr

Source§

impl Debug for Ipv6MulticastScope

1.0.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::net::SocketAddr

1.0.0 · Source§

impl Debug for FpCategory

1.55.0 · Source§

impl Debug for IntErrorKind

1.0.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::Ordering

Source§

impl Debug for TryReserveErrorKind

1.86.0 · Source§

impl Debug for wasm_bindgen_x::alloc::slice::GetDisjointMutError

Source§

impl Debug for SearchStep

1.28.0 · Source§

impl Debug for wasm_bindgen_x::alloc::fmt::Alignment

Source§

impl Debug for DebugAsHex

Source§

impl Debug for Sign

1.65.0 · Source§

impl Debug for BacktraceStatus

1.0.0 · Source§

impl Debug for VarError

1.89.0 · Source§

impl Debug for std::fs::TryLockError

1.0.0 · Source§

impl Debug for SeekFrom

1.0.0 · Source§

impl Debug for ErrorKind

1.0.0 · Source§

impl Debug for Shutdown

Source§

impl Debug for AncillaryError

Source§

impl Debug for BacktraceStyle

1.12.0 · Source§

impl Debug for std::sync::mpsc::RecvTimeoutError

1.0.0 · Source§

impl Debug for std::sync::mpsc::TryRecvError

Source§

impl Debug for async_channel::TryRecvError

Source§

impl Debug for ParseAlphabetError

Source§

impl Debug for base64::decode::DecodeError

Source§

impl Debug for DecodeSliceError

Source§

impl Debug for EncodeSliceError

Source§

impl Debug for DecodePaddingMode

Source§

impl Debug for CheckedCastError

Source§

impl Debug for PodCastError

Source§

impl Debug for PopError

Source§

impl Debug for PollNext

Source§

impl Debug for Always

Source§

impl Debug for slab::GetDisjointMutError

1.0.0 · Source§

impl Debug for bool

1.0.0 · Source§

impl Debug for char

1.0.0 · Source§

impl Debug for f16

1.0.0 · Source§

impl Debug for f32

1.0.0 · Source§

impl Debug for f64

1.0.0 · Source§

impl Debug for f128

1.0.0 · Source§

impl Debug for i8

1.0.0 · Source§

impl Debug for i16

1.0.0 · Source§

impl Debug for i32

1.0.0 · Source§

impl Debug for i64

1.0.0 · Source§

impl Debug for i128

1.0.0 · Source§

impl Debug for isize

Source§

impl Debug for !

1.0.0 · Source§

impl Debug for str

1.0.0 · Source§

impl Debug for u8

1.0.0 · Source§

impl Debug for u16

1.0.0 · Source§

impl Debug for u32

1.0.0 · Source§

impl Debug for u64

1.0.0 · Source§

impl Debug for u128

1.0.0 · Source§

impl Debug for ()

1.0.0 · Source§

impl Debug for usize

1.0.0 · Source§

impl Debug for TypeId

1.94.0 · Source§

impl Debug for float16x4_t

1.94.0 · Source§

impl Debug for float16x4x2_t

1.94.0 · Source§

impl Debug for float16x4x3_t

1.94.0 · Source§

impl Debug for float16x4x4_t

1.94.0 · Source§

impl Debug for float16x8_t

1.94.0 · Source§

impl Debug for float16x8x2_t

1.94.0 · Source§

impl Debug for float16x8x3_t

1.94.0 · Source§

impl Debug for float16x8x4_t

1.59.0 · Source§

impl Debug for float32x2_t

1.59.0 · Source§

impl Debug for float32x2x2_t

1.59.0 · Source§

impl Debug for float32x2x3_t

1.59.0 · Source§

impl Debug for float32x2x4_t

1.59.0 · Source§

impl Debug for float32x4_t

1.59.0 · Source§

impl Debug for float32x4x2_t

1.59.0 · Source§

impl Debug for float32x4x3_t

1.59.0 · Source§

impl Debug for float32x4x4_t

1.59.0 · Source§

impl Debug for float64x1_t

1.59.0 · Source§

impl Debug for float64x1x2_t

1.59.0 · Source§

impl Debug for float64x1x3_t

1.59.0 · Source§

impl Debug for float64x1x4_t

1.59.0 · Source§

impl Debug for float64x2_t

1.59.0 · Source§

impl Debug for float64x2x2_t

1.59.0 · Source§

impl Debug for float64x2x3_t

1.59.0 · Source§

impl Debug for float64x2x4_t

1.59.0 · Source§

impl Debug for int8x8_t

1.59.0 · Source§

impl Debug for int8x8x2_t

1.59.0 · Source§

impl Debug for int8x8x3_t

1.59.0 · Source§

impl Debug for int8x8x4_t

1.59.0 · Source§

impl Debug for int8x16_t

1.59.0 · Source§

impl Debug for int8x16x2_t

1.59.0 · Source§

impl Debug for int8x16x3_t

1.59.0 · Source§

impl Debug for int8x16x4_t

1.59.0 · Source§

impl Debug for int16x4_t

1.59.0 · Source§

impl Debug for int16x4x2_t

1.59.0 · Source§

impl Debug for int16x4x3_t

1.59.0 · Source§

impl Debug for int16x4x4_t

1.59.0 · Source§

impl Debug for int16x8_t

1.59.0 · Source§

impl Debug for int16x8x2_t

1.59.0 · Source§

impl Debug for int16x8x3_t

1.59.0 · Source§

impl Debug for int16x8x4_t

1.59.0 · Source§

impl Debug for int32x2_t

1.59.0 · Source§

impl Debug for int32x2x2_t

1.59.0 · Source§

impl Debug for int32x2x3_t

1.59.0 · Source§

impl Debug for int32x2x4_t

1.59.0 · Source§

impl Debug for int32x4_t

1.59.0 · Source§

impl Debug for int32x4x2_t

1.59.0 · Source§

impl Debug for int32x4x3_t

1.59.0 · Source§

impl Debug for int32x4x4_t

1.59.0 · Source§

impl Debug for int64x1_t

1.59.0 · Source§

impl Debug for int64x1x2_t

1.59.0 · Source§

impl Debug for int64x1x3_t

1.59.0 · Source§

impl Debug for int64x1x4_t

1.59.0 · Source§

impl Debug for int64x2_t

1.59.0 · Source§

impl Debug for int64x2x2_t

1.59.0 · Source§

impl Debug for int64x2x3_t

1.59.0 · Source§

impl Debug for int64x2x4_t

1.59.0 · Source§

impl Debug for poly8x8_t

1.59.0 · Source§

impl Debug for poly8x8x2_t

1.59.0 · Source§

impl Debug for poly8x8x3_t

1.59.0 · Source§

impl Debug for poly8x8x4_t

1.59.0 · Source§

impl Debug for poly8x16_t

1.59.0 · Source§

impl Debug for poly8x16x2_t

1.59.0 · Source§

impl Debug for poly8x16x3_t

1.59.0 · Source§

impl Debug for poly8x16x4_t

1.59.0 · Source§

impl Debug for poly16x4_t

1.59.0 · Source§

impl Debug for poly16x4x2_t

1.59.0 · Source§

impl Debug for poly16x4x3_t

1.59.0 · Source§

impl Debug for poly16x4x4_t

1.59.0 · Source§

impl Debug for poly16x8_t

1.59.0 · Source§

impl Debug for poly16x8x2_t

1.59.0 · Source§

impl Debug for poly16x8x3_t

1.59.0 · Source§

impl Debug for poly16x8x4_t

1.59.0 · Source§

impl Debug for poly64x1_t

1.59.0 · Source§

impl Debug for poly64x1x2_t

1.59.0 · Source§

impl Debug for poly64x1x3_t

1.59.0 · Source§

impl Debug for poly64x1x4_t

1.59.0 · Source§

impl Debug for poly64x2_t

1.59.0 · Source§

impl Debug for poly64x2x2_t

1.59.0 · Source§

impl Debug for poly64x2x3_t

1.59.0 · Source§

impl Debug for poly64x2x4_t

1.59.0 · Source§

impl Debug for uint8x8_t

1.59.0 · Source§

impl Debug for uint8x8x2_t

1.59.0 · Source§

impl Debug for uint8x8x3_t

1.59.0 · Source§

impl Debug for uint8x8x4_t

1.59.0 · Source§

impl Debug for uint8x16_t

1.59.0 · Source§

impl Debug for uint8x16x2_t

1.59.0 · Source§

impl Debug for uint8x16x3_t

1.59.0 · Source§

impl Debug for uint8x16x4_t

1.59.0 · Source§

impl Debug for uint16x4_t

1.59.0 · Source§

impl Debug for uint16x4x2_t

1.59.0 · Source§

impl Debug for uint16x4x3_t

1.59.0 · Source§

impl Debug for uint16x4x4_t

1.59.0 · Source§

impl Debug for uint16x8_t

1.59.0 · Source§

impl Debug for uint16x8x2_t

1.59.0 · Source§

impl Debug for uint16x8x3_t

1.59.0 · Source§

impl Debug for uint16x8x4_t

1.59.0 · Source§

impl Debug for uint32x2_t

1.59.0 · Source§

impl Debug for uint32x2x2_t

1.59.0 · Source§

impl Debug for uint32x2x3_t

1.59.0 · Source§

impl Debug for uint32x2x4_t

1.59.0 · Source§

impl Debug for uint32x4_t

1.59.0 · Source§

impl Debug for uint32x4x2_t

1.59.0 · Source§

impl Debug for uint32x4x3_t

1.59.0 · Source§

impl Debug for uint32x4x4_t

1.59.0 · Source§

impl Debug for uint64x1_t

1.59.0 · Source§

impl Debug for uint64x1x2_t

1.59.0 · Source§

impl Debug for uint64x1x3_t

1.59.0 · Source§

impl Debug for uint64x1x4_t

1.59.0 · Source§

impl Debug for uint64x2_t

1.59.0 · Source§

impl Debug for uint64x2x2_t

1.59.0 · Source§

impl Debug for uint64x2x3_t

1.59.0 · Source§

impl Debug for uint64x2x4_t

1.34.0 · Source§

impl Debug for TryFromSliceError

1.16.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::ascii::EscapeDefault

1.13.0 · Source§

impl Debug for BorrowError

1.13.0 · Source§

impl Debug for BorrowMutError

1.34.0 · Source§

impl Debug for CharTryFromError

1.9.0 · Source§

impl Debug for DecodeUtf16Error

1.20.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::char::EscapeDebug

1.0.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::char::EscapeDefault

1.0.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::char::EscapeUnicode

1.20.0 · Source§

impl Debug for ParseCharError

1.0.0 · Source§

impl Debug for ToLowercase

1.0.0 · Source§

impl Debug for ToUppercase

1.59.0 · Source§

impl Debug for TryFromCharError

1.3.0 · Source§

impl Debug for CStr

Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.

1.69.0 · Source§

impl Debug for FromBytesUntilNulError

Source§

impl Debug for VaList<'_>

1.0.0 · Source§

impl Debug for SipHasher

Source§

impl Debug for Last

Source§

impl Debug for BorrowedBuf<'_>

Source§

impl Debug for PhantomContravariantLifetime<'_>

Source§

impl Debug for PhantomCovariantLifetime<'_>

Source§

impl Debug for PhantomInvariantLifetime<'_>

1.33.0 · Source§

impl Debug for PhantomPinned

Source§

impl Debug for Assume

Source§

impl Debug for Field

Source§

impl Debug for Tuple

Source§

impl Debug for Type

1.0.0 · Source§

impl Debug for AddrParseError

1.0.0 · Source§

impl Debug for Ipv4Addr

1.0.0 · Source§

impl Debug for Ipv6Addr

1.0.0 · Source§

impl Debug for SocketAddrV4

1.0.0 · Source§

impl Debug for SocketAddrV6

1.0.0 · Source§

impl Debug for ParseFloatError

1.0.0 · Source§

impl Debug for ParseIntError

1.34.0 · Source§

impl Debug for TryFromIntError

1.0.0 · Source§

impl Debug for RangeFull

1.10.0 · Source§

impl Debug for Location<'_>

1.81.0 · Source§

impl Debug for PanicMessage<'_>

Source§

impl Debug for wasm_bindgen_x::inventory::core::ptr::Alignment

1.3.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicBool

Available on target_has_atomic_load_store=8 only.
1.34.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicI8

1.34.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicI16

1.34.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicI32

1.34.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicI64

Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicI128

1.3.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicIsize

1.34.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicU8

1.34.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicU16

1.34.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicU32

1.34.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicU64

Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicU128

1.3.0 · Source§

impl Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicUsize

1.36.0 · Source§

impl Debug for Context<'_>

Source§

impl Debug for LocalWaker

1.36.0 · Source§

impl Debug for RawWaker

1.36.0 · Source§

impl Debug for RawWakerVTable

1.36.0 · Source§

impl Debug for Waker

1.27.0 · Source§

impl Debug for Duration

1.66.0 · Source§

impl Debug for TryFromFloatSecsError

Source§

impl Debug for WryBindgenEvent

Source§

impl Debug for EncodedData

Source§

impl Debug for JsError

Source§

impl Debug for JsValue

Source§

impl Debug for AllocError

Source§

impl Debug for Global

1.28.0 · Source§

impl Debug for Layout

1.50.0 · Source§

impl Debug for LayoutError

Source§

impl Debug for ByteStr

Source§

impl Debug for ByteString

Source§

impl Debug for UnorderedKeyError

1.57.0 · Source§

impl Debug for TryReserveError

1.0.0 · Source§

impl Debug for CString

Delegates to the CStr implementation of fmt::Debug, showing invalid UTF-8 as hex escapes.

1.64.0 · Source§

impl Debug for FromVecWithNulError

1.64.0 · Source§

impl Debug for IntoStringError

1.64.0 · Source§

impl Debug for NulError

1.38.0 · Source§

impl Debug for Chars<'_>

1.17.0 · Source§

impl Debug for EncodeUtf16<'_>

1.0.0 · Source§

impl Debug for ParseBoolError

1.79.0 · Source§

impl Debug for Utf8Chunks<'_>

1.0.0 · Source§

impl Debug for Utf8Error

1.17.0 · Source§

impl Debug for wasm_bindgen_x::alloc::string::Drain<'_>

1.0.0 · Source§

impl Debug for FromUtf8Error

1.0.0 · Source§

impl Debug for FromUtf16Error

Source§

impl Debug for IntoChars

1.0.0 · Source§

impl Debug for String

1.28.0 · Source§

impl Debug for System

1.65.0 · Source§

impl Debug for Backtrace

Source§

impl Debug for BacktraceFrame

1.16.0 · Source§

impl Debug for Args

1.16.0 · Source§

impl Debug for ArgsOs

1.0.0 · Source§

impl Debug for JoinPathsError

1.16.0 · Source§

impl Debug for SplitPaths<'_>

1.16.0 · Source§

impl Debug for Vars

1.16.0 · Source§

impl Debug for VarsOs

1.87.0 · Source§

impl Debug for std::ffi::os_str::Display<'_>

1.0.0 · Source§

impl Debug for OsStr

1.0.0 · Source§

impl Debug for OsString

Source§

impl Debug for Dir

1.6.0 · Source§

impl Debug for DirBuilder

1.13.0 · Source§

impl Debug for DirEntry

1.0.0 · Source§

impl Debug for File

1.75.0 · Source§

impl Debug for FileTimes

1.16.0 · Source§

impl Debug for FileType

1.16.0 · Source§

impl Debug for Metadata

1.0.0 · Source§

impl Debug for OpenOptions

1.0.0 · Source§

impl Debug for Permissions

1.0.0 · Source§

impl Debug for ReadDir

1.7.0 · Source§

impl Debug for DefaultHasher

1.16.0 · Source§

impl Debug for RandomState

1.56.0 · Source§

impl Debug for WriterPanicked

1.0.0 · Source§

impl Debug for std::io::error::Error

1.87.0 · Source§

impl Debug for PipeReader

1.87.0 · Source§

impl Debug for PipeWriter

1.16.0 · Source§

impl Debug for Stderr

1.16.0 · Source§

impl Debug for StderrLock<'_>

1.16.0 · Source§

impl Debug for Stdin

1.16.0 · Source§

impl Debug for StdinLock<'_>

1.16.0 · Source§

impl Debug for Stdout

1.16.0 · Source§

impl Debug for StdoutLock<'_>

1.0.0 · Source§

impl Debug for std::io::util::Empty

1.16.0 · Source§

impl Debug for std::io::util::Repeat

1.0.0 · Source§

impl Debug for Sink

Source§

impl Debug for IntoIncoming

1.0.0 · Source§

impl Debug for TcpListener

1.0.0 · Source§

impl Debug for TcpStream

1.0.0 · Source§

impl Debug for UdpSocket

1.63.0 · Source§

impl Debug for BorrowedFd<'_>

1.63.0 · Source§

impl Debug for OwnedFd

Source§

impl Debug for PidFd

1.10.0 · Source§

impl Debug for std::os::unix::net::addr::SocketAddr

1.10.0 · Source§

impl Debug for UnixDatagram

1.10.0 · Source§

impl Debug for UnixListener

1.10.0 · Source§

impl Debug for UnixStream

Source§

impl Debug for UCred

1.13.0 · Source§

impl Debug for Components<'_>

1.0.0 · Source§

impl Debug for std::path::Display<'_>

1.13.0 · Source§

impl Debug for std::path::Iter<'_>

Source§

impl Debug for NormalizeError

1.0.0 · Source§

impl Debug for Path

1.0.0 · Source§

impl Debug for PathBuf

1.7.0 · Source§

impl Debug for StripPrefixError

1.16.0 · Source§

impl Debug for Child

1.16.0 · Source§

impl Debug for ChildStderr

1.16.0 · Source§

impl Debug for ChildStdin

1.16.0 · Source§

impl Debug for ChildStdout

1.0.0 · Source§

impl Debug for Command

1.61.0 · Source§

impl Debug for ExitCode

1.0.0 · Source§

impl Debug for ExitStatus

Source§

impl Debug for ExitStatusError

1.7.0 · Source§

impl Debug for Output

1.16.0 · Source§

impl Debug for Stdio

Source§

impl Debug for DefaultRandomSource

1.16.0 · Source§

impl Debug for Barrier

1.16.0 · Source§

impl Debug for BarrierWaitResult

1.0.0 · Source§

impl Debug for std::sync::mpsc::RecvError

Source§

impl Debug for std::sync::nonpoison::condvar::Condvar

Source§

impl Debug for WouldBlock

1.16.0 · Source§

impl Debug for std::sync::once::Once

1.16.0 · Source§

impl Debug for OnceState

1.16.0 · Source§

impl Debug for std::sync::poison::condvar::Condvar

1.5.0 · Source§

impl Debug for WaitTimeoutResult

1.0.0 · Source§

impl Debug for std::thread::builder::Builder

1.19.0 · Source§

impl Debug for ThreadId

1.26.0 · Source§

impl Debug for AccessError

1.63.0 · Source§

impl Debug for Scope<'_, '_>

1.0.0 · Source§

impl Debug for Thread

1.8.0 · Source§

impl Debug for Instant

1.8.0 · Source§

impl Debug for SystemTime

1.8.0 · Source§

impl Debug for SystemTimeError

Source§

impl Debug for async_channel::RecvError

Source§

impl Debug for Alphabet

Source§

impl Debug for GeneralPurpose

Source§

impl Debug for GeneralPurposeConfig

Source§

impl Debug for DecodeMetadata

Source§

impl Debug for UninitSlice

Source§

impl Debug for bytes::bytes::Bytes

Source§

impl Debug for BytesMut

Source§

impl Debug for TryGetError

Source§

impl Debug for Backoff

Source§

impl Debug for Blocking

Source§

impl Debug for futures_channel::mpsc::SendError

Source§

impl Debug for futures_channel::mpsc::TryRecvError

Source§

impl Debug for Canceled

Source§

impl Debug for AtomicWaker

Source§

impl Debug for SpawnError

Source§

impl Debug for AbortHandle

Source§

impl Debug for AbortRegistration

Source§

impl Debug for Aborted

Source§

impl Debug for http::error::Error

Source§

impl Debug for Extensions

Source§

impl Debug for MaxSizeReached

Source§

impl Debug for HeaderName

Source§

impl Debug for InvalidHeaderName

Source§

impl Debug for HeaderValue

Source§

impl Debug for InvalidHeaderValue

Source§

impl Debug for ToStrError

Source§

impl Debug for InvalidMethod

Source§

impl Debug for Method

Source§

impl Debug for http::request::Builder

Source§

impl Debug for http::request::Parts

Source§

impl Debug for http::response::Builder

Source§

impl Debug for http::response::Parts

Source§

impl Debug for InvalidStatusCode

Source§

impl Debug for StatusCode

Source§

impl Debug for Authority

Source§

impl Debug for http::uri::builder::Builder

Source§

impl Debug for PathAndQuery

Source§

impl Debug for Scheme

Source§

impl Debug for InvalidUri

Source§

impl Debug for InvalidUriParts

Source§

impl Debug for http::uri::Parts

Source§

impl Debug for Uri

Source§

impl Debug for Version

Source§

impl Debug for OnceBool

Source§

impl Debug for OnceNonZeroUsize

Source§

impl Debug for Parker

Source§

impl Debug for Unparker

Source§

impl Debug for portable_atomic::AtomicBool

Source§

impl Debug for portable_atomic::AtomicI8

Source§

impl Debug for portable_atomic::AtomicI16

Source§

impl Debug for portable_atomic::AtomicI32

Source§

impl Debug for portable_atomic::AtomicI64

Source§

impl Debug for portable_atomic::AtomicI128

Source§

impl Debug for portable_atomic::AtomicIsize

Source§

impl Debug for portable_atomic::AtomicU8

Source§

impl Debug for portable_atomic::AtomicU16

Source§

impl Debug for portable_atomic::AtomicU32

Source§

impl Debug for portable_atomic::AtomicU64

Source§

impl Debug for portable_atomic::AtomicU128

Source§

impl Debug for portable_atomic::AtomicUsize

1.0.0 · Source§

impl Debug for Arguments<'_>

1.0.0 · Source§

impl Debug for wasm_bindgen_x::alloc::fmt::Error

Source§

impl Debug for FormattingOptions

1.0.0 · Source§

impl Debug for dyn Any

1.0.0 · Source§

impl Debug for dyn Any + Send

1.28.0 · Source§

impl Debug for dyn Any + Send + Sync

Source§

impl<'a> Debug for Utf8Pattern<'a>

1.0.0 · Source§

impl<'a> Debug for Component<'a>

1.0.0 · Source§

impl<'a> Debug for Prefix<'a>

Source§

impl<'a> Debug for wasm_bindgen_x::inventory::core::error::Request<'a>

Source§

impl<'a> Debug for Source<'a>

Source§

impl<'a> Debug for wasm_bindgen_x::inventory::core::ffi::c_str::Bytes<'a>

Source§

impl<'a> Debug for BorrowedCursor<'a>

1.10.0 · Source§

impl<'a> Debug for PanicInfo<'a>

Source§

impl<'a> Debug for ContextBuilder<'a>

Source§

impl<'a> Debug for DecodedData<'a>

1.60.0 · Source§

impl<'a> Debug for EscapeAscii<'a>

Source§

impl<'a> Debug for CharSearcher<'a>

1.0.0 · Source§

impl<'a> Debug for wasm_bindgen_x::alloc::str::Bytes<'a>

1.0.0 · Source§

impl<'a> Debug for CharIndices<'a>

1.34.0 · Source§

impl<'a> Debug for wasm_bindgen_x::alloc::str::EscapeDebug<'a>

1.34.0 · Source§

impl<'a> Debug for wasm_bindgen_x::alloc::str::EscapeDefault<'a>

1.34.0 · Source§

impl<'a> Debug for wasm_bindgen_x::alloc::str::EscapeUnicode<'a>

1.0.0 · Source§

impl<'a> Debug for wasm_bindgen_x::alloc::str::Lines<'a>

1.0.0 · Source§

impl<'a> Debug for LinesAny<'a>

1.34.0 · Source§

impl<'a> Debug for SplitAsciiWhitespace<'a>

1.1.0 · Source§

impl<'a> Debug for SplitWhitespace<'a>

1.79.0 · Source§

impl<'a> Debug for Utf8Chunk<'a>

1.36.0 · Source§

impl<'a> Debug for IoSlice<'a>

1.36.0 · Source§

impl<'a> Debug for IoSliceMut<'a>

1.0.0 · Source§

impl<'a> Debug for std::net::tcp::Incoming<'a>

Source§

impl<'a> Debug for SocketAncillary<'a>

1.10.0 · Source§

impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>

1.81.0 · Source§

impl<'a> Debug for PanicHookInfo<'a>

1.28.0 · Source§

impl<'a> Debug for Ancestors<'a>

1.0.0 · Source§

impl<'a> Debug for PrefixComponent<'a>

1.57.0 · Source§

impl<'a> Debug for CommandArgs<'a>

1.57.0 · Source§

impl<'a> Debug for CommandEnvs<'a>

Source§

impl<'a> Debug for NonBlocking<'a>

Source§

impl<'a> Debug for WakerRef<'a>

Source§

impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>

Source§

impl<'a, 'b> Debug for StrSearcher<'a, 'b>

Source§

impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>

1.0.0 · Source§

impl<'a, A> Debug for wasm_bindgen_x::inventory::core::option::Iter<'a, A>
where A: Debug + 'a,

1.0.0 · Source§

impl<'a, A> Debug for wasm_bindgen_x::inventory::core::option::IterMut<'a, A>
where A: Debug + 'a,

Source§

impl<'a, Fut> Debug for futures_util::stream::futures_unordered::iter::Iter<'a, Fut>
where Fut: Debug + Unpin,

Source§

impl<'a, Fut> Debug for futures_util::stream::futures_unordered::iter::IterMut<'a, Fut>
where Fut: Debug + Unpin,

Source§

impl<'a, Fut> Debug for IterPinMut<'a, Fut>
where Fut: Debug,

Source§

impl<'a, Fut> Debug for IterPinRef<'a, Fut>
where Fut: Debug,

Source§

impl<'a, I> Debug for ByRefSized<'a, I>
where I: Debug,

Source§

impl<'a, I, A> Debug for wasm_bindgen_x::alloc::collections::vec_deque::Splice<'a, I, A>
where I: Debug + Iterator + 'a, A: Debug + Allocator + 'a, <I as Iterator>::Item: Debug,

1.21.0 · Source§

impl<'a, I, A> Debug for wasm_bindgen_x::alloc::vec::Splice<'a, I, A>
where I: Debug + Iterator + 'a, A: Debug + Allocator + 'a, <I as Iterator>::Item: Debug,

1.5.0 · Source§

impl<'a, P> Debug for MatchIndices<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.2.0 · Source§

impl<'a, P> Debug for Matches<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.5.0 · Source§

impl<'a, P> Debug for RMatchIndices<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.2.0 · Source§

impl<'a, P> Debug for RMatches<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for wasm_bindgen_x::alloc::str::RSplit<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for wasm_bindgen_x::alloc::str::RSplitN<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for RSplitTerminator<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for wasm_bindgen_x::alloc::str::Split<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.51.0 · Source§

impl<'a, P> Debug for wasm_bindgen_x::alloc::str::SplitInclusive<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for wasm_bindgen_x::alloc::str::SplitN<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for SplitTerminator<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

Source§

impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T>
where R: RawMutex + 'a, G: GetThreadId + 'a, T: Debug + 'a + ?Sized,

Source§

impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T>
where R: RawMutex + 'a, G: GetThreadId + 'a, T: Debug + 'a + ?Sized,

Source§

impl<'a, R, T> Debug for lock_api::mutex::MappedMutexGuard<'a, R, T>
where R: RawMutex + 'a, T: Debug + 'a + ?Sized,

Source§

impl<'a, R, T> Debug for lock_api::mutex::MutexGuard<'a, R, T>
where R: RawMutex + 'a, T: Debug + 'a + ?Sized,

Source§

impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockReadGuard<'a, R, T>
where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,

Source§

impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockWriteGuard<'a, R, T>
where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,

Source§

impl<'a, R, T> Debug for lock_api::rwlock::RwLockReadGuard<'a, R, T>
where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,

Source§

impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
where R: RawRwLockUpgrade + 'a, T: Debug + 'a + ?Sized,

Source§

impl<'a, R, T> Debug for lock_api::rwlock::RwLockWriteGuard<'a, R, T>
where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,

Source§

impl<'a, St> Debug for futures_util::stream::select_all::Iter<'a, St>
where St: Debug + Unpin,

Source§

impl<'a, St> Debug for futures_util::stream::select_all::IterMut<'a, St>
where St: Debug + Unpin,

Source§

impl<'a, St> Debug for Next<'a, St>
where St: Debug + ?Sized,

Source§

impl<'a, St> Debug for SelectNextSome<'a, St>
where St: Debug + ?Sized,

Source§

impl<'a, St> Debug for TryNext<'a, St>
where St: Debug + ?Sized,

Source§

impl<'a, T> Debug for http::header::map::Entry<'a, T>
where T: Debug + 'a,

1.0.0 · Source§

impl<'a, T> Debug for wasm_bindgen_x::inventory::core::result::Iter<'a, T>
where T: Debug + 'a,

1.0.0 · Source§

impl<'a, T> Debug for wasm_bindgen_x::inventory::core::result::IterMut<'a, T>
where T: Debug + 'a,

1.17.0 · Source§

impl<'a, T> Debug for wasm_bindgen_x::alloc::collections::btree_set::Range<'a, T>
where T: Debug + 'a,

1.0.0 · Source§

impl<'a, T> Debug for wasm_bindgen_x::alloc::slice::Chunks<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for ChunksExact<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for ChunksExactMut<'a, T>
where T: Debug + 'a,

1.0.0 · Source§

impl<'a, T> Debug for ChunksMut<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for RChunks<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for RChunksExact<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for RChunksExactMut<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for RChunksMut<'a, T>
where T: Debug + 'a,

1.0.0 · Source§

impl<'a, T> Debug for Windows<'a, T>
where T: Debug + 'a,

Source§

impl<'a, T> Debug for std::sync::mpmc::Iter<'a, T>
where T: Debug + 'a,

Source§

impl<'a, T> Debug for std::sync::mpmc::TryIter<'a, T>
where T: Debug + 'a,

1.0.0 · Source§

impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>
where T: Debug + 'a,

1.15.0 · Source§

impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T>
where T: Debug + 'a,

Source§

impl<'a, T> Debug for Closed<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for Recv<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for Send<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for Cancellation<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for http::header::map::Drain<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for GetAll<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for http::header::map::Iter<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for http::header::map::IterMut<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for http::header::map::Keys<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for http::header::map::OccupiedEntry<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for http::header::map::VacantEntry<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for ValueDrain<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for ValueIter<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for ValueIterMut<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for http::header::map::Values<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for http::header::map::ValuesMut<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for OnceRef<'a, T>

Source§

impl<'a, T> Debug for slab::VacantEntry<'a, T>
where T: Debug,

Source§

impl<'a, T> Debug for SpinMutexGuard<'a, T>
where T: Debug + ?Sized,

Source§

impl<'a, T> Debug for spin::mutex::MutexGuard<'a, T>
where T: Debug + ?Sized,

1.6.0 · Source§

impl<'a, T, A> Debug for wasm_bindgen_x::alloc::collections::binary_heap::Drain<'a, T, A>
where T: Debug + 'a, A: Debug + Allocator,

Source§

impl<'a, T, A> Debug for DrainSorted<'a, T, A>
where T: Debug + Ord, A: Debug + Allocator,

1.77.0 · Source§

impl<'a, T, P> Debug for ChunkBy<'a, T, P>
where T: 'a + Debug,

1.77.0 · Source§

impl<'a, T, P> Debug for ChunkByMut<'a, T, P>
where T: 'a + Debug,

1.94.0 · Source§

impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>
where T: Debug + 'a,

Source§

impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>

Source§

impl<'e, E, R> Debug for DecoderReader<'e, E, R>
where E: Engine, R: Read,

Source§

impl<'e, E, W> Debug for EncoderWriter<'e, E, W>
where E: Engine, W: Write,

Source§

impl<'rwlock, T> Debug for spin::rwlock::RwLockReadGuard<'rwlock, T>
where T: Debug + ?Sized,

Source§

impl<'rwlock, T, R> Debug for RwLockUpgradableGuard<'rwlock, T, R>
where T: Debug + ?Sized,

Source§

impl<'rwlock, T, R> Debug for spin::rwlock::RwLockWriteGuard<'rwlock, T, R>
where T: Debug + ?Sized,

1.63.0 · Source§

impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>

1.0.0 · Source§

impl<A> Debug for wasm_bindgen_x::inventory::core::iter::Repeat<A>
where A: Debug,

1.82.0 · Source§

impl<A> Debug for RepeatN<A>
where A: Debug,

1.0.0 · Source§

impl<A> Debug for wasm_bindgen_x::inventory::core::option::IntoIter<A>
where A: Debug,

Source§

impl<A> Debug for OptionFlatten<A>
where A: Debug,

Source§

impl<A> Debug for RangeFromIter<A>
where A: Debug,

Source§

impl<A> Debug for RangeInclusiveIter<A>
where A: Debug,

Source§

impl<A> Debug for RangeIter<A>
where A: Debug,

Source§

impl<A, B> Debug for Either<A, B>
where A: Debug, B: Debug,

1.0.0 · Source§

impl<A, B> Debug for wasm_bindgen_x::inventory::core::iter::Chain<A, B>
where A: Debug, B: Debug,

1.0.0 · Source§

impl<A, B> Debug for wasm_bindgen_x::inventory::core::iter::Zip<A, B>
where A: Debug, B: Debug,

Source§

impl<A, B> Debug for futures_util::future::select::Select<A, B>
where A: Debug, B: Debug,

Source§

impl<A, B> Debug for TrySelect<A, B>
where A: Debug, B: Debug,

1.0.0 · Source§

impl<B> Debug for Cow<'_, B>
where B: Debug + ToOwned + ?Sized, <B as ToOwned>::Owned: Debug,

1.0.0 · Source§

impl<B> Debug for std::io::Lines<B>
where B: Debug,

1.0.0 · Source§

impl<B> Debug for std::io::Split<B>
where B: Debug,

Source§

impl<B> Debug for Reader<B>
where B: Debug,

Source§

impl<B> Debug for Writer<B>
where B: Debug,

1.55.0 · Source§

impl<B, C> Debug for ControlFlow<B, C>
where B: Debug, C: Debug,

Source§

impl<Dyn> Debug for DynMetadata<Dyn>
where Dyn: ?Sized,

Source§

impl<E> Debug for Report<E>
where Report<E>: Display,

1.64.0 · Source§

impl<F> Debug for wasm_bindgen_x::inventory::core::future::PollFn<F>

1.34.0 · Source§

impl<F> Debug for wasm_bindgen_x::inventory::core::iter::FromFn<F>

1.68.0 · Source§

impl<F> Debug for OnceWith<F>

1.68.0 · Source§

impl<F> Debug for wasm_bindgen_x::inventory::core::iter::RepeatWith<F>

Source§

impl<F> Debug for CharPredicateSearcher<'_, F>
where F: FnMut(char) -> bool,

Source§

impl<F> Debug for FutureWrapper<F>
where F: Debug + ?Sized,

Source§

impl<F> Debug for futures_util::future::future::Flatten<F>
where Flatten<F, <F as Future>::Output>: Debug, F: Future,

Source§

impl<F> Debug for FlattenStream<F>
where Flatten<F, <F as Future>::Output>: Debug, F: Future,

Source§

impl<F> Debug for futures_util::future::future::IntoStream<F>
where Once<F>: Debug,

Source§

impl<F> Debug for JoinAll<F>
where F: Future + Debug, <F as Future>::Output: Debug,

Source§

impl<F> Debug for futures_util::future::lazy::Lazy<F>
where F: Debug,

Source§

impl<F> Debug for OptionFuture<F>
where F: Debug,

Source§

impl<F> Debug for futures_util::future::poll_fn::PollFn<F>

Source§

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,

Source§

impl<F> Debug for futures_util::stream::poll_fn::PollFn<F>

Source§

impl<F> Debug for futures_util::stream::repeat_with::RepeatWith<F>
where F: Debug,

1.93.0 · Source§

impl<F> Debug for wasm_bindgen_x::alloc::fmt::FromFn<F>
where F: Fn(&mut Formatter<'_>) -> Result<(), Error>,

1.4.0 · Source§

impl<F> Debug for F
where F: FnPtr,

Source§

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,

Source§

impl<Fut1, Fut2> Debug for futures_util::future::try_future::TryFlatten<Fut1, Fut2>
where TryFlatten<Fut1, Fut2>: Debug,

Source§

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,

Source§

impl<Fut1, Fut2, F> Debug for futures_util::future::future::Then<Fut1, Fut2, F>
where Flatten<Map<Fut1, F>, Fut2>: Debug,

Source§

impl<Fut1, Fut2, F> Debug for futures_util::future::try_future::AndThen<Fut1, Fut2, F>
where TryFlatten<MapOk<Fut1, F>, Fut2>: Debug,

Source§

impl<Fut1, Fut2, F> Debug for futures_util::future::try_future::OrElse<Fut1, Fut2, F>
where TryFlattenErr<MapErr<Fut1, F>, Fut2>: Debug,

Source§

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,

Source§

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,

Source§

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,

Source§

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,

Source§

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,

Source§

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,

Source§

impl<Fut> Debug for MaybeDone<Fut>
where Fut: Debug + Future, <Fut as Future>::Output: Debug,

Source§

impl<Fut> Debug for TryMaybeDone<Fut>
where Fut: Debug + TryFuture, <Fut as TryFuture>::Ok: Debug,

Source§

impl<Fut> Debug for futures_util::future::future::catch_unwind::CatchUnwind<Fut>
where Fut: Debug,

Source§

impl<Fut> Debug for futures_util::future::future::fuse::Fuse<Fut>
where Fut: Debug,

Source§

impl<Fut> Debug for Shared<Fut>
where Fut: Future,

Source§

impl<Fut> Debug for WeakShared<Fut>
where Fut: Future,

Source§

impl<Fut> Debug for NeverError<Fut>
where Map<Fut, OkFn<Infallible>>: Debug,

Source§

impl<Fut> Debug for UnitError<Fut>
where Map<Fut, OkFn<()>>: Debug,

Source§

impl<Fut> Debug for futures_util::future::select_all::SelectAll<Fut>
where Fut: Debug,

Source§

impl<Fut> Debug for SelectOk<Fut>
where Fut: Debug,

Source§

impl<Fut> Debug for IntoFuture<Fut>
where Fut: Debug,

Source§

impl<Fut> Debug for TryFlattenStream<Fut>
where TryFlatten<Fut, <Fut as TryFuture>::Ok>: Debug, Fut: TryFuture,

Source§

impl<Fut> Debug for FuturesOrdered<Fut>
where Fut: Future,

Source§

impl<Fut> Debug for futures_util::stream::futures_unordered::iter::IntoIter<Fut>
where Fut: Debug + Unpin,

Source§

impl<Fut> Debug for FuturesUnordered<Fut>

Source§

impl<Fut> Debug for futures_util::stream::once::Once<Fut>
where Fut: Debug,

Source§

impl<Fut, E> Debug for futures_util::future::try_future::ErrInto<Fut, E>
where MapErr<Fut, IntoFn<E>>: Debug,

Source§

impl<Fut, E> Debug for OkInto<Fut, E>
where MapOk<Fut, IntoFn<E>>: Debug,

Source§

impl<Fut, F> Debug for futures_util::future::future::Inspect<Fut, F>
where Map<Fut, InspectFn<F>>: Debug,

Source§

impl<Fut, F> Debug for futures_util::future::future::Map<Fut, F>
where Map<Fut, F>: Debug,

Source§

impl<Fut, F> Debug for futures_util::future::try_future::InspectErr<Fut, F>
where Inspect<IntoFuture<Fut>, InspectErrFn<F>>: Debug,

Source§

impl<Fut, F> Debug for futures_util::future::try_future::InspectOk<Fut, F>
where Inspect<IntoFuture<Fut>, InspectOkFn<F>>: Debug,

Source§

impl<Fut, F> Debug for futures_util::future::try_future::MapErr<Fut, F>
where Map<IntoFuture<Fut>, MapErrFn<F>>: Debug,

Source§

impl<Fut, F> Debug for futures_util::future::try_future::MapOk<Fut, F>
where Map<IntoFuture<Fut>, MapOkFn<F>>: Debug,

Source§

impl<Fut, F> Debug for UnwrapOrElse<Fut, F>
where Map<IntoFuture<Fut>, UnwrapOrElseFn<F>>: Debug,

Source§

impl<Fut, F, G> Debug for MapOkOrElse<Fut, F, G>
where Map<IntoFuture<Fut>, ChainFn<MapOkFn<F>, ChainFn<MapErrFn<G>, MergeResultFn>>>: Debug,

Source§

impl<Fut, T> Debug for MapInto<Fut, T>
where Map<Fut, IntoFn<T>>: Debug,

Source§

impl<G> Debug for FromCoroutine<G>

1.9.0 · Source§

impl<H> Debug for BuildHasherDefault<H>

Source§

impl<I> Debug for FromIter<I>
where I: Debug,

1.9.0 · Source§

impl<I> Debug for DecodeUtf16<I>
where I: Debug + Iterator<Item = u16>,

1.1.0 · Source§

impl<I> Debug for Cloned<I>
where I: Debug,

1.36.0 · Source§

impl<I> Debug for Copied<I>
where I: Debug,

1.0.0 · Source§

impl<I> Debug for wasm_bindgen_x::inventory::core::iter::Cycle<I>
where I: Debug,

1.0.0 · Source§

impl<I> Debug for wasm_bindgen_x::inventory::core::iter::Enumerate<I>
where I: Debug,

1.0.0 · Source§

impl<I> Debug for wasm_bindgen_x::inventory::core::iter::Fuse<I>
where I: Debug,

Source§

impl<I> Debug for Intersperse<I>
where I: Debug + Iterator, <I as Iterator>::Item: Clone + Debug,

1.0.0 · Source§

impl<I> Debug for wasm_bindgen_x::inventory::core::iter::Peekable<I>
where I: Debug + Iterator, <I as Iterator>::Item: Debug,

1.0.0 · Source§

impl<I> Debug for wasm_bindgen_x::inventory::core::iter::Skip<I>
where I: Debug,

1.28.0 · Source§

impl<I> Debug for StepBy<I>
where I: Debug,

1.0.0 · Source§

impl<I> Debug for wasm_bindgen_x::inventory::core::iter::Take<I>
where I: Debug,

Source§

impl<I> Debug for futures_util::stream::iter::Iter<I>
where I: Debug,

1.9.0 · Source§

impl<I, F> Debug for wasm_bindgen_x::inventory::core::iter::FilterMap<I, F>
where I: Debug,

1.9.0 · Source§

impl<I, F> Debug for wasm_bindgen_x::inventory::core::iter::Inspect<I, F>
where I: Debug,

1.9.0 · Source§

impl<I, F> Debug for wasm_bindgen_x::inventory::core::iter::Map<I, F>
where I: Debug,

Source§

impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
where I: Iterator + Debug,

Source§

impl<I, G> Debug for IntersperseWith<I, G>
where I: Iterator + Debug, <I as Iterator>::Item: Debug, G: Debug,

1.9.0 · Source§

impl<I, P> Debug for wasm_bindgen_x::inventory::core::iter::Filter<I, P>
where I: Debug,

1.57.0 · Source§

impl<I, P> Debug for MapWhile<I, P>
where I: Debug,

1.9.0 · Source§

impl<I, P> Debug for wasm_bindgen_x::inventory::core::iter::SkipWhile<I, P>
where I: Debug,

1.9.0 · Source§

impl<I, P> Debug for wasm_bindgen_x::inventory::core::iter::TakeWhile<I, P>
where I: Debug,

1.9.0 · Source§

impl<I, St, F> Debug for wasm_bindgen_x::inventory::core::iter::Scan<I, St, F>
where I: Debug, St: Debug,

1.29.0 · Source§

impl<I, U> Debug for wasm_bindgen_x::inventory::core::iter::Flatten<I>
where I: Debug + Iterator, <I as Iterator>::Item: IntoIterator<IntoIter = U, Item = <U as Iterator>::Item>, U: Debug + Iterator,

1.9.0 · Source§

impl<I, U, F> Debug for wasm_bindgen_x::inventory::core::iter::FlatMap<I, U, F>
where I: Debug, U: IntoIterator, <U as IntoIterator>::IntoIter: Debug,

Source§

impl<I, const N: usize> Debug for ArrayChunks<I, N>
where I: Debug + Iterator, <I as Iterator>::Item: Debug,

Source§

impl<Idx> Debug for Clamp<Idx>
where Idx: Debug,

1.0.0 · Source§

impl<Idx> Debug for wasm_bindgen_x::inventory::core::ops::Range<Idx>
where Idx: Debug,

1.0.0 · Source§

impl<Idx> Debug for wasm_bindgen_x::inventory::core::ops::RangeFrom<Idx>
where Idx: Debug,

1.26.0 · Source§

impl<Idx> Debug for wasm_bindgen_x::inventory::core::ops::RangeInclusive<Idx>
where Idx: Debug,

1.0.0 · Source§

impl<Idx> Debug for RangeTo<Idx>
where Idx: Debug,

1.26.0 · Source§

impl<Idx> Debug for wasm_bindgen_x::inventory::core::ops::RangeToInclusive<Idx>
where Idx: Debug,

Source§

impl<Idx> Debug for wasm_bindgen_x::inventory::core::range::Range<Idx>
where Idx: Debug,

Source§

impl<Idx> Debug for wasm_bindgen_x::inventory::core::range::RangeFrom<Idx>
where Idx: Debug,

Source§

impl<Idx> Debug for wasm_bindgen_x::inventory::core::range::RangeInclusive<Idx>
where Idx: Debug,

Source§

impl<Idx> Debug for wasm_bindgen_x::inventory::core::range::RangeToInclusive<Idx>
where Idx: Debug,

Source§

impl<K> Debug for wasm_bindgen_x::alloc::collections::btree_set::Cursor<'_, K>
where K: Debug,

1.16.0 · Source§

impl<K> Debug for std::collections::hash::set::Iter<'_, K>
where K: Debug,

Source§

impl<K, A> Debug for wasm_bindgen_x::alloc::collections::btree_set::CursorMut<'_, K, A>
where K: Debug,

Source§

impl<K, A> Debug for wasm_bindgen_x::alloc::collections::btree_set::CursorMutKey<'_, K, A>
where K: Debug,

1.16.0 · Source§

impl<K, A> Debug for std::collections::hash::set::Drain<'_, K, A>
where K: Debug, A: Allocator,

1.16.0 · Source§

impl<K, A> Debug for std::collections::hash::set::IntoIter<K, A>
where K: Debug, A: Allocator,

1.88.0 · Source§

impl<K, F, A> Debug for std::collections::hash::set::ExtractIf<'_, K, F, A>
where A: Allocator, K: Debug,

1.12.0 · Source§

impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
where K: Debug, V: Debug,

Source§

impl<K, V> Debug for wasm_bindgen_x::alloc::collections::btree_map::Cursor<'_, K, V>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V> Debug for wasm_bindgen_x::alloc::collections::btree_map::Iter<'_, K, V>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V> Debug for wasm_bindgen_x::alloc::collections::btree_map::IterMut<'_, K, V>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V> Debug for wasm_bindgen_x::alloc::collections::btree_map::Keys<'_, K, V>
where K: Debug,

1.17.0 · Source§

impl<K, V> Debug for wasm_bindgen_x::alloc::collections::btree_map::Range<'_, K, V>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V> Debug for RangeMut<'_, K, V>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V> Debug for wasm_bindgen_x::alloc::collections::btree_map::Values<'_, K, V>
where V: Debug,

1.10.0 · Source§

impl<K, V> Debug for wasm_bindgen_x::alloc::collections::btree_map::ValuesMut<'_, K, V>
where V: Debug,

1.16.0 · Source§

impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
where K: Debug, V: Debug,

1.16.0 · Source§

impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
where K: Debug, V: Debug,

1.16.0 · Source§

impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>
where K: Debug,

1.16.0 · Source§

impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>
where V: Debug,

1.16.0 · Source§

impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>
where V: Debug,

1.12.0 · Source§

impl<K, V, A> Debug for wasm_bindgen_x::alloc::collections::btree_map::Entry<'_, K, V, A>
where K: Debug + Ord, V: Debug, A: Allocator + Clone,

Source§

impl<K, V, A> Debug for wasm_bindgen_x::alloc::collections::btree_map::CursorMut<'_, K, V, A>
where K: Debug, V: Debug,

Source§

impl<K, V, A> Debug for wasm_bindgen_x::alloc::collections::btree_map::CursorMutKey<'_, K, V, A>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V, A> Debug for wasm_bindgen_x::alloc::collections::btree_map::IntoIter<K, V, A>
where K: Debug, V: Debug, A: Allocator + Clone,

1.54.0 · Source§

impl<K, V, A> Debug for wasm_bindgen_x::alloc::collections::btree_map::IntoKeys<K, V, A>
where K: Debug, A: Allocator + Clone,

1.54.0 · Source§

impl<K, V, A> Debug for wasm_bindgen_x::alloc::collections::btree_map::IntoValues<K, V, A>
where V: Debug, A: Allocator + Clone,

1.12.0 · Source§

impl<K, V, A> Debug for wasm_bindgen_x::alloc::collections::btree_map::OccupiedEntry<'_, K, V, A>
where K: Debug + Ord, V: Debug, A: Allocator + Clone,

Source§

impl<K, V, A> Debug for wasm_bindgen_x::alloc::collections::btree_map::OccupiedError<'_, K, V, A>
where K: Debug + Ord, V: Debug, A: Allocator + Clone,

1.12.0 · Source§

impl<K, V, A> Debug for wasm_bindgen_x::alloc::collections::btree_map::VacantEntry<'_, K, V, A>
where K: Debug + Ord, A: Allocator + Clone,

1.0.0 · Source§

impl<K, V, A> Debug for BTreeMap<K, V, A>
where K: Debug, V: Debug, A: Allocator + Clone,

1.16.0 · Source§

impl<K, V, A> Debug for std::collections::hash::map::Drain<'_, K, V, A>
where A: Allocator, K: Debug, V: Debug,

1.16.0 · Source§

impl<K, V, A> Debug for std::collections::hash::map::IntoIter<K, V, A>
where K: Debug, V: Debug, A: Allocator,

1.54.0 · Source§

impl<K, V, A> Debug for std::collections::hash::map::IntoKeys<K, V, A>
where K: Debug, A: Allocator,

1.54.0 · Source§

impl<K, V, A> Debug for std::collections::hash::map::IntoValues<K, V, A>
where V: Debug, A: Allocator,

1.12.0 · Source§

impl<K, V, A> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V, A>
where K: Debug, V: Debug, A: Allocator,

Source§

impl<K, V, A> Debug for std::collections::hash::map::OccupiedError<'_, K, V, A>
where K: Debug, V: Debug, A: Allocator,

1.12.0 · Source§

impl<K, V, A> Debug for std::collections::hash::map::VacantEntry<'_, K, V, A>
where K: Debug, A: Allocator,

1.88.0 · Source§

impl<K, V, F, A> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F, A>
where A: Allocator, K: Debug, V: Debug,

1.91.0 · Source§

impl<K, V, R, F, A> Debug for wasm_bindgen_x::alloc::collections::btree_map::ExtractIf<'_, K, V, R, F, A>
where K: Debug, V: Debug, A: Allocator + Clone,

1.0.0 · Source§

impl<K, V, S, A> Debug for HashMap<K, V, S, A>
where K: Debug, V: Debug, A: Allocator,

Source§

impl<P> Debug for MaybeDangling<P>
where P: Debug + ?Sized,

1.33.0 · Source§

impl<Ptr> Debug for Pin<Ptr>
where Ptr: Debug,

1.0.0 · Source§

impl<R> Debug for BufReader<R>
where R: Debug + ?Sized,

1.0.0 · Source§

impl<R> Debug for std::io::Bytes<R>
where R: Debug,

Source§

impl<R, G, T> Debug for ReentrantMutex<R, G, T>
where R: RawMutex, G: GetThreadId, T: Debug + ?Sized,

Source§

impl<R, T> Debug for lock_api::mutex::Mutex<R, T>
where R: RawMutex, T: Debug + ?Sized,

Source§

impl<R, T> Debug for lock_api::rwlock::RwLock<R, T>
where R: RawRwLock, T: Debug + ?Sized,

Source§

impl<S> Debug for futures_util::stream::poll_immediate::PollImmediate<S>
where S: Debug,

Source§

impl<St1, St2> Debug for futures_util::stream::select::Select<St1, St2>
where St1: Debug, St2: Debug,

Source§

impl<St1, St2> Debug for futures_util::stream::stream::chain::Chain<St1, St2>
where St1: Debug, St2: Debug,

Source§

impl<St1, St2> Debug for futures_util::stream::stream::zip::Zip<St1, St2>
where St1: Debug + Stream, St2: Debug + Stream, <St1 as Stream>::Item: Debug, <St2 as Stream>::Item: Debug,

Source§

impl<St1, St2, Clos, State> Debug for SelectWithStrategy<St1, St2, Clos, State>
where St1: Debug, St2: Debug, State: Debug,

Source§

impl<St> Debug for futures_util::stream::select_all::IntoIter<St>
where St: Debug + Unpin,

Source§

impl<St> Debug for futures_util::stream::select_all::SelectAll<St>
where St: Debug,

Source§

impl<St> Debug for BufferUnordered<St>
where St: Stream + Debug,

Source§

impl<St> Debug for Buffered<St>
where St: Stream + Debug, <St as Stream>::Item: Future,

Source§

impl<St> Debug for futures_util::stream::stream::catch_unwind::CatchUnwind<St>
where St: Debug,

Source§

impl<St> Debug for futures_util::stream::stream::chunks::Chunks<St>
where St: Debug + Stream, <St as Stream>::Item: Debug,

Source§

impl<St> Debug for Concat<St>
where St: Debug + Stream, <St as Stream>::Item: Debug,

Source§

impl<St> Debug for Count<St>
where St: Debug,

Source§

impl<St> Debug for futures_util::stream::stream::cycle::Cycle<St>
where St: Debug,

Source§

impl<St> Debug for futures_util::stream::stream::enumerate::Enumerate<St>
where St: Debug,

Source§

impl<St> Debug for futures_util::stream::stream::fuse::Fuse<St>
where St: Debug,

Source§

impl<St> Debug for StreamFuture<St>
where St: Debug,

Source§

impl<St> Debug for Peek<'_, St>
where St: Stream + Debug, <St as Stream>::Item: Debug,

Source§

impl<St> Debug for futures_util::stream::stream::peek::PeekMut<'_, St>
where St: Stream + Debug, <St as Stream>::Item: Debug,

Source§

impl<St> Debug for futures_util::stream::stream::peek::Peekable<St>
where St: Debug + Stream, <St as Stream>::Item: Debug,

Source§

impl<St> Debug for ReadyChunks<St>
where St: Debug + Stream,

Source§

impl<St> Debug for futures_util::stream::stream::skip::Skip<St>
where St: Debug,

Source§

impl<St> Debug for futures_util::stream::stream::Flatten<St>
where Flatten<St, <St as Stream>::Item>: Debug, St: Stream,

Source§

impl<St> Debug for futures_util::stream::stream::take::Take<St>
where St: Debug,

Source§

impl<St> Debug for futures_util::stream::try_stream::into_stream::IntoStream<St>
where St: Debug,

Source§

impl<St> Debug for TryBufferUnordered<St>
where St: Debug + TryStream, <St as TryStream>::Ok: Debug,

Source§

impl<St> Debug for TryBuffered<St>
where St: Debug + TryStream, <St as TryStream>::Ok: TryFuture + Debug,

Source§

impl<St> Debug for TryChunks<St>
where St: Debug + TryStream, <St as TryStream>::Ok: Debug,

Source§

impl<St> Debug for TryConcat<St>
where St: Debug + TryStream, <St as TryStream>::Ok: Debug,

Source§

impl<St> Debug for futures_util::stream::try_stream::try_flatten::TryFlatten<St>
where St: Debug + TryStream, <St as TryStream>::Ok: Debug,

Source§

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>,

Source§

impl<St> Debug for TryReadyChunks<St>
where St: Debug + TryStream,

Source§

impl<St, C> Debug for Collect<St, C>
where St: Debug, C: Debug,

Source§

impl<St, C> Debug for TryCollect<St, C>
where St: Debug, C: Debug,

Source§

impl<St, E> Debug for futures_util::stream::try_stream::ErrInto<St, E>
where MapErr<St, IntoFn<E>>: Debug,

Source§

impl<St, F> Debug for futures_util::stream::stream::map::Map<St, F>
where St: Debug,

Source§

impl<St, F> Debug for NextIf<'_, St, F>
where St: Stream + Debug, <St as Stream>::Item: Debug,

Source§

impl<St, F> Debug for futures_util::stream::stream::Inspect<St, F>
where Map<St, InspectFn<F>>: Debug,

Source§

impl<St, F> Debug for futures_util::stream::try_stream::InspectErr<St, F>
where Inspect<IntoStream<St>, InspectErrFn<F>>: Debug,

Source§

impl<St, F> Debug for futures_util::stream::try_stream::InspectOk<St, F>
where Inspect<IntoStream<St>, InspectOkFn<F>>: Debug,

Source§

impl<St, F> Debug for futures_util::stream::try_stream::MapErr<St, F>
where Map<IntoStream<St>, MapErrFn<F>>: Debug,

Source§

impl<St, F> Debug for futures_util::stream::try_stream::MapOk<St, F>
where Map<IntoStream<St>, MapOkFn<F>>: Debug,

Source§

impl<St, FromA, FromB> Debug for Unzip<St, FromA, FromB>
where St: Debug, FromA: Debug, FromB: Debug,

Source§

impl<St, Fut> Debug for TakeUntil<St, Fut>
where St: Stream + Debug, <St as Stream>::Item: Debug, Fut: Future + Debug,

Source§

impl<St, Fut, F> Debug for All<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for Any<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for futures_util::stream::stream::filter::Filter<St, Fut, F>
where St: Stream + Debug, <St as Stream>::Item: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for futures_util::stream::stream::filter_map::FilterMap<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for ForEach<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for ForEachConcurrent<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for futures_util::stream::stream::skip_while::SkipWhile<St, Fut, F>
where St: Stream + Debug, <St as Stream>::Item: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for futures_util::stream::stream::take_while::TakeWhile<St, Fut, F>
where St: Stream + Debug, <St as Stream>::Item: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for futures_util::stream::stream::then::Then<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for futures_util::stream::try_stream::and_then::AndThen<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for futures_util::stream::try_stream::or_else::OrElse<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for TryAll<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for TryAny<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for TryFilter<St, Fut, F>
where St: TryStream + Debug, <St as TryStream>::Ok: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for TryFilterMap<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for TryForEach<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for TryForEachConcurrent<St, Fut, F>
where St: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for TrySkipWhile<St, Fut, F>
where St: TryStream + Debug, <St as TryStream>::Ok: Debug, Fut: Debug,

Source§

impl<St, Fut, F> Debug for TryTakeWhile<St, Fut, F>
where St: TryStream + Debug, <St as TryStream>::Ok: Debug, Fut: Debug,

Source§

impl<St, Fut, T, F> Debug for Fold<St, Fut, T, F>
where St: Debug, Fut: Debug, T: Debug,

Source§

impl<St, Fut, T, F> Debug for TryFold<St, Fut, T, F>
where St: Debug, Fut: Debug, T: Debug,

Source§

impl<St, S, Fut, F> Debug for futures_util::stream::stream::scan::Scan<St, S, Fut, F>
where St: Stream + Debug, <St as Stream>::Item: Debug, S: Debug, Fut: Debug,

Source§

impl<St, T> Debug for NextIfEq<'_, St, T>
where St: Stream + Debug, <St as Stream>::Item: Debug, T: ?Sized,

Source§

impl<St, U, F> Debug for futures_util::stream::stream::FlatMap<St, U, F>
where Flatten<Map<St, F>, U>: Debug,

Source§

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,

1.17.0 · Source§

impl<T> Debug for Bound<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for Option<T>
where T: Debug,

1.36.0 · Source§

impl<T> Debug for Poll<T>
where T: Debug,

Source§

impl<T> Debug for SendTimeoutError<T>

1.0.0 · Source§

impl<T> Debug for std::sync::mpsc::TrySendError<T>

Source§

impl<T> Debug for std::sync::oneshot::RecvTimeoutError<T>

Source§

impl<T> Debug for std::sync::oneshot::TryRecvError<T>

1.0.0 · Source§

impl<T> Debug for std::sync::poison::TryLockError<T>

Source§

impl<T> Debug for async_channel::TrySendError<T>

Source§

impl<T> Debug for PushError<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for *const T
where T: ?Sized,

1.0.0 · Source§

impl<T> Debug for *mut T
where T: ?Sized,

1.0.0 · Source§

impl<T> Debug for &T
where T: Debug + ?Sized,

1.0.0 · Source§

impl<T> Debug for &mut T
where T: Debug + ?Sized,

1.0.0 · Source§

impl<T> Debug for [T]
where T: Debug,

1.0.0 · Source§

impl<T> Debug for (T₁, T₂, …, Tₙ)
where T: Debug,

This trait is implemented for tuples up to twelve items long.

1.0.0 · Source§

impl<T> Debug for Cell<T>
where T: Copy + Debug,

1.70.0 · Source§

impl<T> Debug for wasm_bindgen_x::inventory::core::cell::OnceCell<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for Ref<'_, T>
where T: Debug + ?Sized,

1.0.0 · Source§

impl<T> Debug for RefCell<T>
where T: Debug + ?Sized,

1.0.0 · Source§

impl<T> Debug for RefMut<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for SyncUnsafeCell<T>
where T: ?Sized,

1.9.0 · Source§

impl<T> Debug for UnsafeCell<T>
where T: ?Sized,

1.19.0 · Source§

impl<T> Debug for Reverse<T>
where T: Debug,

Source§

impl<T> Debug for NumBuffer<T>
where T: Debug + NumBufferTrait,

1.48.0 · Source§

impl<T> Debug for wasm_bindgen_x::inventory::core::future::Pending<T>

1.48.0 · Source§

impl<T> Debug for wasm_bindgen_x::inventory::core::future::Ready<T>
where T: Debug,

1.9.0 · Source§

impl<T> Debug for wasm_bindgen_x::inventory::core::iter::Empty<T>

1.2.0 · Source§

impl<T> Debug for wasm_bindgen_x::inventory::core::iter::Once<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for Rev<T>
where T: Debug,

Source§

impl<T> Debug for PhantomContravariant<T>
where T: ?Sized,

Source§

impl<T> Debug for PhantomCovariant<T>
where T: ?Sized,

1.0.0 · Source§

impl<T> Debug for PhantomData<T>
where T: ?Sized,

Source§

impl<T> Debug for PhantomInvariant<T>
where T: ?Sized,

1.21.0 · Source§

impl<T> Debug for Discriminant<T>

1.20.0 · Source§

impl<T> Debug for ManuallyDrop<T>
where T: Debug + ?Sized,

1.28.0 · Source§

impl<T> Debug for NonZero<T>

1.74.0 · Source§

impl<T> Debug for Saturating<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for Wrapping<T>
where T: Debug,

Source§

impl<T> Debug for Yeet<T>
where T: Debug,

1.16.0 · Source§

impl<T> Debug for AssertUnwindSafe<T>
where T: Debug,

Source§

impl<T> Debug for UnsafePinned<T>
where T: ?Sized,

1.25.0 · Source§

impl<T> Debug for NonNull<T>
where T: ?Sized,

1.0.0 · Source§

impl<T> Debug for wasm_bindgen_x::inventory::core::result::IntoIter<T>
where T: Debug,

1.3.0 · Source§

impl<T> Debug for wasm_bindgen_x::inventory::core::sync::atomic::AtomicPtr<T>

Available on target_has_atomic_load_store=ptr only.
Source§

impl<T> Debug for Exclusive<T>
where T: ?Sized,

Source§

impl<T> Debug for Clamped<T>
where T: Debug,

Source§

impl<T> Debug for Closure<T>
where T: ?Sized,

Source§

impl<T> Debug for ThinBox<T>
where T: Debug + ?Sized,

1.17.0 · Source§

impl<T> Debug for wasm_bindgen_x::alloc::collections::binary_heap::Iter<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for wasm_bindgen_x::alloc::collections::btree_set::Iter<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for wasm_bindgen_x::alloc::collections::btree_set::SymmetricDifference<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for wasm_bindgen_x::alloc::collections::btree_set::Union<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for wasm_bindgen_x::alloc::collections::linked_list::Iter<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for wasm_bindgen_x::alloc::collections::linked_list::IterMut<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for wasm_bindgen_x::alloc::collections::vec_deque::Iter<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for wasm_bindgen_x::alloc::collections::vec_deque::IterMut<'_, T>
where T: Debug,

1.9.0 · Source§

impl<T> Debug for wasm_bindgen_x::alloc::slice::Iter<'_, T>
where T: Debug,

1.9.0 · Source§

impl<T> Debug for wasm_bindgen_x::alloc::slice::IterMut<'_, T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for std::io::cursor::Cursor<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for std::io::Take<T>
where T: Debug,

Source§

impl<T> Debug for std::sync::mpmc::IntoIter<T>
where T: Debug,

Source§

impl<T> Debug for std::sync::mpmc::Receiver<T>

Source§

impl<T> Debug for std::sync::mpmc::Sender<T>

1.1.0 · Source§

impl<T> Debug for std::sync::mpsc::IntoIter<T>
where T: Debug,

1.8.0 · Source§

impl<T> Debug for std::sync::mpsc::Receiver<T>

1.0.0 · Source§

impl<T> Debug for std::sync::mpsc::SendError<T>

1.8.0 · Source§

impl<T> Debug for std::sync::mpsc::Sender<T>

1.8.0 · Source§

impl<T> Debug for SyncSender<T>

Source§

impl<T> Debug for std::sync::nonpoison::mutex::MappedMutexGuard<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for std::sync::nonpoison::mutex::Mutex<T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for std::sync::nonpoison::mutex::MutexGuard<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for std::sync::nonpoison::rwlock::MappedRwLockReadGuard<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for std::sync::nonpoison::rwlock::MappedRwLockWriteGuard<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for std::sync::nonpoison::rwlock::RwLock<T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for std::sync::nonpoison::rwlock::RwLockReadGuard<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for std::sync::nonpoison::rwlock::RwLockWriteGuard<'_, T>
where T: Debug + ?Sized,

1.70.0 · Source§

impl<T> Debug for OnceLock<T>
where T: Debug,

Source§

impl<T> Debug for std::sync::oneshot::Receiver<T>

Source§

impl<T> Debug for std::sync::oneshot::Sender<T>

Source§

impl<T> Debug for std::sync::poison::mutex::MappedMutexGuard<'_, T>
where T: Debug + ?Sized,

1.0.0 · Source§

impl<T> Debug for std::sync::poison::mutex::Mutex<T>
where T: Debug + ?Sized,

1.16.0 · Source§

impl<T> Debug for std::sync::poison::mutex::MutexGuard<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for std::sync::poison::rwlock::MappedRwLockReadGuard<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for std::sync::poison::rwlock::MappedRwLockWriteGuard<'_, T>
where T: Debug + ?Sized,

1.0.0 · Source§

impl<T> Debug for std::sync::poison::rwlock::RwLock<T>
where T: Debug + ?Sized,

1.16.0 · Source§

impl<T> Debug for std::sync::poison::rwlock::RwLockReadGuard<'_, T>
where T: Debug + ?Sized,

1.16.0 · Source§

impl<T> Debug for std::sync::poison::rwlock::RwLockWriteGuard<'_, T>
where T: Debug + ?Sized,

1.0.0 · Source§

impl<T> Debug for PoisonError<T>

Source§

impl<T> Debug for ReentrantLock<T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for ReentrantLockGuard<'_, T>
where T: Debug + ?Sized,

1.16.0 · Source§

impl<T> Debug for JoinHandle<T>

1.16.0 · Source§

impl<T> Debug for LocalKey<T>
where T: 'static,

Source§

impl<T> Debug for async_channel::Receiver<T>

Source§

impl<T> Debug for async_channel::SendError<T>

Source§

impl<T> Debug for async_channel::Sender<T>

Source§

impl<T> Debug for WeakReceiver<T>

Source§

impl<T> Debug for WeakSender<T>

Source§

impl<T> Debug for bytes::buf::iter::IntoIter<T>
where T: Debug,

Source§

impl<T> Debug for Limit<T>
where T: Debug,

Source§

impl<T> Debug for bytes::buf::take::Take<T>
where T: Debug,

Source§

impl<T> Debug for ConcurrentQueue<T>

Source§

impl<T> Debug for ForcePushError<T>
where T: Debug,

Source§

impl<T> Debug for concurrent_queue::TryIter<'_, T>

Source§

impl<T> Debug for AtomicCell<T>
where T: Copy + Debug,

Source§

impl<T> Debug for CachePadded<T>
where T: Debug,

Source§

impl<T> Debug for Event<T>

Source§

impl<T> Debug for EventListener<T>

Source§

impl<T> Debug for futures_channel::mpsc::Receiver<T>

Source§

impl<T> Debug for futures_channel::mpsc::Sender<T>

Source§

impl<T> Debug for futures_channel::mpsc::TrySendError<T>

Source§

impl<T> Debug for UnboundedReceiver<T>

Source§

impl<T> Debug for UnboundedSender<T>

Source§

impl<T> Debug for futures_channel::oneshot::Receiver<T>

Source§

impl<T> Debug for futures_channel::oneshot::Sender<T>

Source§

impl<T> Debug for FutureObj<'_, T>

Source§

impl<T> Debug for LocalFutureObj<'_, T>

Source§

impl<T> Debug for Abortable<T>
where T: Debug,

Source§

impl<T> Debug for futures_util::future::pending::Pending<T>
where T: Debug,

Source§

impl<T> Debug for futures_util::future::poll_immediate::PollImmediate<T>
where T: Debug,

Source§

impl<T> Debug for futures_util::future::ready::Ready<T>
where T: Debug,

Source§

impl<T> Debug for futures_util::lock::mutex::Mutex<T>
where T: ?Sized,

Source§

impl<T> Debug for futures_util::lock::mutex::MutexGuard<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for MutexLockFuture<'_, T>
where T: ?Sized,

Source§

impl<T> Debug for OwnedMutexGuard<T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for OwnedMutexLockFuture<T>
where T: ?Sized,

Source§

impl<T> Debug for futures_util::stream::empty::Empty<T>
where T: Debug,

Source§

impl<T> Debug for futures_util::stream::pending::Pending<T>
where T: Debug,

Source§

impl<T> Debug for futures_util::stream::repeat::Repeat<T>
where T: Debug,

Source§

impl<T> Debug for HeaderMap<T>
where T: Debug,

Source§

impl<T> Debug for http::header::map::IntoIter<T>
where T: Debug,

Source§

impl<T> Debug for http::request::Request<T>
where T: Debug,

Source§

impl<T> Debug for Response<T>
where T: Debug,

Source§

impl<T> Debug for Port<T>
where T: Debug,

Source§

impl<T> Debug for OnceBox<T>

Source§

impl<T> Debug for once_cell::sync::OnceCell<T>
where T: Debug,

Source§

impl<T> Debug for once_cell::unsync::OnceCell<T>
where T: Debug,

Source§

impl<T> Debug for portable_atomic::AtomicPtr<T>

Source§

impl<T> Debug for slab::Drain<'_, T>

Source§

impl<T> Debug for slab::IntoIter<T>
where T: Debug,

Source§

impl<T> Debug for slab::Iter<'_, T>
where T: Debug,

Source§

impl<T> Debug for slab::IterMut<'_, T>
where T: Debug,

Source§

impl<T> Debug for Slab<T>
where T: Debug,

1.41.0 · Source§

impl<T> Debug for MaybeUninit<T>

Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::btree_set::Entry<'_, T, A>
where T: Debug + Ord, A: Allocator + Clone,

1.0.0 · Source§

impl<T, A> Debug for Box<T, A>
where T: Debug + ?Sized, A: Allocator,

1.17.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::binary_heap::IntoIter<T, A>
where T: Debug, A: Allocator,

Source§

impl<T, A> Debug for IntoIterSorted<T, A>
where T: Debug, A: Debug + Allocator,

1.17.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::binary_heap::PeekMut<'_, T, A>
where T: Ord + Debug, A: Allocator,

1.17.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::btree_set::Difference<'_, T, A>
where T: Debug, A: Allocator + Clone,

1.17.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::btree_set::Intersection<'_, T, A>
where T: Debug, A: Allocator + Clone,

1.0.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::btree_set::IntoIter<T, A>
where T: Debug, A: Debug + Allocator + Clone,

Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::btree_set::OccupiedEntry<'_, T, A>
where T: Debug + Ord, A: Allocator + Clone,

Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::btree_set::VacantEntry<'_, T, A>
where T: Debug + Ord, A: Allocator + Clone,

Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::linked_list::Cursor<'_, T, A>
where T: Debug, A: Allocator,

Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::linked_list::CursorMut<'_, T, A>
where T: Debug, A: Allocator,

1.17.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::linked_list::IntoIter<T, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, A> Debug for BTreeSet<T, A>
where T: Debug, A: Allocator + Clone,

1.4.0 · Source§

impl<T, A> Debug for BinaryHeap<T, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, A> Debug for LinkedList<T, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, A> Debug for VecDeque<T, A>
where T: Debug, A: Allocator,

1.17.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::vec_deque::Drain<'_, T, A>
where T: Debug, A: Allocator,

1.17.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::collections::vec_deque::IntoIter<T, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, A> Debug for Rc<T, A>
where T: Debug + ?Sized, A: Allocator,

Source§

impl<T, A> Debug for UniqueRc<T, A>
where T: Debug + ?Sized, A: Allocator,

1.4.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::rc::Weak<T, A>
where A: Allocator, T: ?Sized,

1.0.0 · Source§

impl<T, A> Debug for Arc<T, A>
where T: Debug + ?Sized, A: Allocator,

Source§

impl<T, A> Debug for UniqueArc<T, A>
where T: Debug + ?Sized, A: Allocator,

1.4.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::sync::Weak<T, A>
where A: Allocator, T: ?Sized,

1.17.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::vec::Drain<'_, T, A>
where T: Debug, A: Allocator,

1.13.0 · Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::vec::IntoIter<T, A>
where T: Debug, A: Allocator,

Source§

impl<T, A> Debug for wasm_bindgen_x::alloc::vec::PeekMut<'_, T, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, A> Debug for Vec<T, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, E> Debug for Result<T, E>
where T: Debug, E: Debug,

Source§

impl<T, E> Debug for TryChunksError<T, E>
where E: Debug,

Source§

impl<T, E> Debug for TryReadyChunksError<T, E>
where E: Debug,

1.80.0 · Source§

impl<T, F> Debug for LazyCell<T, F>
where T: Debug,

1.34.0 · Source§

impl<T, F> Debug for Successors<T, F>
where T: Debug,

Source§

impl<T, F> Debug for DropGuard<T, F>
where T: Debug, F: FnOnce(T),

1.80.0 · Source§

impl<T, F> Debug for LazyLock<T, F>
where T: Debug,

Source§

impl<T, F> Debug for AlwaysReady<T, F>
where F: Fn() -> T,

Source§

impl<T, F> Debug for once_cell::sync::Lazy<T, F>
where T: Debug,

Source§

impl<T, F> Debug for once_cell::unsync::Lazy<T, F>
where T: Debug,

1.87.0 · Source§

impl<T, F, A> Debug for wasm_bindgen_x::alloc::collections::linked_list::ExtractIf<'_, T, F, A>
where T: Debug, A: Allocator,

Source§

impl<T, F, A> Debug for wasm_bindgen_x::alloc::collections::vec_deque::ExtractIf<'_, T, F, A>
where T: Debug, A: Allocator,

1.87.0 · Source§

impl<T, F, A> Debug for wasm_bindgen_x::alloc::vec::ExtractIf<'_, T, F, A>
where T: Debug, A: Allocator,

Source§

impl<T, F, Fut> Debug for TryUnfold<T, F, Fut>
where T: Debug, Fut: Debug,

Source§

impl<T, F, Fut> Debug for Unfold<T, F, Fut>
where T: Debug, Fut: Debug,

Source§

impl<T, F, R> Debug for spin::lazy::Lazy<T, F, R>
where T: Debug,

Source§

impl<T, F, S> Debug for ScopeGuard<T, F, S>
where T: Debug, F: FnOnce(T), S: Strategy,

1.27.0 · Source§

impl<T, P> Debug for wasm_bindgen_x::alloc::slice::RSplit<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.27.0 · Source§

impl<T, P> Debug for RSplitMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for wasm_bindgen_x::alloc::slice::RSplitN<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for RSplitNMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for wasm_bindgen_x::alloc::slice::Split<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.51.0 · Source§

impl<T, P> Debug for wasm_bindgen_x::alloc::slice::SplitInclusive<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.51.0 · Source§

impl<T, P> Debug for SplitInclusiveMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for SplitMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for wasm_bindgen_x::alloc::slice::SplitN<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for SplitNMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

Source§

impl<T, R> Debug for SpinMutex<T, R>
where T: Debug + ?Sized,

Source§

impl<T, R> Debug for spin::mutex::Mutex<T, R>
where T: Debug + ?Sized,

Source§

impl<T, R> Debug for spin::once::Once<T, R>
where T: Debug,

Source§

impl<T, R> Debug for spin::rwlock::RwLock<T, R>
where T: Debug + ?Sized,

1.91.0 · Source§

impl<T, R, F, A> Debug for wasm_bindgen_x::alloc::collections::btree_set::ExtractIf<'_, T, R, F, A>
where T: Debug, A: Allocator + Clone,

Source§

impl<T, S, A> Debug for std::collections::hash::set::Entry<'_, T, S, A>
where T: Debug, A: Allocator,

1.16.0 · Source§

impl<T, S, A> Debug for std::collections::hash::set::Difference<'_, T, S, A>
where T: Debug + Eq + Hash, S: BuildHasher, A: Allocator,

1.0.0 · Source§

impl<T, S, A> Debug for HashSet<T, S, A>
where T: Debug, A: Allocator,

1.16.0 · Source§

impl<T, S, A> Debug for std::collections::hash::set::Intersection<'_, T, S, A>
where T: Debug + Eq + Hash, S: BuildHasher, A: Allocator,

Source§

impl<T, S, A> Debug for std::collections::hash::set::OccupiedEntry<'_, T, S, A>
where T: Debug, A: Allocator,

1.16.0 · Source§

impl<T, S, A> Debug for std::collections::hash::set::SymmetricDifference<'_, T, S, A>
where T: Debug + Eq + Hash, S: BuildHasher, A: Allocator,

1.16.0 · Source§

impl<T, S, A> Debug for std::collections::hash::set::Union<'_, T, S, A>
where A: Allocator, T: Debug + Eq + Hash, S: BuildHasher,

Source§

impl<T, S, A> Debug for std::collections::hash::set::VacantEntry<'_, T, S, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, U> Debug for std::io::Chain<T, U>
where T: Debug, U: Debug,

Source§

impl<T, U> Debug for bytes::buf::chain::Chain<T, U>
where T: Debug, U: Debug,

Source§

impl<T, U> Debug for futures_util::lock::mutex::MappedMutexGuard<'_, T, U>
where U: Debug + ?Sized, T: ?Sized,

1.0.0 · Source§

impl<T, const N: usize> Debug for [T; N]
where T: Debug,

1.40.0 · Source§

impl<T, const N: usize> Debug for wasm_bindgen_x::inventory::core::array::IntoIter<T, N>
where T: Debug,

Source§

impl<T, const N: usize> Debug for Mask<T, N>

Source§

impl<T, const N: usize> Debug for Simd<T, N>

1.0.0 · Source§

impl<W> Debug for BufWriter<W>
where W: Write + Debug + ?Sized,

1.0.0 · Source§

impl<W> Debug for LineWriter<W>
where W: Write + Debug + ?Sized,

1.0.0 · Source§

impl<W> Debug for IntoInnerError<W>
where W: Debug,

Source§

impl<Y, R> Debug for CoroutineState<Y, R>
where Y: Debug, R: Debug,