pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}Expand description
? formatting.
Debug should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive a Debug implementation.
When used with the alternate format specifier #?, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive] if all fields implement Debug. When
derived for structs, it will use the name of the struct, then {, then a
comma-separated list of each field’s name and Debug value, then }. For
enums, it will use the name of the variant and, if applicable, (, then the
Debug values of the fields, then ).
§Stability
Derived Debug formats are not stable, and so may change with future Rust
versions. Additionally, Debug implementations of types provided by the
standard library (std, core, alloc, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);There are a number of helper methods on the Formatter struct to help you with manual
implementations, such as debug_struct.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter trait (debug_struct, debug_tuple,
debug_list, debug_set, debug_map) can do something totally custom by
manually writing an arbitrary representation to the Formatter.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}Debug implementations using either derive or the debug builder API
on Formatter support pretty-printing using the alternate flag: {:#?}.
Pretty-printing with #?:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err if, and only if, the provided Formatter returns Err.
String formatting is considered an infallible operation; this function only
returns a Result because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");Implementors§
impl Debug for snarkvm_console_algorithms::bech32::Error
impl Debug for Variant
impl Debug for snarkvm_console_algorithms::ErrorKind
impl Debug for snarkvm_console_algorithms::Ordering
impl Debug for snarkvm_console_algorithms::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for snarkvm_console_algorithms::fmt::Sign
impl Debug for SearchStep
impl Debug for TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for AtomicOrdering
impl Debug for IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for core::net::socket_addr::SocketAddr
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for objc_class
impl Debug for objc_selector
impl Debug for core::slice::GetDisjointMutError
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for std::fs::TryLockError
impl Debug for SeekFrom
impl Debug for std::io::error::ErrorKind
impl Debug for Shutdown
impl Debug for BacktraceStyle
impl Debug for RecvTimeoutError
impl Debug for TryRecvError
impl Debug for Cpu
impl Debug for base16ct::error::Error
impl Debug for bincode::error::ErrorKind
impl Debug for const_oid::error::Error
impl Debug for der::error::ErrorKind
impl Debug for Class
impl Debug for der::tag::Tag
impl Debug for TagMode
impl Debug for TruncSide
impl Debug for hashbrown::TryReserveError
impl Debug for FromHexError
impl Debug for indexmap::GetDisjointMutError
impl Debug for Position
impl Debug for qos_class_t
impl Debug for sysdir_search_path_directory_t
impl Debug for sysdir_search_path_domain_mask_t
impl Debug for timezone
impl Debug for DIR
impl Debug for FILE
impl Debug for fpos_t
impl Debug for PrefilterConfig
impl Debug for VerboseErrorKind
impl Debug for Needed
impl Debug for Endianness
impl Debug for CompareResult
impl Debug for num_bigint::bigint::Sign
impl Debug for FloatErrorKind
impl Debug for BernoulliError
impl Debug for WeightedError
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
impl Debug for Yield
impl Debug for sec1::error::Error
impl Debug for EcParameters
impl Debug for sec1::point::Tag
impl Debug for Category
impl Debug for Value
impl Debug for CollectionAllocErr
impl Debug for GroupError
impl Debug for ConstraintFieldError
impl Debug for FieldError
impl Debug for LegendreSymbol
impl Debug for SerializationError
impl Debug for BigEndian
impl Debug for LittleEndian
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 u5
impl Debug for IgnoredAny
impl Debug for snarkvm_console_algorithms::de::value::Error
impl Debug for Arguments<'_>
impl Debug for snarkvm_console_algorithms::fmt::Error
impl Debug for FormattingOptions
impl Debug for snarkvm_console_algorithms::str::Chars<'_>
impl Debug for snarkvm_console_algorithms::str::EncodeUtf16<'_>
impl Debug for ParseBoolError
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for Alphanumeric
impl Debug for Console
impl Debug for ECDSASignature
impl Debug for snarkvm_console_algorithms::Error
impl Debug for Standard
impl Debug for Global
impl Debug for ByteString
impl Debug for UnorderedKeyError
impl Debug for alloc::collections::TryReserveError
impl Debug for CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for String
impl Debug for Layout
impl Debug for LayoutError
impl Debug for core::alloc::AllocError
impl Debug for TypeId
impl Debug for TryFromSliceError
impl Debug for core::ascii::EscapeDefault
impl Debug for ByteStr
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for ParseCharError
impl Debug for DecodeUtf16Error
impl Debug for core::char::EscapeDebug
impl Debug for core::char::EscapeDefault
impl Debug for core::char::EscapeUnicode
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for float64x1_t
impl Debug for float64x1x2_t
impl Debug for float64x1x3_t
impl Debug for float64x1x4_t
impl Debug for float64x2_t
impl Debug for float64x2x2_t
impl Debug for float64x2x3_t
impl Debug for float64x2x4_t
impl Debug for float16x4_t
impl Debug for float16x4x2_t
impl Debug for float16x4x3_t
impl Debug for float16x4x4_t
impl Debug for float16x8_t
impl Debug for float16x8x2_t
impl Debug for float16x8x3_t
impl Debug for float16x8x4_t
impl Debug for float32x2_t
impl Debug for float32x2x2_t
impl Debug for float32x2x3_t
impl Debug for float32x2x4_t
impl Debug for float32x4_t
impl Debug for float32x4x2_t
impl Debug for float32x4x3_t
impl Debug for float32x4x4_t
impl Debug for int8x8_t
impl Debug for int8x8x2_t
impl Debug for int8x8x3_t
impl Debug for int8x8x4_t
impl Debug for int8x16_t
impl Debug for int8x16x2_t
impl Debug for int8x16x3_t
impl Debug for int8x16x4_t
impl Debug for int16x4_t
impl Debug for int16x4x2_t
impl Debug for int16x4x3_t
impl Debug for int16x4x4_t
impl Debug for int16x8_t
impl Debug for int16x8x2_t
impl Debug for int16x8x3_t
impl Debug for int16x8x4_t
impl Debug for int32x2_t
impl Debug for int32x2x2_t
impl Debug for int32x2x3_t
impl Debug for int32x2x4_t
impl Debug for int32x4_t
impl Debug for int32x4x2_t
impl Debug for int32x4x3_t
impl Debug for int32x4x4_t
impl Debug for int64x1_t
impl Debug for int64x1x2_t
impl Debug for int64x1x3_t
impl Debug for int64x1x4_t
impl Debug for int64x2_t
impl Debug for int64x2x2_t
impl Debug for int64x2x3_t
impl Debug for int64x2x4_t
impl Debug for poly8x8_t
impl Debug for poly8x8x2_t
impl Debug for poly8x8x3_t
impl Debug for poly8x8x4_t
impl Debug for poly8x16_t
impl Debug for poly8x16x2_t
impl Debug for poly8x16x3_t
impl Debug for poly8x16x4_t
impl Debug for poly16x4_t
impl Debug for poly16x4x2_t
impl Debug for poly16x4x3_t
impl Debug for poly16x4x4_t
impl Debug for poly16x8_t
impl Debug for poly16x8x2_t
impl Debug for poly16x8x3_t
impl Debug for poly16x8x4_t
impl Debug for poly64x1_t
impl Debug for poly64x1x2_t
impl Debug for poly64x1x3_t
impl Debug for poly64x1x4_t
impl Debug for poly64x2_t
impl Debug for poly64x2x2_t
impl Debug for poly64x2x3_t
impl Debug for poly64x2x4_t
impl Debug for uint8x8_t
impl Debug for uint8x8x2_t
impl Debug for uint8x8x3_t
impl Debug for uint8x8x4_t
impl Debug for uint8x16_t
impl Debug for uint8x16x2_t
impl Debug for uint8x16x3_t
impl Debug for uint8x16x4_t
impl Debug for uint16x4_t
impl Debug for uint16x4x2_t
impl Debug for uint16x4x3_t
impl Debug for uint16x4x4_t
impl Debug for uint16x8_t
impl Debug for uint16x8x2_t
impl Debug for uint16x8x3_t
impl Debug for uint16x8x4_t
impl Debug for uint32x2_t
impl Debug for uint32x2x2_t
impl Debug for uint32x2x3_t
impl Debug for uint32x2x4_t
impl Debug for uint32x4_t
impl Debug for uint32x4x2_t
impl Debug for uint32x4x3_t
impl Debug for uint32x4x4_t
impl Debug for uint64x1_t
impl Debug for uint64x1x2_t
impl Debug for uint64x1x3_t
impl Debug for uint64x1x4_t
impl Debug for uint64x2_t
impl Debug for uint64x2x2_t
impl Debug for uint64x2x3_t
impl Debug for uint64x2x4_t
impl Debug for CStr
Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
impl Debug for FromBytesUntilNulError
impl Debug for SipHasher
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomPinned
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for Assume
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for core::num::dec2flt::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for Location<'_>
impl Debug for PanicMessage<'_>
impl Debug for core::ptr::alignment::Alignment
impl Debug for AtomicBool
impl Debug for AtomicI8
impl Debug for AtomicI16
impl Debug for AtomicI32
impl Debug for AtomicI64
impl Debug for AtomicI128
impl Debug for AtomicIsize
impl Debug for AtomicU8
impl Debug for AtomicU16
impl Debug for AtomicU32
impl Debug for AtomicU64
impl Debug for AtomicU128
impl Debug for AtomicUsize
impl Debug for Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for Duration
impl Debug for TryFromFloatSecsError
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for 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 std::fs::Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for DefaultHasher
impl Debug for RandomState
impl Debug for WriterPanicked
impl Debug for std::io::error::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for 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 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 NormalizeError
impl Debug for Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for 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 Barrier
impl Debug for BarrierWaitResult
impl Debug for RecvError
impl Debug for std::sync::nonpoison::condvar::Condvar
impl Debug for WouldBlock
impl Debug for std::sync::once::Once
impl Debug for OnceState
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for WaitTimeoutResult
impl Debug for AccessError
impl Debug for std::thread::scoped::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 Config
impl Debug for blake2s_simd::blake2sp::Params
impl Debug for blake2s_simd::blake2sp::State
impl Debug for Hash
impl Debug for blake2s_simd::Params
impl Debug for blake2s_simd::State
impl Debug for Eager
impl Debug for block_buffer::Error
impl Debug for block_buffer::Lazy
impl Debug for ObjectIdentifier
impl Debug for Collector
impl Debug for LocalHandle
impl Debug for Guard
impl Debug for Backoff
impl Debug for Parker
impl Debug for Unparker
impl Debug for WaitGroup
impl Debug for crossbeam_utils::thread::Scope<'_>
impl Debug for CtChoice
impl Debug for Limb
impl Debug for Reciprocal
impl Debug for InvalidLength
impl Debug for GeneralizedTime
impl Debug for Null
impl Debug for UtcTime
impl Debug for DateTime
impl Debug for der::error::Error
impl Debug for Header
impl Debug for IndefiniteLength
impl Debug for Length
impl Debug for TagNumber
impl Debug for MacError
impl Debug for InvalidBufferSize
impl Debug for InvalidOutputSize
impl Debug for RecoveryId
impl Debug for elliptic_curve::error::Error
impl Debug for getrandom::error::Error
impl Debug for DefaultHashBuilder
impl Debug for indexmap::TryReserveError
impl Debug for AffinePoint
impl Debug for ProjectivePoint
impl Debug for k256::arithmetic::scalar::Scalar
impl Debug for Secp256k1
impl Debug for __darwin_arm_exception_state64
impl Debug for __darwin_arm_neon_state64
impl Debug for __darwin_arm_thread_state64
impl Debug for __darwin_mcontext64
impl Debug for malloc_zone_t
impl Debug for max_align_t
impl Debug for ucontext_t
impl Debug for bpf_hdr
impl Debug for if_data
impl Debug for pthread_attr_t
impl Debug for pthread_once_t
impl Debug for timeval32
impl Debug for Dl_info
impl Debug for addrinfo
impl Debug for aiocb
impl Debug for arphdr
impl Debug for attribute_set_t
impl Debug for attrlist
impl Debug for attrreference_t
impl Debug for ctl_info
impl Debug for dirent
impl Debug for dqblk
impl Debug for flock
impl Debug for fpunchhole_t
impl Debug for fspecread_t
impl Debug for fstore_t
impl Debug for ftrimactivefile_t
impl Debug for glob_t
impl Debug for host_cpu_load_info
impl Debug for icmp6_ifstat
impl Debug for if_data64
impl Debug for if_msghdr2
impl Debug for if_msghdr
impl Debug for ifa_msghdr
impl Debug for ifconf
impl Debug for ifdevmtu
impl Debug for ifkpi
impl Debug for ifma_msghdr2
impl Debug for ifma_msghdr
impl Debug for ifmibdata
impl Debug for ifreq
impl Debug for ifs_iso_8802_3
impl Debug for image_offset
impl Debug for in6_addrlifetime
impl Debug for in6_ifreq
impl Debug for in6_ifstat
impl Debug for in6_pktinfo
impl Debug for in_addr
impl Debug for in_pktinfo
impl Debug for ip_mreq
impl Debug for ip_mreq_source
impl Debug for ip_mreqn
impl Debug for ipc_perm
impl Debug for kevent64_s
impl Debug for kevent
impl Debug for lconv
impl Debug for load_command
impl Debug for log2phys
impl Debug for mach_header
impl Debug for mach_header_64
impl Debug for mach_task_basic_info
impl Debug for mach_timebase_info
impl Debug for malloc_statistics_t
impl Debug for mstats
impl Debug for ntptimeval
impl Debug for os_unfair_lock_s
impl Debug for proc_bsdinfo
impl Debug for proc_fdinfo
impl Debug for proc_taskallinfo
impl Debug for proc_taskinfo
impl Debug for proc_threadinfo
impl Debug for proc_vnodepathinfo
impl Debug for processor_basic_info
impl Debug for processor_cpu_load_info
impl Debug for processor_set_basic_info
impl Debug for processor_set_load_info
impl Debug for pthread_cond_t
impl Debug for pthread_condattr_t
impl Debug for pthread_mutex_t
impl Debug for pthread_mutexattr_t
impl Debug for pthread_rwlock_t
impl Debug for pthread_rwlockattr_t
impl Debug for radvisory
impl Debug for rt_metrics
impl Debug for rt_msghdr2
impl Debug for rt_msghdr
impl Debug for rusage_info_v0
impl Debug for rusage_info_v1
impl Debug for rusage_info_v2
impl Debug for rusage_info_v3
impl Debug for rusage_info_v4
impl Debug for sa_endpoints_t
impl Debug for sched_param
impl Debug for segment_command
impl Debug for segment_command_64
impl Debug for sembuf
impl Debug for semid_ds
impl Debug for sf_hdtr
impl Debug for shmid_ds
impl Debug for sigaction
impl Debug for sigevent
impl Debug for siginfo_t
impl Debug for sockaddr_ctl
impl Debug for sockaddr_dl
impl Debug for sockaddr_in
impl Debug for sockaddr_inarp
impl Debug for sockaddr_ndrv
impl Debug for sockaddr_storage
impl Debug for sockaddr_vm
impl Debug for stack_t
impl Debug for stat
impl Debug for statfs
impl Debug for statvfs
impl Debug for task_thread_times_info
impl Debug for tcp_connection_info
impl Debug for termios
impl Debug for thread_affinity_policy
impl Debug for thread_background_policy
impl Debug for thread_basic_info
impl Debug for thread_extended_info
impl Debug for thread_extended_policy
impl Debug for thread_identifier_info
impl Debug for thread_latency_qos_policy
impl Debug for thread_precedence_policy
impl Debug for thread_standard_policy
impl Debug for thread_throughput_qos_policy
impl Debug for thread_time_constraint_policy
impl Debug for time_value_t
impl Debug for timex
impl Debug for utmpx
impl Debug for vinfo_stat
impl Debug for vm_range_t
impl Debug for vm_statistics64
impl Debug for vm_statistics
impl Debug for vnode_info
impl Debug for vnode_info_path
impl Debug for vol_attributes_attr_t
impl Debug for vol_capabilities_attr_t
impl Debug for xsw_usage
impl Debug for xucred
impl Debug for cmsghdr
impl Debug for fd_set
impl Debug for fsid_t
impl Debug for if_nameindex
impl Debug for ifaddrs
impl Debug for msghdr
impl Debug for option
impl Debug for passwd
impl Debug for regex_t
impl Debug for regmatch_t
impl Debug for sockaddr
impl Debug for sockaddr_in6
impl Debug for sockaddr_un
impl Debug for tm
impl Debug for utsname
impl Debug for group
impl Debug for hostent
impl Debug for in6_addr
impl Debug for iovec
impl Debug for ipv6_mreq
impl Debug for itimerval
impl Debug for linger
impl Debug for pollfd
impl Debug for protoent
impl Debug for rlimit
impl Debug for rusage
impl Debug for servent
impl Debug for sigval
impl Debug for timespec
impl Debug for timeval
impl Debug for tms
impl Debug for utimbuf
impl Debug for winsize
impl Debug for memchr::arch::aarch64::neon::memchr::One
impl Debug for memchr::arch::aarch64::neon::memchr::Three
impl Debug for memchr::arch::aarch64::neon::memchr::Two
impl Debug for memchr::arch::aarch64::neon::packedpair::Finder
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 FinderBuilder
impl Debug for BigInt
impl Debug for BigUint
impl Debug for ParseBigIntError
impl Debug for num_traits::ParseFloatError
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for u32x4_generic
impl Debug for u64x2_generic
impl Debug for u128x1_generic
impl Debug for Bernoulli
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for ReadError
impl Debug for StepRng
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 XorShiftRng
impl Debug for ThreadBuilder
impl Debug for Configuration
impl Debug for FnContext
impl Debug for ThreadPoolBuildError
impl Debug for ThreadPool
impl Debug for serde_json::error::Error
impl Debug for serde_json::map::IntoIter
impl Debug for serde_json::map::IntoValues
impl Debug for serde_json::map::Map<String, Value>
impl Debug for Number
impl Debug for CompactFormatter
impl Debug for Sha256VarCore
impl Debug for Sha512VarCore
impl Debug for signature::error::Error
impl Debug for SmolStr
impl Debug for Fq2Parameters
impl Debug for Fq6Parameters
impl Debug for Fq12Parameters
impl Debug for FqParameters
impl Debug for snarkvm_curves::bls12_377::fr::FrParameters
impl Debug for Bls12_377G1Parameters
impl Debug for Bls12_377G2Parameters
impl Debug for Bls12_377Parameters
impl Debug for snarkvm_curves::edwards_bls12::fr::FrParameters
impl Debug for EdwardsParameters
impl Debug for BigInteger256
impl Debug for BigInteger384
impl Debug for Choice
impl Debug for DefaultCallsite
impl Debug for Identifier
impl Debug for DefaultGuard
impl Debug for Dispatch
impl Debug for SetGlobalDefaultError
impl Debug for WeakDispatch
impl Debug for tracing_core::field::Empty
impl Debug for tracing_core::field::Field
impl Debug for FieldSet
impl Debug for tracing_core::field::Iter
impl Debug for ValueSet<'_>
impl Debug for Kind
impl Debug for Level
impl Debug for LevelFilter
impl Debug for tracing_core::metadata::Metadata<'_>
impl Debug for ParseLevelError
impl Debug for ParseLevelFilterError
impl Debug for Current
impl Debug for Id
impl Debug for Interest
impl Debug for NoSubscriber
impl Debug for EnteredSpan
impl Debug for Span
impl Debug for ATerm
impl Debug for B0
impl Debug for B1
impl Debug for Z0
impl Debug for Equal
impl Debug for Greater
impl Debug for Less
impl Debug for UTerm
impl Debug for zerocopy::error::AllocError
impl Debug for __c_anonymous_ifc_ifcu
impl Debug for __c_anonymous_ifk_data
impl Debug for __c_anonymous_ifr_ifru6
impl Debug for __c_anonymous_ifr_ifru
impl Debug for semun
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Sync + Send
impl Debug for dyn Value
impl<'a> Debug for Unexpected<'a>
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 CharSearcher<'a>
impl<'a> Debug for snarkvm_console_algorithms::str::Bytes<'a>
impl<'a> Debug for snarkvm_console_algorithms::str::CharIndices<'a>
impl<'a> Debug for snarkvm_console_algorithms::str::EscapeDebug<'a>
impl<'a> Debug for snarkvm_console_algorithms::str::EscapeDefault<'a>
impl<'a> Debug for snarkvm_console_algorithms::str::EscapeUnicode<'a>
impl<'a> Debug for snarkvm_console_algorithms::str::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for snarkvm_console_algorithms::str::SplitAsciiWhitespace<'a>
impl<'a> Debug for snarkvm_console_algorithms::str::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 PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'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 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 HexDisplay<'a>
impl<'a> Debug for HashManyJob<'a>
impl<'a> Debug for AnyRef<'a>
impl<'a> Debug for BitStringRef<'a>
impl<'a> Debug for Ia5StringRef<'a>
impl<'a> Debug for IntRef<'a>
impl<'a> Debug for UintRef<'a>
impl<'a> Debug for OctetStringRef<'a>
impl<'a> Debug for PrintableStringRef<'a>
impl<'a> Debug for TeletexStringRef<'a>
impl<'a> Debug for Utf8StringRef<'a>
impl<'a> Debug for VideotexStringRef<'a>
impl<'a> Debug for SliceReader<'a>
impl<'a> Debug for SliceWriter<'a>
impl<'a> Debug for BroadcastContext<'a>
impl<'a> Debug for rayon::string::Drain<'a>
impl<'a> Debug for EcPrivateKey<'a>
impl<'a> Debug for serde_json::map::Iter<'a>
impl<'a> Debug for serde_json::map::IterMut<'a>
impl<'a> Debug for serde_json::map::Keys<'a>
impl<'a> Debug for serde_json::map::Values<'a>
impl<'a> Debug for serde_json::map::ValuesMut<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for Event<'a>
impl<'a> Debug for Attributes<'a>
impl<'a> Debug for Record<'a>
impl<'a> Debug for Entered<'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::aarch64::neon::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::aarch64::neon::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::aarch64::neon::memchr::TwoIter<'a, 'h>
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, 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> Debug for Format<'a, I>
impl<'a, I, A> Debug for alloc::vec::splice::Splice<'a, I, A>
impl<'a, I, E> Debug for ProcessResults<'a, I, E>
impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F>
impl<'a, K, V> Debug for rayon::collections::btree_map::Iter<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::btree_map::IterMut<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::Drain<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::Iter<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::IterMut<'a, K, V>
impl<'a, P> Debug for snarkvm_console_algorithms::str::MatchIndices<'a, P>
impl<'a, P> Debug for snarkvm_console_algorithms::str::Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for snarkvm_console_algorithms::str::RSplit<'a, P>
impl<'a, P> Debug for snarkvm_console_algorithms::str::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for snarkvm_console_algorithms::str::Split<'a, P>
impl<'a, P> Debug for snarkvm_console_algorithms::str::SplitInclusive<'a, P>
impl<'a, P> Debug for snarkvm_console_algorithms::str::SplitN<'a, P>
impl<'a, P> Debug for snarkvm_console_algorithms::str::SplitTerminator<'a, P>
impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>
impl<'a, Size> Debug for Coordinates<'a, Size>where
Size: Debug + ModulusSize,
impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ContextSpecificRef<'a, T>where
T: Debug,
impl<'a, T> Debug for SequenceOfIter<'a, T>where
T: Debug,
impl<'a, T> Debug for SetOfIter<'a, T>where
T: Debug,
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for rand::distributions::slice::Slice<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::binary_heap::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::binary_heap::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::btree_set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::hash_set::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::hash_set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::linked_list::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::linked_list::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::option::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::option::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::result::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::result::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for smallvec::Drain<'a, T>
impl<'a, T, A> Debug for alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, I> Debug for Ptr<'a, T, I>where
T: 'a + ?Sized,
I: Invariants,
impl<'a, T, P> Debug for core::slice::iter::ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for core::slice::iter::ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'ch> Debug for rayon::str::Bytes<'ch>
impl<'ch> Debug for rayon::str::CharIndices<'ch>
impl<'ch> Debug for rayon::str::Chars<'ch>
impl<'ch> Debug for rayon::str::EncodeUtf16<'ch>
impl<'ch> Debug for rayon::str::Lines<'ch>
impl<'ch> Debug for rayon::str::SplitAsciiWhitespace<'ch>
impl<'ch> Debug for rayon::str::SplitWhitespace<'ch>
impl<'ch, P> Debug for rayon::str::MatchIndices<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::Matches<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::Split<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::SplitInclusive<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::SplitTerminator<'ch, P>where
P: Debug + Pattern,
impl<'data, T> Debug for rayon::slice::chunks::Chunks<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksExact<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksExactMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunks<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExact<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExactMut<'data, T>
impl<'data, T> Debug for rayon::slice::rchunks::RChunksMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::Iter<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::IterMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::Windows<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::vec::Drain<'data, T>
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> Debug for rayon_core::scope::Scope<'scope>
impl<'scope> Debug for ScopeFifo<'scope>
impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env>
impl<'scope, T> Debug for std::thread::scoped::ScopedJoinHandle<'scope, T>
impl<A> Debug for EnumAccessDeserializer<A>where
A: Debug,
impl<A> Debug for MapAccessDeserializer<A>where
A: Debug,
impl<A> Debug for SeqAccessDeserializer<A>where
A: Debug,
impl<A> Debug for core::iter::sources::repeat::Repeat<A>where
A: Debug,
impl<A> Debug for core::iter::sources::repeat_n::RepeatN<A>where
A: Debug,
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for IterRange<A>where
A: Debug,
impl<A> Debug for IterRangeFrom<A>where
A: Debug,
impl<A> Debug for IterRangeInclusive<A>where
A: Debug,
impl<A> Debug for itertools::repeatn::RepeatN<A>where
A: Debug,
impl<A> Debug for ExtendedGcd<A>where
A: Debug,
impl<A> Debug for smallvec::IntoIter<A>
impl<A> Debug for SmallVec<A>
impl<A, B> Debug for EitherOrBoth<A, B>
impl<A, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for core::iter::adapters::zip::Zip<A, B>
impl<A, B> Debug for rayon::iter::chain::Chain<A, B>
impl<A, B> Debug for rayon::iter::zip::Zip<A, B>
impl<A, B> Debug for rayon::iter::zip_eq::ZipEq<A, B>
impl<A, S, V> Debug for ConvertError<A, S, V>
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<C> Debug for ecdsa::der::Signature<C>
impl<C> Debug for SigningKey<C>where
C: PrimeCurve + CurveArithmetic,
<C as CurveArithmetic>::Scalar: Invert<Output = CtOption<<C as CurveArithmetic>::Scalar>> + SignPrimitive<C>,
<<C as Curve>::FieldBytesSize as Add>::Output: ArrayLength<u8>,
impl<C> Debug for ecdsa::Signature<C>
impl<C> Debug for VerifyingKey<C>
impl<C> Debug for PublicKey<C>where
C: Debug + CurveArithmetic,
impl<C> Debug for ScalarPrimitive<C>
impl<C> Debug for SecretKey<C>where
C: Curve,
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<D, S> Debug for rayon::iter::splitter::Split<D, S>where
D: Debug,
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for Err<E>where
E: Debug,
impl<E> Debug for BoolDeserializer<E>
impl<E> Debug for CharDeserializer<E>
impl<E> Debug for F32Deserializer<E>
impl<E> Debug for F64Deserializer<E>
impl<E> Debug for I8Deserializer<E>
impl<E> Debug for I16Deserializer<E>
impl<E> Debug for I32Deserializer<E>
impl<E> Debug for I64Deserializer<E>
impl<E> Debug for I128Deserializer<E>
impl<E> Debug for IsizeDeserializer<E>
impl<E> Debug for StringDeserializer<E>
impl<E> Debug for U8Deserializer<E>
impl<E> Debug for U16Deserializer<E>
impl<E> Debug for U32Deserializer<E>
impl<E> Debug for U64Deserializer<E>
impl<E> Debug for U128Deserializer<E>
impl<E> Debug for UnitDeserializer<E>
impl<E> Debug for UsizeDeserializer<E>
impl<E> Debug for Boolean<E>where
E: Environment,
impl<E> Debug for snarkvm_console_algorithms::Field<E>where
E: Environment,
impl<E> Debug for Group<E>where
E: Environment,
impl<E> Debug for snarkvm_console_algorithms::Scalar<E>where
E: Environment,
impl<E> Debug for Report<E>
impl<E, I> Debug for Integer<E, I>where
E: Environment,
I: IntegerType,
impl<E: Debug + Environment, const NUM_WINDOWS: u8, const WINDOW_SIZE: u8> Debug for BHPHasher<E, NUM_WINDOWS, WINDOW_SIZE>
impl<E: Debug + Environment, const NUM_WINDOWS: u8, const WINDOW_SIZE: u8> Debug for BHP<E, NUM_WINDOWS, WINDOW_SIZE>
impl<E: Debug + Environment, const RATE: usize> Debug for Poseidon<E, RATE>
impl<F> Debug for snarkvm_console_algorithms::fmt::FromFn<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for PollFn<F>
impl<F> Debug for core::iter::sources::from_fn::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for RepeatWith<F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<F, const RATE: usize, const CAPACITY: usize> Debug for PoseidonParameters<F, RATE, CAPACITY>where
F: Debug + PrimeField,
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for core::iter::adapters::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::copied::Copied<I>where
I: Debug,
impl<I> Debug for Cycle<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for Fuse<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::intersperse::Intersperse<I>
impl<I> Debug for Peekable<I>
impl<I> Debug for core::iter::adapters::skip::Skip<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<I> Debug for MultiProduct<I>
impl<I> Debug for PutBack<I>
impl<I> Debug for itertools::adaptors::WhileSome<I>where
I: Debug,
impl<I> Debug for CombinationsWithReplacement<I>
impl<I> Debug for ExactlyOneError<I>
impl<I> Debug for GroupingMap<I>where
I: Debug,
impl<I> Debug for MultiPeek<I>
impl<I> Debug for PeekNth<I>
impl<I> Debug for Permutations<I>
impl<I> Debug for Powerset<I>
impl<I> Debug for PutBackN<I>
impl<I> Debug for RcIter<I>where
I: Debug,
impl<I> Debug for Tee<I>
impl<I> Debug for Unique<I>
impl<I> Debug for WithPosition<I>
impl<I> Debug for nom::error::Error<I>where
I: Debug,
impl<I> Debug for VerboseError<I>where
I: Debug,
impl<I> Debug for ExponentialBlocks<I>where
I: Debug,
impl<I> Debug for UniformBlocks<I>where
I: Debug,
impl<I> Debug for rayon::iter::chunks::Chunks<I>where
I: Debug,
impl<I> Debug for rayon::iter::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for rayon::iter::copied::Copied<I>where
I: Debug,
impl<I> Debug for rayon::iter::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for rayon::iter::flatten::Flatten<I>where
I: Debug,
impl<I> Debug for FlattenIter<I>where
I: Debug,
impl<I> Debug for rayon::iter::intersperse::Intersperse<I>
impl<I> Debug for MaxLen<I>where
I: Debug,
impl<I> Debug for MinLen<I>where
I: Debug,
impl<I> Debug for PanicFuse<I>where
I: Debug,
impl<I> Debug for rayon::iter::rev::Rev<I>where
I: Debug,
impl<I> Debug for rayon::iter::skip::Skip<I>where
I: Debug,
impl<I> Debug for SkipAny<I>where
I: Debug,
impl<I> Debug for rayon::iter::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for rayon::iter::take::Take<I>where
I: Debug,
impl<I> Debug for TakeAny<I>where
I: Debug,
impl<I> Debug for rayon::iter::while_some::WhileSome<I>where
I: Debug,
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, ElemF> Debug for itertools::intersperse::IntersperseWith<I, ElemF>
impl<I, F> Debug for core::iter::adapters::filter_map::FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::inspect::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::map::Map<I, F>where
I: Debug,
impl<I, F> Debug for Batching<I, F>where
I: Debug,
impl<I, F> Debug for FilterMapOk<I, F>where
I: Debug,
impl<I, F> Debug for FilterOk<I, F>where
I: Debug,
impl<I, F> Debug for itertools::adaptors::Positions<I, F>where
I: Debug,
impl<I, F> Debug for TakeWhileRef<'_, I, F>
impl<I, F> Debug for itertools::adaptors::Update<I, F>where
I: Debug,
impl<I, F> Debug for FormatWith<'_, I, F>
impl<I, F> Debug for KMergeBy<I, F>
impl<I, F> Debug for PadUsing<I, F>where
I: Debug,
impl<I, F> Debug for TakeWhileInclusive<I, F>
impl<I, F> Debug for rayon::iter::flat_map::FlatMap<I, F>where
I: Debug,
impl<I, F> Debug for FlatMapIter<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::inspect::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::map::Map<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::update::Update<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for core::iter::adapters::intersperse::IntersperseWith<I, G>
impl<I, ID, F> Debug for Fold<I, ID, F>where
I: Debug,
impl<I, ID, F> Debug for FoldChunks<I, ID, F>where
I: Debug,
impl<I, INIT, F> Debug for MapInit<I, INIT, F>where
I: Debug,
impl<I, J> Debug for Diff<I, J>
impl<I, J> Debug for itertools::adaptors::Interleave<I, J>
impl<I, J> Debug for itertools::adaptors::InterleaveShortest<I, J>
impl<I, J> Debug for Product<I, J>
impl<I, J> Debug for itertools::zip_eq_impl::ZipEq<I, J>
impl<I, J> Debug for rayon::iter::interleave::Interleave<I, J>
impl<I, J> Debug for rayon::iter::interleave_shortest::InterleaveShortest<I, J>
impl<I, J, F> Debug for MergeBy<I, J, F>
impl<I, K, V, S> Debug for indexmap::map::iter::Splice<'_, I, K, V, S>
impl<I, P> Debug for core::iter::adapters::filter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for 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, P> Debug for rayon::iter::filter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for rayon::iter::filter_map::FilterMap<I, P>where
I: Debug,
impl<I, P> Debug for rayon::iter::positions::Positions<I, P>where
I: Debug,
impl<I, P> Debug for SkipAnyWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeAnyWhile<I, P>where
I: Debug,
impl<I, St, F> Debug for Scan<I, St, F>
impl<I, T> Debug for TupleCombinations<I, T>
impl<I, T> Debug for CircularTupleWindows<I, T>
impl<I, T> Debug for TupleWindows<I, T>
impl<I, T> Debug for Tuples<I, T>where
I: Debug + Iterator<Item = <T as TupleCollect>::Item>,
T: Debug + HomogeneousTuple,
<T as TupleCollect>::Buffer: Debug,
impl<I, T, E> Debug for FlattenOk<I, T, E>where
I: Iterator<Item = Result<T, E>> + Debug,
T: IntoIterator,
<T as IntoIterator>::IntoIter: Debug,
impl<I, T, F> Debug for MapWith<I, T, F>
impl<I, T, S> Debug for indexmap::set::iter::Splice<'_, I, T, S>
impl<I, U> Debug for core::iter::adapters::flatten::Flatten<I>
impl<I, U, F> Debug for core::iter::adapters::flatten::FlatMap<I, U, F>
impl<I, U, F> Debug for FoldWith<I, U, F>
impl<I, U, F> Debug for FoldChunksWith<I, U, F>
impl<I, U, F> Debug for TryFoldWith<I, U, F>
impl<I, V, F> Debug for UniqueBy<I, V, F>
impl<I, const N: usize> Debug for ArrayChunks<I, N>
impl<Idx> Debug for core::ops::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<Iter> Debug for IterBridge<Iter>where
Iter: Debug,
impl<K> Debug for 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>where
K: Debug,
A: Allocator,
impl<K, A> Debug for hashbrown::set::IntoIter<K, A>where
K: Debug,
A: Allocator,
impl<K, F> Debug for std::collections::hash::set::ExtractIf<'_, K, F>where
K: Debug,
impl<K, Q, V, S, A> Debug for EntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for VacantEntryRef<'_, '_, K, Q, V, S, A>
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::entry::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> Debug for IndexedEntry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::entry::OccupiedEntry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::entry::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::Drain<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::IntoIter<K, V>
impl<K, V> Debug for indexmap::map::iter::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::iter::Iter<'_, K, V>
impl<K, V> Debug for IterMut2<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::IterMut<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::iter::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::slice::Slice<K, V>
impl<K, V> Debug for rayon::collections::btree_map::IntoIter<K, V>
impl<K, V> Debug for rayon::collections::hash_map::IntoIter<K, V>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>
impl<K, V, A> Debug for 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>where
V: Debug,
A: Allocator,
impl<K, V, F> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F>
impl<K, V, F> Debug for indexmap::map::iter::ExtractIf<'_, K, V, F>
impl<K, V, R, F, A> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S> Debug for RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::HashMap<K, V, S>
impl<K, V, S> Debug for RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for RawVacantEntryMut<'_, K, V, S>
impl<K, V, S> Debug for IndexMap<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::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>where
K: Debug,
A: Allocator,
impl<L, R> Debug for Either<L, R>
impl<L, R> Debug for IterEither<L, R>
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 Isize<O>where
O: ByteOrder,
impl<O> Debug for U16<O>where
O: ByteOrder,
impl<O> Debug for U32<O>where
O: ByteOrder,
impl<O> Debug for U64<O>where
O: ByteOrder,
impl<O> Debug for U128<O>where
O: ByteOrder,
impl<O> Debug for Usize<O>where
O: ByteOrder,
impl<P> Debug for Bls12<P>where
P: Debug + Bls12Parameters,
impl<P> Debug for G1Prepared<P>where
P: Debug + Bls12Parameters,
impl<P> Debug for G2Prepared<P>
impl<P> Debug for snarkvm_curves::templates::short_weierstrass_jacobian::affine::Affine<P>
impl<P> Debug for snarkvm_curves::templates::short_weierstrass_jacobian::projective::Projective<P>
impl<P> Debug for snarkvm_curves::templates::twisted_edwards_extended::affine::Affine<P>
impl<P> Debug for snarkvm_curves::templates::twisted_edwards_extended::projective::Projective<P>
impl<P> Debug for Fp2<P>
impl<P> Debug for Fp6<P>
impl<P> Debug for Fp12<P>
impl<P> Debug for Fp256<P>where
P: Fp256Parameters,
impl<P> Debug for Fp384<P>where
P: Fp384Parameters,
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 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, Rsdr> Debug for ReseedingRng<R, Rsdr>
impl<S> Debug for ThreadPoolBuilder<S>
impl<S, B> Debug for WalkTree<S, B>
impl<S, B> Debug for WalkTreePostfix<S, B>
impl<S, B> Debug for WalkTreePrefix<S, B>
impl<Size> Debug for EncodedPoint<Size>where
Size: ModulusSize,
impl<Slice> Debug for BitIteratorBE<Slice>where
Slice: Debug,
impl<Slice> Debug for BitIteratorLE<Slice>
impl<Src, Dst> Debug for AlignmentError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for SizeError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for ValidityError<Src, Dst>where
Dst: TryFromBytes + ?Sized,
impl<St, F> Debug for Iterate<St, F>where
St: Debug,
impl<St, F> Debug for Unfold<St, F>where
St: Debug,
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for TrySendError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for Steal<T>
impl<T> Debug for FoldWhile<T>where
T: Debug,
impl<T> Debug for MinMaxResult<T>where
T: Debug,
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.