pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}
Expand description
?
formatting.
Debug
should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive
a Debug
implementation.
When used with the alternate format specifier #?
, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive]
if all fields implement Debug
. When
derive
d for structs, it will use the name of the struct
, then {
, then a
comma-separated list of each field’s name and Debug
value, then }
. For
enum
s, it will use the name of the variant and, if applicable, (
, then the
Debug
values of the fields, then )
.
§Stability
Derived Debug
formats are not stable, and so may change with future Rust
versions. Additionally, Debug
implementations of types provided by the
standard library (std
, core
, alloc
, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
There are a number of helper methods on the Formatter
struct to help you with manual
implementations, such as debug_struct
.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter
trait (debug_struct
, debug_tuple
,
debug_list
, debug_set
, debug_map
) can do something totally custom by
manually writing an arbitrary representation to the Formatter
.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}
Debug
implementations using either derive
or the debug builder API
on Formatter
support pretty-printing using the alternate flag: {:#?}
.
Pretty-printing with #?
:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
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 PrivateInput
impl Debug for PublicInputError
impl Debug for Dictionary
impl Debug for HashChainError
impl Debug for ProgramHashError
impl Debug for OffsetValue
impl Debug for BuiltinName
impl Debug for MathError
impl Debug for ProgramError
impl Debug for ApUpdate
impl Debug for FpUpdate
impl Debug for Op1Addr
impl Debug for Opcode
impl Debug for PcUpdate
impl Debug for Register
impl Debug for Res
impl Debug for LayoutName
impl Debug for MaybeRelocatable
impl Debug for CairoPieValidationError
impl Debug for CairoRunError
impl Debug for ExecScopeError
impl Debug for HintError
impl Debug for InsufficientAllocatedCellsError
impl Debug for MemoryError
impl Debug for RunnerError
impl Debug for TraceError
impl Debug for VirtualMachineError
impl Debug for BuiltinRunner
impl Debug for BuiltinAdditionalData
impl Debug for CairoArg
impl Debug for RunnerMode
impl Debug for cairo_vm::with_std::cmp::Ordering
impl Debug for Infallible
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for SearchStep
impl Debug for cairo_vm::with_std::sync::atomic::Ordering
impl Debug for RecvTimeoutError
impl Debug for TryRecvError
impl Debug for cairo_vm::with_std::fmt::Alignment
impl Debug for alloc::collections::TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for c_void
impl Debug for IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for core::net::socket_addr::SocketAddr
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for SeekFrom
impl Debug for std::io::error::ErrorKind
impl Debug for Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for _Unwind_Reason_Code
impl Debug for allocator_api2::stable::raw_vec::TryReserveErrorKind
impl Debug for LegendreSymbol
impl Debug for SerializationError
impl Debug for ark_std::io::error::ErrorKind
impl Debug for AllowedEnumVariants
impl Debug for bincode::error::DecodeError
impl Debug for bincode::error::EncodeError
impl Debug for IntegerType
impl Debug for bincode::features::serde::DecodeError
impl Debug for bincode::features::serde::EncodeError
impl Debug for BigEndian
impl Debug for LittleEndian
impl Debug for TruncSide
impl Debug for FlushCompress
impl Debug for FlushDecompress
impl Debug for Status
impl Debug for hashbrown::TryReserveError
impl Debug for FromHexError
impl Debug for SrsFromFileError
impl Debug for lambdaworks_crypto::merkle_tree::merkle::Error
impl Debug for EllipticCurveError
impl Debug for ByteConversionError
impl Debug for CreationError
impl Debug for DeserializationError
impl Debug for PairingError
impl Debug for FFTError
impl Debug for FieldError
impl Debug for MSMError
impl Debug for InterpolateError
impl Debug for PrefilterConfig
impl Debug for CompressionStrategy
impl Debug for TDEFLFlush
impl Debug for TDEFLStatus
impl Debug for CompressionLevel
impl Debug for DataFormat
impl Debug for MZError
impl Debug for MZFlush
impl Debug for MZStatus
impl Debug for TINFLStatus
impl Debug for nom::error::ErrorKind
impl Debug for Needed
impl Debug for Endianness
impl Debug for CompareResult
impl Debug for Sign
impl Debug for Primality
impl Debug for FloatErrorKind
impl Debug for BernoulliError
impl Debug for WeightedError
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
impl Debug for RoundingStrategy
impl Debug for rust_decimal::error::Error
impl Debug for Category
impl Debug for Value
impl Debug for RecoverError
impl Debug for SignError
impl Debug for VerifyError
impl Debug for FromByteSliceError
impl Debug for starknet_ff::from_str_error::FromStrError
impl Debug for CurveError
impl Debug for CompressionMethod
impl Debug for ZipError
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 AirPrivateInput
impl Debug for AirPrivateInputSerializable
impl Debug for ModInput
impl Debug for ModInputInstance
impl Debug for ModInputMemoryVars
impl Debug for PrivateInputEcOp
impl Debug for PrivateInputKeccakState
impl Debug for PrivateInputPair
impl Debug for PrivateInputPoseidonState
impl Debug for PrivateInputSignature
impl Debug for PrivateInputValue
impl Debug for SignatureInput
impl Debug for MemorySegmentAddresses
impl Debug for PublicMemoryEntry
impl Debug for EncodeTraceError
impl Debug for DictManager
impl Debug for DictTracker
impl Debug for HintReference
impl Debug for ApTracking
impl Debug for Attribute
impl Debug for DebugInfo
impl Debug for FlowTrackingData
impl Debug for HintLocation
impl Debug for HintParams
impl Debug for Identifier
impl Debug for InputFile
impl Debug for InstructionLocation
impl Debug for cairo_vm::serde::deserialize_program::Location
impl Debug for Member
impl Debug for ProgramJson
impl Debug for Reference
impl Debug for ReferenceManager
impl Debug for ValueAddress
impl Debug for String
impl Debug for Felt
impl Debug for ExecutionScopes
impl Debug for LowRatio
impl Debug for Instruction
impl Debug for CairoLayout
impl Debug for CairoLayoutParams
impl Debug for RawCairoLayoutParams
impl Debug for Program
impl Debug for Relocatable
impl Debug for VmException
impl Debug for BitwiseBuiltinRunner
impl Debug for EcOpBuiltinRunner
impl Debug for HashBuiltinRunner
impl Debug for KeccakBuiltinRunner
impl Debug for ModBuiltinRunner
impl Debug for OutputBuiltinRunner
impl Debug for OutputBuiltinState
impl Debug for PoseidonBuiltinRunner
impl Debug for SegmentArenaBuiltinRunner
impl Debug for SignatureBuiltinRunner
impl Debug for CairoPie
impl Debug for CairoPieAdditionalData
impl Debug for CairoPieMemory
impl Debug for CairoPieMetadata
impl Debug for CairoPieVersion
impl Debug for OutputBuiltinAdditionalData
impl Debug for PublicMemoryPage
impl Debug for cairo_vm::vm::runners::cairo_pie::SegmentInfo
impl Debug for StrippedProgram
impl Debug for ExecutionResources
impl Debug for RunResources
impl Debug for cairo_vm::vm::runners::cairo_runner::SegmentInfo
impl Debug for RelocatedTraceEntry
impl Debug for TraceEntry
impl Debug for DeducedOperands
impl Debug for Operands
impl Debug for OperandsAddresses
impl Debug for cairo_vm::with_std::alloc::AllocError
impl Debug for cairo_vm::with_std::alloc::Global
impl Debug for Layout
impl Debug for LayoutError
impl Debug for System
impl Debug for TypeId
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for DefaultHasher
impl Debug for cairo_vm::with_std::hash::RandomState
impl Debug for SipHasher
impl Debug for PhantomPinned
impl Debug for Assume
impl Debug for cairo_vm::with_std::num::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for cairo_vm::with_std::ptr::Alignment
impl Debug for Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for ParseBoolError
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for cairo_vm::with_std::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
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 RecvError
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for Condvar
impl Debug for cairo_vm::with_std::sync::Once
impl Debug for OnceState
impl Debug for WaitTimeoutResult
impl Debug for Duration
impl Debug for TryFromFloatSecsError
impl Debug for UnorderedKeyError
impl Debug for alloc::collections::TryReserveError
impl Debug for CString
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for TryFromSliceError
impl Debug for core::ascii::EscapeDefault
impl Debug for CharTryFromError
impl Debug for ParseCharError
impl Debug for DecodeUtf16Error
impl Debug for core::char::EscapeDebug
impl Debug for core::char::EscapeDefault
impl Debug for core::char::EscapeUnicode
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for CpuidResult
impl Debug for __m128
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128h
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for bf16
impl Debug for CStr
impl Debug for FromBytesUntilNulError
impl Debug for FromBytesWithNulError
impl Debug for BorrowedBuf<'_>
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for PanicMessage<'_>
impl Debug for Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for OsStr
impl Debug for OsString
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for File
impl Debug for FileTimes
impl Debug for FileType
impl Debug for Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for WriterPanicked
impl Debug for std::io::error::Error
impl Debug for Stderr
impl Debug for StderrLock<'_>
impl Debug for Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdout
impl Debug for StdoutLock<'_>
impl Debug for std::io::util::Empty
impl Debug for std::io::util::Repeat
impl Debug for Sink
impl Debug for IntoIncoming
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for UdpSocket
impl Debug for BorrowedFd<'_>
impl Debug for OwnedFd
impl Debug for PidFd
impl Debug for std::os::unix::net::addr::SocketAddr
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for UCred
impl Debug for Components<'_>
impl Debug for std::path::Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for 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 AccessError
impl Debug for Scope<'_, '_>
impl Debug for Builder
impl Debug for Thread
impl Debug for ThreadId
impl Debug for Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for Adler32
impl Debug for allocator_api2::stable::alloc::global::Global
impl Debug for allocator_api2::stable::alloc::AllocError
impl Debug for allocator_api2::stable::raw_vec::TryReserveError
impl Debug for anyhow::Error
impl Debug for ark_std::io::error::Error
impl Debug for BitSafeU8
impl Debug for BitSafeU16
impl Debug for BitSafeU32
impl Debug for BitSafeU64
impl Debug for BitSafeUsize
impl Debug for Lsb0
impl Debug for Msb0
impl Debug for Eager
impl Debug for block_buffer::Error
impl Debug for Lazy
impl Debug for Hasher
impl Debug for CtChoice
impl Debug for Limb
impl Debug for Reciprocal
impl Debug for InvalidLength
impl Debug for MacError
impl Debug for InvalidBufferSize
impl Debug for InvalidOutputSize
impl Debug for Crc
impl Debug for GzBuilder
impl Debug for GzHeader
impl Debug for Compress
impl Debug for CompressError
impl Debug for Decompress
impl Debug for flate2::mem::DecompressError
impl Debug for Compression
impl Debug for foldhash::seed::fast::FixedState
impl Debug for foldhash::seed::fast::RandomState
impl Debug for foldhash::seed::quality::FixedState
impl Debug for foldhash::seed::quality::RandomState
impl Debug for getrandom::error::Error
impl Debug for BandersnatchCurve
impl Debug for FqConfig
impl Debug for Ed448Goldilocks
impl Debug for TinyJubJubEdwards
impl Debug for TinyJubJubMontgomery
impl Debug for BLS12377Curve
impl Debug for BLS12377FieldModulus
impl Debug for BLS12381Curve
impl Debug for lambdaworks_math::elliptic_curve::short_weierstrass::curves::bls12_381::default_types::FrConfig
impl Debug for BLS12381FieldModulus
impl Debug for Degree2ExtensionField
impl Debug for lambdaworks_math::elliptic_curve::short_weierstrass::curves::bls12_381::field_extension::LevelThreeResidue
impl Debug for lambdaworks_math::elliptic_curve::short_weierstrass::curves::bls12_381::field_extension::LevelTwoResidue
impl Debug for BLS12381TwistCurve
impl Debug for BN254Curve
impl Debug for lambdaworks_math::elliptic_curve::short_weierstrass::curves::bn_254::default_types::FrConfig
impl Debug for BN254FieldModulus
impl Debug for BN254Residue
impl Debug for lambdaworks_math::elliptic_curve::short_weierstrass::curves::bn_254::field_extension::LevelThreeResidue
impl Debug for lambdaworks_math::elliptic_curve::short_weierstrass::curves::bn_254::field_extension::LevelTwoResidue
impl Debug for BN254TwistCurve
impl Debug for lambdaworks_math::elliptic_curve::short_weierstrass::curves::grumpkin::curve::FrConfig
impl Debug for GrumpkinCurve
impl Debug for GrumpkinFieldModulus
impl Debug for PallasCurve
impl Debug for StarkCurve
impl Debug for TestCurve1
impl Debug for TestCurveQuadraticNonResidue
impl Debug for TestCurve2
impl Debug for TestCurve2Modulus
impl Debug for TestCurve2QuadraticNonResidue
impl Debug for VestaCurve
impl Debug for MontgomeryConfigBabybear31PrimeField
impl Debug for MontgomeryConfigStark252PrimeField
impl Debug for MontgomeryConfigU64GoldilocksPrimeField
impl Debug for MontgomeryConfigMersenne31PrimeField
impl Debug for Mersenne31Complex
impl Debug for Mersenne31Field
impl Debug for P448GoldilocksPrimeField
impl Debug for U56x8
impl Debug for MontgomeryConfigPallas255PrimeField
impl Debug for Goldilocks64Field
impl Debug for MontgomeryConfigVesta255PrimeField
impl Debug for TestNonResidue
impl Debug for memchr::arch::all::memchr::One
impl Debug for memchr::arch::all::memchr::Three
impl Debug for memchr::arch::all::memchr::Two
impl Debug for memchr::arch::all::packedpair::Finder
impl Debug for Pair
impl Debug for memchr::arch::all::rabinkarp::Finder
impl Debug for memchr::arch::all::rabinkarp::FinderRev
impl Debug for memchr::arch::all::shiftor::Finder
impl Debug for memchr::arch::all::twoway::Finder
impl Debug for memchr::arch::all::twoway::FinderRev
impl Debug for memchr::arch::x86_64::avx2::memchr::One
impl Debug for memchr::arch::x86_64::avx2::memchr::Three
impl Debug for memchr::arch::x86_64::avx2::memchr::Two
impl Debug for memchr::arch::x86_64::avx2::packedpair::Finder
impl Debug for memchr::arch::x86_64::sse2::memchr::One
impl Debug for memchr::arch::x86_64::sse2::memchr::Three
impl Debug for memchr::arch::x86_64::sse2::memchr::Two
impl Debug for memchr::arch::x86_64::sse2::packedpair::Finder
impl Debug for FinderBuilder
impl Debug for miniz_oxide::inflate::DecompressError
impl Debug for StreamResult
impl Debug for num_bigint::bigint::BigInt
impl Debug for RandomBits
impl Debug for UniformBigInt
impl Debug for UniformBigUint
impl Debug for BigUint
impl Debug for ParseBigIntError
impl Debug for udouble
impl Debug for FactorizationConfig
impl Debug for PrimalityTestConfig
impl Debug for num_traits::ParseFloatError
impl Debug for Bernoulli
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for Alphanumeric
impl Debug for Standard
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for ReadError
impl Debug for StepRng
impl Debug for SmallRng
impl Debug for StdRng
impl Debug for ThreadRng
impl Debug for ChaCha8Core
impl Debug for ChaCha8Rng
impl Debug for ChaCha12Core
impl Debug for ChaCha12Rng
impl Debug for ChaCha20Core
impl Debug for ChaCha20Rng
impl Debug for rand_core::error::Error
impl Debug for OsRng
impl Debug for Decimal
impl Debug for IgnoredAny
impl Debug for serde::de::value::Error
impl Debug for serde_json::error::Error
impl Debug for serde_json::map::Map<String, Value>
impl Debug for Number
impl Debug for CompactFormatter
impl Debug for Sha256VarCore
impl Debug for Sha512VarCore
impl Debug for CShake128Core
impl Debug for CShake256Core
impl Debug for Keccak224Core
impl Debug for Keccak256Core
impl Debug for Keccak256FullCore
impl Debug for Keccak384Core
impl Debug for Keccak512Core
impl Debug for Sha3_224Core
impl Debug for Sha3_256Core
impl Debug for Sha3_384Core
impl Debug for Sha3_512Core
impl Debug for Shake128Core
impl Debug for Shake256Core
impl Debug for TurboShake128Core
impl Debug for TurboShake256Core
impl Debug for ExtendedSignature
impl Debug for Signature
impl Debug for PoseidonHasher
impl Debug for starknet_curve::ec_point::AffinePoint
impl Debug for starknet_curve::ec_point::ProjectivePoint
impl Debug for FromByteArrayError
impl Debug for starknet_ff::FieldElement
impl Debug for ValueOutOfRangeError
impl Debug for starknet_types_core::curve::affine_point::AffinePoint
impl Debug for starknet_types_core::curve::projective_point::ProjectivePoint
impl Debug for FeltIsZeroError
impl Debug for starknet_types_core::felt::FromStrError
impl Debug for NonZeroFelt
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 Const
impl Debug for Mut
impl Debug for NullPtrError
impl Debug for ZipStreamFileMetadata
impl Debug for DateTimeRangeError
impl Debug for InvalidPassword
impl Debug for DateTime
impl Debug for Arguments<'_>
impl Debug for cairo_vm::with_std::fmt::Error
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for IndexVecIter<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for PublicInput<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for cairo_vm::with_std::str::Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for cairo_vm::with_std::str::EscapeDebug<'a>
impl<'a> Debug for cairo_vm::with_std::str::EscapeDefault<'a>
impl<'a> Debug for cairo_vm::with_std::str::EscapeUnicode<'a>
impl<'a> Debug for cairo_vm::with_std::str::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for 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 core::panic::location::Location<'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 SocketAncillary<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'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 PrettyFormatter<'a>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'f> Debug for VaList<'a, 'f>where
'f: 'a,
impl<'a, 'h> Debug for memchr::arch::all::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::TwoIter<'a, 'h>
impl<'a, A> Debug for core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
impl<'a, E> Debug for StrDeserializer<'a, E>
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I, A> Debug for cairo_vm::with_std::vec::Splice<'a, I, A>
impl<'a, I, A> Debug for allocator_api2::stable::vec::splice::Splice<'a, I, A>
impl<'a, K, F> Debug for std::collections::hash::set::ExtractIf<'a, K, F>
impl<'a, K, V, F> Debug for std::collections::hash::map::ExtractIf<'a, K, V, F>
impl<'a, M, T, O> Debug for BitDomain<'a, M, T, O>where
M: Mutability,
T: 'a + BitStore,
O: BitOrder,
Address<M, BitSlice<T, O>>: Referential<'a>,
Address<M, BitSlice<<T as BitStore>::Unalias, O>>: Referential<'a>,
<Address<M, BitSlice<T, O>> as Referential<'a>>::Ref: Debug,
<Address<M, BitSlice<<T as BitStore>::Unalias, O>> as Referential<'a>>::Ref: Debug,
impl<'a, M, T, O> Debug for Domain<'a, M, T, O>where
M: Mutability,
T: 'a + BitStore,
O: BitOrder,
Address<M, T>: Referential<'a>,
Address<M, [<T as BitStore>::Unalias]>: SliceReferential<'a>,
<Address<M, [<T as BitStore>::Unalias]> as Referential<'a>>::Ref: Debug,
impl<'a, M, T, O> Debug for PartialElement<'a, M, T, O>
impl<'a, P> Debug for MatchIndices<'a, P>
impl<'a, P> Debug for Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for cairo_vm::with_std::str::RSplit<'a, P>
impl<'a, P> Debug for cairo_vm::with_std::str::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for cairo_vm::with_std::str::Split<'a, P>
impl<'a, P> Debug for cairo_vm::with_std::str::SplitInclusive<'a, P>
impl<'a, P> Debug for cairo_vm::with_std::str::SplitN<'a, P>
impl<'a, P> Debug for SplitTerminator<'a, P>
impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>
impl<'a, T> Debug for cairo_vm::with_std::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::slice::Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::slice::ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::slice::ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::slice::ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::slice::RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::slice::RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::slice::RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::slice::RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::slice::Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::sync::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for cairo_vm::with_std::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Slice<'a, T>where
T: Debug,
impl<'a, T> Debug for Ptr<'a, T>where
T: 'a + ?Sized,
impl<'a, T, A> Debug for alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, F, A> Debug for cairo_vm::with_std::vec::ExtractIf<'a, T, F, A>
impl<'a, T, O> Debug for bitvec::slice::iter::Chunks<'a, T, O>
impl<'a, T, O> Debug for bitvec::slice::iter::ChunksExact<'a, T, O>
impl<'a, T, O> Debug for bitvec::slice::iter::ChunksExactMut<'a, T, O>
impl<'a, T, O> Debug for bitvec::slice::iter::ChunksMut<'a, T, O>
impl<'a, T, O> Debug for IterOnes<'a, T, O>
impl<'a, T, O> Debug for IterZeros<'a, T, O>
impl<'a, T, O> Debug for bitvec::slice::iter::RChunks<'a, T, O>
impl<'a, T, O> Debug for bitvec::slice::iter::RChunksExact<'a, T, O>
impl<'a, T, O> Debug for bitvec::slice::iter::RChunksExactMut<'a, T, O>
impl<'a, T, O> Debug for bitvec::slice::iter::RChunksMut<'a, T, O>
impl<'a, T, O> Debug for bitvec::slice::iter::Windows<'a, T, O>
impl<'a, T, O, I> Debug for bitvec::vec::iter::Splice<'a, T, O, I>
impl<'a, T, P> Debug for ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for cairo_vm::with_std::slice::ArrayChunks<'a, T, N>where
T: Debug + 'a,
impl<'a, T, const N: usize> Debug for ArrayChunksMut<'a, T, N>where
T: Debug + 'a,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>
impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>
impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
impl<'f> Debug for VaListImpl<'f>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'n> Debug for memchr::memmem::Finder<'n>
impl<'n> Debug for memchr::memmem::FinderRev<'n>
impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>
impl<A> Debug for cairo_vm::with_std::iter::Repeat<A>where
A: Debug,
impl<A> Debug for RepeatN<A>where
A: Debug,
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for IterRange<A>where
A: Debug,
impl<A> Debug for IterRangeFrom<A>where
A: Debug,
impl<A> Debug for IterRangeInclusive<A>where
A: Debug,
impl<A> Debug for ExtendedGcd<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, B> Debug for cairo_vm::with_std::iter::Chain<A, B>
impl<A, B> Debug for Zip<A, B>
impl<A, O> Debug for bitvec::array::iter::IntoIter<A, O>where
A: BitViewSized,
O: BitOrder,
impl<A, O> Debug for BitArray<A, O>where
A: BitViewSized,
O: BitOrder,
impl<B> Debug for Cow<'_, B>
impl<B> Debug for std::io::Lines<B>where
B: Debug,
impl<B> Debug for std::io::Split<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>
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<D> Debug for HmacCore<D>where
D: CoreProxy,
<D as CoreProxy>::Core: HashMarker + AlgorithmName + UpdateCore + FixedOutputCore<BufferKind = Eager> + BufferKindUser + Default + Clone,
<<D as CoreProxy>::Core as BlockSizeUser>::BlockSize: IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>,
<<<D as CoreProxy>::Core as BlockSizeUser>::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<D> Debug for SimpleHmac<D>
impl<D, F, T, S> Debug for DistMap<D, F, T, S>
impl<D, R, T> Debug for DistIter<D, R, T>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for Err<E>where
E: Debug,
impl<E> Debug for Report<E>
impl<E> Debug for EdwardsProjectivePoint<E>where
E: Debug + IsEllipticCurve,
impl<E> Debug for MontgomeryProjectivePoint<E>where
E: Debug + IsEllipticCurve,
impl<E> Debug for lambdaworks_math::elliptic_curve::point::ProjectivePoint<E>
impl<E> Debug for ShortWeierstrassProjectivePoint<E>where
E: Debug + IsEllipticCurve,
impl<E> Debug for BoolDeserializer<E>
impl<E> Debug for CharDeserializer<E>
impl<E> Debug for F32Deserializer<E>
impl<E> Debug for F64Deserializer<E>
impl<E> Debug for I8Deserializer<E>
impl<E> Debug for I16Deserializer<E>
impl<E> Debug for I32Deserializer<E>
impl<E> Debug for I64Deserializer<E>
impl<E> Debug for I128Deserializer<E>
impl<E> Debug for IsizeDeserializer<E>
impl<E> Debug for StringDeserializer<E>
impl<E> Debug for U8Deserializer<E>
impl<E> Debug for U16Deserializer<E>
impl<E> Debug for U32Deserializer<E>
impl<E> Debug for U64Deserializer<E>
impl<E> Debug for U128Deserializer<E>
impl<E> Debug for UnitDeserializer<E>
impl<E> Debug for UsizeDeserializer<E>
impl<F> Debug for cairo_vm::with_std::iter::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for RepeatWith<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for PollFn<F>
impl<F> Debug for lambdaworks_math::field::element::FieldElement<F>
impl<F> Debug for DenseMultilinearPolynomial<F>
impl<F> Debug for cairo_vm::with_std::fmt::FromFn<F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<F, T> Debug for CubicExtensionField<F, T>
impl<F, T> Debug for QuadraticExtensionField<F, T>
impl<FE> Debug for Polynomial<FE>where
FE: Debug,
impl<G1Point, G2Point> Debug for StructuredReferenceString<G1Point, G2Point>
impl<H> Debug for BuildHasherDefault<H>
impl<I> Debug for Cloned<I>where
I: Debug,
impl<I> Debug for Copied<I>where
I: Debug,
impl<I> Debug for Cycle<I>where
I: Debug,
impl<I> Debug for Enumerate<I>where
I: Debug,
impl<I> Debug for Fuse<I>where
I: Debug,
impl<I> Debug for Intersperse<I>
impl<I> Debug for Peekable<I>
impl<I> Debug for Skip<I>where
I: Debug,
impl<I> Debug for StepBy<I>where
I: Debug,
impl<I> Debug for cairo_vm::with_std::iter::Take<I>where
I: Debug,
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for nom::error::Error<I>where
I: Debug,
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, F> Debug for FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for Inspect<I, F>where
I: Debug,
impl<I, F> Debug for cairo_vm::with_std::iter::Map<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for IntersperseWith<I, G>
impl<I, M> Debug for Montgomery<I, M>
impl<I, P> Debug for Filter<I, P>where
I: Debug,
impl<I, P> Debug for MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeWhile<I, P>where
I: Debug,
impl<I, St, F> Debug for Scan<I, St, F>
impl<I, U> Debug for Flatten<I>
impl<I, U, F> Debug for FlatMap<I, U, F>
impl<I, const N: usize> Debug for cairo_vm::with_std::iter::ArrayChunks<I, N>
impl<Idx> Debug for cairo_vm::with_std::ops::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for cairo_vm::with_std::ops::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for cairo_vm::with_std::ops::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Inner> Debug for Frozen<Inner>where
Inner: Debug + Mutability,
impl<K> Debug for alloc::collections::btree::set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Drain<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::IntoIter<K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K> Debug for hashbrown::set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, A> Debug for hashbrown::set::Drain<'_, K, A>
impl<K, A> Debug for hashbrown::set::IntoIter<K, A>
impl<K, Q, V, S, A> Debug for EntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for VacantEntryRef<'_, '_, K, Q, V, S, A>
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Drain<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashbrown::map::Iter<'_, K, V>
impl<K, V> Debug for hashbrown::map::IterMut<'_, K, V>
impl<K, V> Debug for hashbrown::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for hashbrown::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashbrown::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>
impl<K, V, A> Debug for hashbrown::map::Drain<'_, K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoIter<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoValues<K, V, A>
impl<K, V, F> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, F>
impl<K, V, S> Debug for std::collections::hash::map::RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for cairo_vm::with_std::collections::HashMap<K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawVacantEntryMut<'_, K, V, S>
impl<K, V, S> Debug for LruCache<K, V, S>
impl<K, V, S, A> Debug for hashbrown::map::Entry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::raw_entry::RawEntryMut<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::HashMap<K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedEntry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedError<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::VacantEntry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::raw_entry::RawEntryBuilder<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for hashbrown::raw_entry::RawEntryBuilderMut<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for hashbrown::raw_entry::RawOccupiedEntryMut<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::raw_entry::RawVacantEntryMut<'_, K, V, S, A>where
A: Allocator,
impl<L, R> Debug for Either<L, R>
impl<L, R> Debug for IterEither<L, R>
impl<M, T> Debug for Address<M, T>where
M: Mutability,
T: ?Sized,
impl<M, T, O> Debug for BitRef<'_, M, T, O>
impl<M, T, O> Debug for BitPtrRange<M, T, O>
impl<M, T, O> Debug for BitPtr<M, T, O>
impl<M, const NUM_LIMBS: usize> Debug for MontgomeryBackendPrimeField<M, NUM_LIMBS>where
M: Debug,
impl<MOD, const LIMBS: usize> Debug for Residue<MOD, LIMBS>where
MOD: Debug + ResidueParams<LIMBS>,
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 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<P> Debug for CubicExtField<P>where
P: CubicExtConfig,
impl<P> Debug for QuadExtField<P>where
P: QuadExtConfig,
impl<P, const N: usize> Debug for Fp<P, N>where
P: FpConfig<N>,
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<R> Debug for BufReader<R>
impl<R> Debug for std::io::Bytes<R>where
R: Debug,
impl<R> Debug for BitEnd<R>where
R: BitRegister,
impl<R> Debug for BitIdx<R>where
R: BitRegister,
impl<R> Debug for BitIdxError<R>where
R: BitRegister,
impl<R> Debug for BitMask<R>where
R: BitRegister,
impl<R> Debug for BitPos<R>where
R: BitRegister,
impl<R> Debug for BitSel<R>where
R: BitRegister,
impl<R> Debug for CrcReader<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibEncoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibEncoder<R>where
R: Debug,
impl<R> Debug for ReadRng<R>where
R: Debug,
impl<R> Debug for BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for ZipStreamReader<R>where
R: Debug,
impl<R> Debug for ZipArchive<R>where
R: Debug,
impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>
impl<Slice> Debug for BitIteratorBE<Slice>
impl<Slice> Debug for BitIteratorLE<Slice>
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for TryLockError<T>
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for TrySendError<T>
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for BitPtrError<T>
impl<T> Debug for BitSpanError<T>where
T: BitStore,
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)
This trait is implemented for tuples up to twelve items long.