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 Approximation
impl Debug for AxisOp
impl Debug for Cost
impl Debug for DatumType
impl Debug for InOut
impl Debug for QParams
impl Debug for RValue
impl Debug for TDim
impl Debug for TValue
impl Debug for TypeName
impl Debug for Validation
impl Debug for Value
impl Debug for PadMode
impl Debug for KernelFormat
impl Debug for PaddingSpec
impl Debug for Comp
impl Debug for ModePicker
impl Debug for ProtoFusedSpec
impl Debug for tract_pulse::internal::tract_core::ops::nn::DataFormat
impl Debug for Reducer
impl Debug for SoftmaxExp
impl Debug for TooEarly
impl Debug for GetDisjointMutError
impl Debug for SearchStep
impl Debug for CollectionAllocErr
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::Position
impl Debug for AsciiChar
impl Debug for BacktraceStatus
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::cmp::Ordering
impl Debug for TryReserveErrorKind
impl Debug for Infallible
impl Debug for VarError
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::fs::TryLockError
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::io::ErrorKind
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::io::SeekFrom
impl Debug for IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for Shutdown
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::net::SocketAddr
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::sync::atomic::Ordering
impl Debug for RecvTimeoutError
impl Debug for TryRecvError
impl Debug for BinOp
impl Debug for WeightType
impl Debug for ImplementationQuality
impl Debug for OutputStoreSpec
impl Debug for RoundingPolicy
impl Debug for Executor
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_ndarray::ErrorKind
impl Debug for Order
impl Debug for SliceInfoElem
impl Debug for FloatErrorKind
impl Debug for InputMapping
impl Debug for tract_pulse::internal::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for tract_pulse::internal::fmt::Sign
impl Debug for AhoCorasickKind
impl Debug for aho_corasick::packed::api::MatchKind
impl Debug for aho_corasick::util::error::MatchErrorKind
impl Debug for Candidate
impl Debug for aho_corasick::util::search::Anchored
impl Debug for aho_corasick::util::search::MatchKind
impl Debug for StartKind
impl Debug for BigEndian
impl Debug for LittleEndian
impl Debug for FlushCompress
impl Debug for FlushDecompress
impl Debug for Status
impl Debug for hashbrown::TryReserveError
impl Debug for fsconfig_command
impl Debug for membarrier_cmd
impl Debug for membarrier_cmd_flag
impl Debug for Level
impl Debug for LevelFilter
impl Debug for CGemmOption
impl Debug for PrefilterConfig
impl Debug for CompressionStrategy
impl Debug for TDEFLFlush
impl Debug for TDEFLStatus
impl Debug for CompressionLevel
impl Debug for miniz_oxide::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 VerboseErrorKind
impl Debug for Needed
impl Debug for Endianness
impl Debug for CompareResult
impl Debug for parking_lot::once::OnceState
impl Debug for FilterOp
impl Debug for ParkResult
impl Debug for RequeueOp
impl Debug for StartError
impl Debug for WhichCaptures
impl Debug for regex_automata::nfa::thompson::nfa::State
impl Debug for regex_automata::util::look::Look
impl Debug for regex_automata::util::search::Anchored
impl Debug for regex_automata::util::search::MatchErrorKind
impl Debug for regex_automata::util::search::MatchKind
impl Debug for AssertionKind
impl Debug for Ast
impl Debug for ClassAsciiKind
impl Debug for ClassPerlKind
impl Debug for ClassSet
impl Debug for ClassSetBinaryOpKind
impl Debug for ClassSetItem
impl Debug for ClassUnicodeKind
impl Debug for ClassUnicodeOpKind
impl Debug for regex_syntax::ast::ErrorKind
impl Debug for regex_syntax::ast::Flag
impl Debug for FlagsItemKind
impl Debug for GroupKind
impl Debug for HexLiteralKind
impl Debug for LiteralKind
impl Debug for RepetitionKind
impl Debug for RepetitionRange
impl Debug for SpecialLiteralKind
impl Debug for regex_syntax::error::Error
impl Debug for Class
impl Debug for Dot
impl Debug for regex_syntax::hir::ErrorKind
impl Debug for HirKind
impl Debug for regex_syntax::hir::Look
impl Debug for ExtractKind
impl Debug for Utf8Sequence
impl Debug for regex::error::Error
impl Debug for FftDirection
impl Debug for Advice
impl Debug for rustix::backend::fs::types::FileType
impl Debug for FlockOperation
impl Debug for rustix::fs::seek_from::SeekFrom
impl Debug for Direction
impl Debug for Always
impl Debug for Unpacked
impl Debug for EntryType
impl Debug for HeaderMode
impl Debug for LValue
impl Debug for tract_nnef::ast::Literal
impl Debug for QuantFormat
impl Debug for Subscript
impl Debug for TypeSpec
impl Debug for RangeInRange
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 PulsedFact
impl Debug for StreamInfo
impl Debug for PulsedSource
impl Debug for AxesMapping
impl Debug for tract_pulse::internal::Axis
impl Debug for AxisChange
impl Debug for AxisChangeConsequence
impl Debug for Blob
impl Debug for DatLoader
impl Debug for DefaultRuntime
impl Debug for FragmentDecl
impl Debug for FragmentDef
impl Debug for GraphNnefLoader
impl Debug for GraphQuantLoader
impl Debug for Identifier
impl Debug for InletId
impl Debug for IntoShape
impl Debug for Opaque
impl Debug for OutletId
impl Debug for Parameter
impl Debug for PlanOptions
impl Debug for SessionState
impl Debug for ShapeFact
impl Debug for Symbol
impl Debug for SymbolScope
impl Debug for SymbolValues
impl Debug for Tensor
impl Debug for TypeId
impl Debug for TypedFact
impl Debug for TypedModelResource
impl Debug for f16
impl Debug for tract_pulse::internal::tract_core::ops::array::strided_slice::Dim
impl Debug for DynSlice
impl Debug for DynTile
impl Debug for FiniteReshape
impl Debug for Gather
impl Debug for GatherElements
impl Debug for GatherNd
impl Debug for MultiBroadcastTo
impl Debug for OneHot
impl Debug for Pad
impl Debug for tract_pulse::internal::tract_core::ops::array::Range
impl Debug for ScatterElements
impl Debug for ScatterNd
impl Debug for tract_pulse::internal::tract_core::ops::array::Slice
impl Debug for StridedSlice
impl Debug for Tile
impl Debug for Topk
impl Debug for Trilu
impl Debug for TypedConcat
impl Debug for OptBinByScalar
impl Debug for OptBinUnicast
impl Debug for TypedBinOp
impl Debug for Cast
impl Debug for Im2Col
impl Debug for ConcretePoolGeometry
impl Debug for SymbolicPoolGeometry
impl Debug for Conv
impl Debug for Deconv
impl Debug for MaxPool
impl Debug for Patch
impl Debug for PatchAxis
impl Debug for PatchSpec
impl Debug for PoolSpec
impl Debug for SumPool
impl Debug for Dummy
impl Debug for EinSumMatMul
impl Debug for PrefixMatMul
impl Debug for EinSum
impl Debug for ElementWiseOp
impl Debug for Fft
impl Debug for Stft
impl Debug for Identity
impl Debug for PinConst
impl Debug for Const
impl Debug for And
impl Debug for BitAnd
impl Debug for BitNot
impl Debug for BitOr
impl Debug for BitXor
impl Debug for tract_pulse::internal::tract_core::ops::logic::IfThenElse
impl Debug for Iff
impl Debug for Not
impl Debug for Or
impl Debug for Xor
impl Debug for Abs
impl Debug for Acos
impl Debug for Acosh
impl Debug for Add
impl Debug for Asin
impl Debug for Asinh
impl Debug for Atan
impl Debug for Atanh
impl Debug for Ceil
impl Debug for Cos
impl Debug for Cosh
impl Debug for Div
impl Debug for Erf
impl Debug for Exp
impl Debug for Floor
impl Debug for Ln
impl Debug for Max
impl Debug for Min
impl Debug for Mul
impl Debug for Neg
impl Debug for Pow
impl Debug for QScale
impl Debug for Recip
impl Debug for Rem
impl Debug for Round
impl Debug for RoundHalfToEven
impl Debug for Rsqrt
impl Debug for ShiftLeft
impl Debug for ShiftRight
impl Debug for tract_pulse::internal::tract_core::ops::math::Sign
impl Debug for Sin
impl Debug for Sinh
impl Debug for Sqrt
impl Debug for Square
impl Debug for Sub
impl Debug for SubF
impl Debug for Tan
impl Debug for Tanh
impl Debug for BlockQuantTransform
impl Debug for AddMatMulGeometry
impl Debug for MapOutputAxisToInput
impl Debug for OptMatMul
impl Debug for DynPackedOpaqueFact
impl Debug for OptMatMulPack
impl Debug for OptSimpleMatMulPack
impl Debug for ForceEval
impl Debug for Load
impl Debug for Store
impl Debug for HardSwish
impl Debug for LeakyRelu
impl Debug for Reduce
impl Debug for Sigmoid
impl Debug for Softmax
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::half::bf16
impl Debug for UnorderedKeyError
impl Debug for Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for ParseBoolError
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for AllocError
impl Debug for Global
impl Debug for Layout
impl Debug for LayoutError
impl Debug for System
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 tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::arch::x86_64::bf16
impl Debug for TryFromSliceError
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::ascii::EscapeDefault
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for ByteStr
impl Debug for ByteString
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for DecodeUtf16Error
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::char::EscapeDebug
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::char::EscapeDefault
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::char::EscapeUnicode
impl Debug for ParseCharError
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::TryReserveError
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 tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::ffi::os_str::Display<'_>
impl Debug for CStr
impl Debug for CString
impl Debug for FromBytesUntilNulError
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for OsStr
impl Debug for OsString
impl Debug for DirBuilder
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::fs::DirEntry
impl Debug for File
impl Debug for FileTimes
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::fs::FileType
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::fs::Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for DefaultHasher
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::hash::RandomState
impl Debug for SipHasher
impl Debug for BorrowedBuf<'_>
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::io::Empty
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::io::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::io::Repeat
impl Debug for Sink
impl Debug for Stderr
impl Debug for StderrLock<'_>
impl Debug for Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdout
impl Debug for StdoutLock<'_>
impl Debug for WriterPanicked
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for PhantomPinned
impl Debug for Assume
impl Debug for AddrParseError
impl Debug for IntoIncoming
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for UdpSocket
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::num::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for BorrowedFd<'_>
impl Debug for OwnedFd
impl Debug for PidFd
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::os::unix::net::SocketAddr
impl Debug for UCred
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for Components<'_>
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::path::Display<'_>
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::path::Iter<'_>
impl Debug for Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for String
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 tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::ptr::Alignment
impl Debug for DefaultRandomSource
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 tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::sync::Condvar
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::sync::Once
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::sync::OnceState
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::sync::WaitTimeoutResult
impl Debug for Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for AccessError
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::thread::Builder
impl Debug for Scope<'_, '_>
impl Debug for Thread
impl Debug for ThreadId
impl Debug for Duration
impl Debug for Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for TryFromFloatSecsError
impl Debug for BlockQuantFact
impl Debug for BlockQuantValue
impl Debug for PackedBlockQuantFact
impl Debug for PackedBlockQuantFormat
impl Debug for HAddByScalar8
impl Debug for HMaxByScalar8
impl Debug for HMinByScalar8
impl Debug for HSubByScalar8
impl Debug for HSubFByScalar8
impl Debug for SAddByScalar4
impl Debug for SMaxByScalar4
impl Debug for SMinByScalar4
impl Debug for SSubByScalar4
impl Debug for SSubFByScalar4
impl Debug for HMax8
impl Debug for SMax4
impl Debug for HSoftMaxL2
impl Debug for HSum8
impl Debug for SSum4
impl Debug for GenericLut8
impl Debug for HLeakyRelu8
impl Debug for HMulByScalar8
impl Debug for HSigmoid8
impl Debug for HTanh8
impl Debug for SErf4
impl Debug for SLeakyRelu4
impl Debug for SMulByScalar4
impl Debug for SSigmoid4
impl Debug for SSoftMaxL2
impl Debug for STanh4
impl Debug for HUnicastAdd8
impl Debug for HUnicastMax8
impl Debug for HUnicastMin8
impl Debug for HUnicastMul8
impl Debug for HUnicastSub8
impl Debug for HUnicastSubF8
impl Debug for SUnicastAdd4
impl Debug for SUnicastMax4
impl Debug for SUnicastMin4
impl Debug for SUnicastMul4
impl Debug for SUnicastSub4
impl Debug for SUnicastSubF4
impl Debug for EagerPackedInput
impl Debug for OutputStore
impl Debug for OutputStoreKer
impl Debug for PackedOpaqueFact
impl Debug for PanelExtractInput
impl Debug for PanelExtractor
impl Debug for PackedFormat
impl Debug for Scaler
impl Debug for x86_64_avx_f32_mul_by_scalar_32n
impl Debug for x86_64_fma_max_f32_32n
impl Debug for x86_64_fma_softmax2_fastcompact_f32_32n
impl Debug for fma_sigmoid_f32
impl Debug for fma_tanh_f32
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_ndarray::Axis
impl Debug for AxisDescription
impl Debug for IxDynImpl
impl Debug for NewAxis
impl Debug for ShapeError
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_ndarray::Slice
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_num_traits::ParseFloatError
impl Debug for IntoTranslator
impl Debug for DequantizeLinearF32
impl Debug for LookupTable
impl Debug for OffsetI8asU8
impl Debug for OffsetU8asI8
impl Debug for QuantizeLinearI8
impl Debug for QuantizeLinearU8
impl Debug for Scale
impl Debug for OptScan
impl Debug for tract_pulse::internal::tract_core::ops::scan::Scan
impl Debug for ScanInfo
impl Debug for tract_pulse::internal::tract_core::ops::scan::State
impl Debug for SourceState
impl Debug for TypedSource
impl Debug for Downsample
impl Debug for SubmodelOp
impl Debug for UnimplementedOp
impl Debug for ChangeAxes
impl Debug for Optimizer
impl Debug for PanicMessage<'_>
impl Debug for Adler32
impl Debug for AHasher
impl Debug for ahash::random_state::RandomState
impl Debug for AhoCorasick
impl Debug for AhoCorasickBuilder
impl Debug for aho_corasick::automaton::OverlappingState
impl Debug for aho_corasick::dfa::Builder
impl Debug for aho_corasick::dfa::DFA
impl Debug for aho_corasick::nfa::contiguous::Builder
impl Debug for aho_corasick::nfa::contiguous::NFA
impl Debug for aho_corasick::nfa::noncontiguous::Builder
impl Debug for aho_corasick::nfa::noncontiguous::NFA
impl Debug for aho_corasick::packed::api::Builder
impl Debug for aho_corasick::packed::api::Config
impl Debug for aho_corasick::packed::api::Searcher
impl Debug for aho_corasick::util::error::BuildError
impl Debug for aho_corasick::util::error::MatchError
impl Debug for aho_corasick::util::prefilter::Prefilter
impl Debug for aho_corasick::util::primitives::PatternID
impl Debug for aho_corasick::util::primitives::PatternIDError
impl Debug for aho_corasick::util::primitives::StateID
impl Debug for aho_corasick::util::primitives::StateIDError
impl Debug for aho_corasick::util::search::Match
impl Debug for aho_corasick::util::search::Span
impl Debug for anyhow::Error
impl Debug for ParseError
impl Debug for Hasher
impl Debug for FileTime
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 __kernel_fd_set
impl Debug for __kernel_fsid_t
impl Debug for __kernel_itimerspec
impl Debug for __kernel_old_itimerval
impl Debug for __kernel_old_timespec
impl Debug for __kernel_old_timeval
impl Debug for __kernel_sock_timeval
impl Debug for __kernel_timespec
impl Debug for __old_kernel_stat
impl Debug for __sifields__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_4
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3
impl Debug for __sifields__bindgen_ty_6
impl Debug for __sifields__bindgen_ty_7
impl Debug for __user_cap_data_struct
impl Debug for __user_cap_header_struct
impl Debug for clone_args
impl Debug for compat_statfs64
impl Debug for epoll_event
impl Debug for f_owner_ex
impl Debug for file_clone_range
impl Debug for file_dedupe_range
impl Debug for file_dedupe_range_info
impl Debug for files_stat_struct
impl Debug for flock64
impl Debug for flock
impl Debug for fscrypt_key
impl Debug for fscrypt_policy_v1
impl Debug for fscrypt_policy_v2
impl Debug for fscrypt_provisioning_key_payload
impl Debug for fstrim_range
impl Debug for fsxattr
impl Debug for futex_waitv
impl Debug for inodes_stat_t
impl Debug for inotify_event
impl Debug for iovec
impl Debug for itimerspec
impl Debug for itimerval
impl Debug for kernel_sigaction
impl Debug for kernel_sigset_t
impl Debug for ktermios
impl Debug for linux_dirent64
impl Debug for mount_attr
impl Debug for open_how
impl Debug for pollfd
impl Debug for rand_pool_info
impl Debug for rlimit64
impl Debug for rlimit
impl Debug for robust_list
impl Debug for robust_list_head
impl Debug for rusage
impl Debug for sigaction
impl Debug for sigaltstack
impl Debug for sigevent__bindgen_ty_1__bindgen_ty_1
impl Debug for stat
impl Debug for statfs64
impl Debug for statfs
impl Debug for statx
impl Debug for statx_timestamp
impl Debug for termio
impl Debug for termios2
impl Debug for termios
impl Debug for timespec
impl Debug for timeval
impl Debug for timezone
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_2
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_3
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_4
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_5
impl Debug for uffdio_api
impl Debug for uffdio_continue
impl Debug for uffdio_copy
impl Debug for uffdio_range
impl Debug for uffdio_register
impl Debug for uffdio_writeprotect
impl Debug for uffdio_zeropage
impl Debug for user_desc
impl Debug for vfs_cap_data
impl Debug for vfs_cap_data__bindgen_ty_1
impl Debug for vfs_ns_cap_data
impl Debug for vfs_ns_cap_data__bindgen_ty_1
impl Debug for winsize
impl Debug for ParseLevelError
impl Debug for SetLoggerError
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 OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for parking_lot::condvar::Condvar
impl Debug for parking_lot::condvar::WaitTimeoutResult
impl Debug for parking_lot::once::Once
impl Debug for ParkToken
impl Debug for UnparkResult
impl Debug for UnparkToken
impl Debug for regex_automata::dfa::onepass::BuildError
impl Debug for regex_automata::dfa::onepass::Builder
impl Debug for regex_automata::dfa::onepass::Cache
impl Debug for regex_automata::dfa::onepass::Config
impl Debug for regex_automata::dfa::onepass::DFA
impl Debug for regex_automata::hybrid::dfa::Builder
impl Debug for regex_automata::hybrid::dfa::Cache
impl Debug for regex_automata::hybrid::dfa::Config
impl Debug for regex_automata::hybrid::dfa::DFA
impl Debug for regex_automata::hybrid::dfa::OverlappingState
impl Debug for regex_automata::hybrid::error::BuildError
impl Debug for CacheError
impl Debug for LazyStateID
impl Debug for regex_automata::hybrid::regex::Builder
impl Debug for regex_automata::hybrid::regex::Cache
impl Debug for regex_automata::hybrid::regex::Regex
impl Debug for regex_automata::meta::error::BuildError
impl Debug for regex_automata::meta::regex::Builder
impl Debug for regex_automata::meta::regex::Cache
impl Debug for regex_automata::meta::regex::Config
impl Debug for regex_automata::meta::regex::Regex
impl Debug for BoundedBacktracker
impl Debug for regex_automata::nfa::thompson::backtrack::Builder
impl Debug for regex_automata::nfa::thompson::backtrack::Cache
impl Debug for regex_automata::nfa::thompson::backtrack::Config
impl Debug for regex_automata::nfa::thompson::builder::Builder
impl Debug for Compiler
impl Debug for regex_automata::nfa::thompson::compiler::Config
impl Debug for regex_automata::nfa::thompson::error::BuildError
impl Debug for DenseTransitions
impl Debug for regex_automata::nfa::thompson::nfa::NFA
impl Debug for SparseTransitions
impl Debug for Transition
impl Debug for regex_automata::nfa::thompson::pikevm::Builder
impl Debug for regex_automata::nfa::thompson::pikevm::Cache
impl Debug for regex_automata::nfa::thompson::pikevm::Config
impl Debug for PikeVM
impl Debug for ByteClasses
impl Debug for Unit
impl Debug for regex_automata::util::captures::Captures
impl Debug for GroupInfo
impl Debug for GroupInfoError
impl Debug for DebugByte
impl Debug for LookMatcher
impl Debug for regex_automata::util::look::LookSet
impl Debug for regex_automata::util::look::LookSetIter
impl Debug for UnicodeWordBoundaryError
impl Debug for regex_automata::util::prefilter::Prefilter
impl Debug for NonMaxUsize
impl Debug for regex_automata::util::primitives::PatternID
impl Debug for regex_automata::util::primitives::PatternIDError
impl Debug for SmallIndex
impl Debug for SmallIndexError
impl Debug for regex_automata::util::primitives::StateID
impl Debug for regex_automata::util::primitives::StateIDError
impl Debug for HalfMatch
impl Debug for regex_automata::util::search::Match
impl Debug for regex_automata::util::search::MatchError
impl Debug for PatternSet
impl Debug for PatternSetInsertError
impl Debug for regex_automata::util::search::Span
impl Debug for regex_automata::util::start::Config
impl Debug for regex_automata::util::syntax::Config
impl Debug for DeserializeError
impl Debug for SerializeError
impl Debug for regex_syntax::ast::parse::Parser
impl Debug for regex_syntax::ast::parse::ParserBuilder
impl Debug for regex_syntax::ast::print::Printer
impl Debug for Alternation
impl Debug for Assertion
impl Debug for CaptureName
impl Debug for ClassAscii
impl Debug for ClassBracketed
impl Debug for ClassPerl
impl Debug for ClassSetBinaryOp
impl Debug for ClassSetRange
impl Debug for ClassSetUnion
impl Debug for regex_syntax::ast::ClassUnicode
impl Debug for Comment
impl Debug for Concat
impl Debug for regex_syntax::ast::Error
impl Debug for Flags
impl Debug for FlagsItem
impl Debug for Group
impl Debug for regex_syntax::ast::Literal
impl Debug for regex_syntax::ast::Position
impl Debug for regex_syntax::ast::Repetition
impl Debug for RepetitionOp
impl Debug for SetFlags
impl Debug for regex_syntax::ast::Span
impl Debug for WithComments
impl Debug for Extractor
impl Debug for regex_syntax::hir::literal::Literal
impl Debug for Seq
impl Debug for regex_syntax::hir::print::Printer
impl Debug for Capture
impl Debug for ClassBytes
impl Debug for ClassBytesRange
impl Debug for regex_syntax::hir::ClassUnicode
impl Debug for ClassUnicodeRange
impl Debug for regex_syntax::hir::Error
impl Debug for Hir
impl Debug for regex_syntax::hir::Literal
impl Debug for regex_syntax::hir::LookSet
impl Debug for regex_syntax::hir::LookSetIter
impl Debug for Properties
impl Debug for regex_syntax::hir::Repetition
impl Debug for Translator
impl Debug for TranslatorBuilder
impl Debug for regex_syntax::parser::Parser
impl Debug for regex_syntax::parser::ParserBuilder
impl Debug for CaseFoldError
impl Debug for UnicodeWordError
impl Debug for Utf8Range
impl Debug for Utf8Sequences
impl Debug for regex::builders::bytes::RegexBuilder
impl Debug for regex::builders::bytes::RegexSetBuilder
impl Debug for regex::builders::string::RegexBuilder
impl Debug for regex::builders::string::RegexSetBuilder
impl Debug for regex::regex::bytes::CaptureLocations
impl Debug for regex::regex::bytes::Regex
impl Debug for regex::regex::string::CaptureLocations
impl Debug for regex::regex::string::Regex
impl Debug for regex::regexset::bytes::RegexSet
impl Debug for regex::regexset::bytes::SetMatches
impl Debug for regex::regexset::bytes::SetMatchesIntoIter
impl Debug for regex::regexset::string::RegexSet
impl Debug for regex::regexset::string::SetMatches
impl Debug for regex::regexset::string::SetMatchesIntoIter
impl Debug for Dir
impl Debug for rustix::backend::fs::dir::DirEntry
impl Debug for CreateFlags
impl Debug for ReadFlags
impl Debug for WatchFlags
impl Debug for Access
impl Debug for AtFlags
impl Debug for FallocateFlags
impl Debug for MemfdFlags
impl Debug for Mode
impl Debug for OFlags
impl Debug for RenameFlags
impl Debug for ResolveFlags
impl Debug for SealFlags
impl Debug for StatVfsMountFlags
impl Debug for StatxFlags
impl Debug for Errno
impl Debug for DupFlags
impl Debug for FdFlags
impl Debug for ReadWriteFlags
impl Debug for MountFlags
impl Debug for MountPropagationFlags
impl Debug for UnmountFlags
impl Debug for Timestamps
impl Debug for XattrFlags
impl Debug for Opcode
impl Debug for Gid
impl Debug for Uid
impl Debug for Handle
impl Debug for ScanError
impl Debug for IgnoredAny
impl Debug for serde::de::value::Error
impl Debug for StrengthReducedU8
impl Debug for StrengthReducedU16
impl Debug for StrengthReducedU32
impl Debug for StrengthReducedU64
impl Debug for StrengthReducedU128
impl Debug for StrengthReducedUsize
impl Debug for SymbolU16
impl Debug for SymbolU32
impl Debug for SymbolUsize
impl Debug for GnuHeader
impl Debug for GnuSparseHeader
impl Debug for Header
impl Debug for OldHeader
impl Debug for UstarHeader
impl Debug for Argument
impl Debug for Assignment
impl Debug for Comprehension
impl Debug for Document
impl Debug for GraphDef
impl Debug for tract_nnef::ast::IfThenElse
impl Debug for Invocation
impl Debug for ProtoModel
impl Debug for Result_
impl Debug for PulsedSameAxisConcat
impl Debug for PulsedSameAxisConcatState
impl Debug for DeconvDelay
impl Debug for Delay
impl Debug for DelayState
impl Debug for PulseMask
impl Debug for PulsePad
impl Debug for PulsedAxisSlice
impl Debug for walkdir::dent::DirEntry
impl Debug for walkdir::error::Error
impl Debug for walkdir::IntoIter
impl Debug for WalkDir
impl Debug for UnsupportedPlatformError
impl Debug for XAttrs
impl Debug for Arguments<'_>
impl Debug for tract_pulse::internal::fmt::Error
impl Debug for FormattingOptions
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Sync + Send
impl Debug for dyn CloneAny
impl Debug for dyn CloneAny + Send
impl Debug for dyn CloneAny + Sync + Send
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for ResolvedInvocation<'a>
impl<'a> Debug for TensorView<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::EscapeDebug<'a>
impl<'a> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::EscapeDefault<'a>
impl<'a> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::EscapeUnicode<'a>
impl<'a> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::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 BorrowedCursor<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::net::Incoming<'a>
impl<'a> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::os::unix::net::Incoming<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for Location<'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 ContextBuilder<'a>
impl<'a> Debug for CostModel<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for log::Metadata<'a>
impl<'a> Debug for MetadataBuilder<'a>
impl<'a> Debug for Record<'a>
impl<'a> Debug for RecordBuilder<'a>
impl<'a> Debug for PatternIter<'a>
impl<'a> Debug for ByteClassElements<'a>
impl<'a> Debug for ByteClassIter<'a>
impl<'a> Debug for ByteClassRepresentatives<'a>
impl<'a> Debug for CapturesPatternIter<'a>
impl<'a> Debug for GroupInfoAllNames<'a>
impl<'a> Debug for GroupInfoPatternNames<'a>
impl<'a> Debug for DebugHaystack<'a>
impl<'a> Debug for PatternSetIter<'a>
impl<'a> Debug for ClassBytesIter<'a>
impl<'a> Debug for ClassUnicodeIter<'a>
impl<'a> Debug for regex::regexset::bytes::SetMatchesIter<'a>
impl<'a> Debug for regex::regexset::string::SetMatchesIter<'a>
impl<'a> Debug for InotifyEvent<'a>
impl<'a> Debug for RawDirEntry<'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 aho_corasick::ahocorasick::FindIter<'a, 'h>
impl<'a, 'h> Debug for aho_corasick::ahocorasick::FindOverlappingIter<'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, '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, 'h, A> Debug for aho_corasick::automaton::FindIter<'a, 'h, A>where
A: Debug,
impl<'a, 'h, A> Debug for aho_corasick::automaton::FindOverlappingIter<'a, 'h, A>where
A: Debug,
impl<'a, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, A, D> Debug for AxisIter<'a, A, D>
impl<'a, A, D> Debug for tract_pulse::internal::tract_core::ops::nn::tract_ndarray::iter::Iter<'a, A, D>
impl<'a, A, D> Debug for tract_pulse::internal::tract_core::ops::nn::tract_ndarray::iter::IterMut<'a, A, D>
impl<'a, A, R> Debug for aho_corasick::automaton::StreamFindIter<'a, A, R>
impl<'a, D> Debug for Axes<'a, D>where
D: Debug,
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 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, I, F> Debug for TakeWhileRef<'a, I, F>
impl<'a, P> Debug for MatchIndices<'a, P>
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::RSplit<'a, P>
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::Split<'a, P>
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::SplitInclusive<'a, P>
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::SplitN<'a, P>
impl<'a, P> Debug for SplitTerminator<'a, P>
impl<'a, R> Debug for aho_corasick::ahocorasick::StreamFindIter<'a, R>where
R: Debug,
impl<'a, R> Debug for regex::regex::bytes::ReplacerRef<'a, R>
impl<'a, R> Debug for regex::regex::string::ReplacerRef<'a, R>
impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T>
impl<'a, R, T> Debug for lock_api::mutex::MappedMutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::mutex::MutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockWriteGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockWriteGuard<'a, R, T>
impl<'a, T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::Drain<'a, T>
impl<'a, T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::sync::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for Ptr<'a, T>where
T: 'a + ?Sized,
impl<'a, T, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, F> Debug for PoolGuard<'a, T, F>
impl<'a, T, 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 tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::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<'c, 'h> Debug for regex::regex::bytes::SubCaptureMatches<'c, 'h>
impl<'c, 'h> Debug for regex::regex::string::SubCaptureMatches<'c, 'h>
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 aho_corasick::util::search::Input<'h>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'h> Debug for regex_automata::util::iter::Searcher<'h>
impl<'h> Debug for regex_automata::util::search::Input<'h>
impl<'h> Debug for regex::regex::bytes::Captures<'h>
impl<'h> Debug for regex::regex::bytes::Match<'h>
impl<'h> Debug for regex::regex::string::Captures<'h>
impl<'h> Debug for regex::regex::string::Match<'h>
impl<'h, 'n> Debug for memchr::memmem::FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'h, F> Debug for CapturesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for HalfMatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for MatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for TryCapturesIter<'h, F>
impl<'h, F> Debug for TryHalfMatchesIter<'h, F>
impl<'h, F> Debug for TryMatchesIter<'h, F>
impl<'n> Debug for memchr::memmem::Finder<'n>
impl<'n> Debug for memchr::memmem::FinderRev<'n>
impl<'o> Debug for OptimizerSession<'o>
impl<'p, T> Debug for KInWriter<'p, T>
impl<'p, T> Debug for KOutSinglePanelWriter<'p, T>
impl<'p, T> Debug for KOutWriter<'p, T>
impl<'r> Debug for regex::regex::bytes::CaptureNames<'r>
impl<'r> Debug for regex::regex::string::CaptureNames<'r>
impl<'r, 'c, 'h> Debug for regex_automata::hybrid::regex::FindMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for TryCapturesMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for TryFindMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for regex_automata::nfa::thompson::pikevm::CapturesMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for regex_automata::nfa::thompson::pikevm::FindMatches<'r, 'c, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::CapturesMatches<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::FindMatches<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::Split<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::SplitN<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::Matches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::Split<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::SplitN<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::Matches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::Split<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::SplitN<'r, 'h>
impl<'s> Debug for regex::regex::bytes::NoExpand<'s>
impl<'s> Debug for regex::regex::string::NoExpand<'s>
impl<'s, 'h> Debug for aho_corasick::packed::api::FindIter<'s, 'h>
impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>
impl<'t> Debug for AsInputValue<'t>
impl<'t> Debug for FusedSpec<'t>
impl<A> Debug for ExtendedGcd<A>where
A: Debug,
impl<A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::IntoIter<A>
impl<A> Debug for SmallVec<A>
impl<A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::Repeat<A>where
A: Debug,
impl<A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::RepeatN<A>where
A: Debug,
impl<A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::RepeatN<A>where
A: Debug,
impl<A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::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 OwnedArcRepr<A>where
A: Debug,
impl<A> Debug for OwnedRepr<A>where
A: Debug,
impl<A> Debug for anymap3::Map<A>
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 EitherOrBoth<A, B>
impl<A, B> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::Chain<A, B>
impl<A, B> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::Zip<A, B>
impl<A, S, D> Debug for ArrayBase<S, D>
Format the array using Debug
and apply the formatting parameters used
to each element.
The array is shown in multiline style.
impl<B> Debug for Cow<'_, B>
impl<B> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::io::Lines<B>where
B: Debug,
impl<B> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::io::Split<B>where
B: Debug,
impl<B> Debug for BitSet<B>where
B: BitBlock,
impl<B> Debug for BitVec<B>where
B: BitBlock,
impl<B> Debug for bitflags::traits::Flag<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>
impl<B, H> Debug for StringInterner<B, H>
impl<B, T> Debug for AlignAs<B, T>
impl<D> Debug for Indices<D>
impl<D> Debug for Shape<D>where
D: Debug,
impl<D> Debug for StrideShape<D>where
D: Debug,
impl<D, S> Debug for BaseDataShape<D, S>
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 ParseComplexError<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<F> Debug for Outlet<F>where
F: Fact,
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for RepeatWith<F>
impl<F> Debug for RepeatCall<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for OutputMapping<F>
impl<F> Debug for tract_pulse::internal::fmt::FromFn<F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<F, O> Debug for Graph<F, O>
impl<F, O> Debug for ModelPatch<F, O>
impl<F, O> Debug for Node<F, O>
impl<F, O, M> Debug for SimplePlan<F, O, M>
impl<F, O, M, P> Debug for SimpleState<F, O, M, P>
impl<F, O, M, P> Debug for FrozenSimpleState<F, O, M, P>
impl<G> Debug for FromCoroutine<G>
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 tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::Take<I>where
I: Debug,
impl<I> Debug for Combinations<I>
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 MultiProduct<I>
impl<I> Debug for PeekNth<I>
impl<I> Debug for Permutations<I>
impl<I> Debug for Powerset<I>
impl<I> Debug for PutBack<I>
impl<I> Debug for PutBackN<I>
impl<I> Debug for RcIter<I>where
I: Debug,
impl<I> Debug for Step<I>where
I: Debug,
impl<I> Debug for Tee<I>
impl<I> Debug for Unique<I>
impl<I> Debug for WhileSome<I>where
I: Debug,
impl<I> Debug for WithPosition<I>
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for tract_pulse::internal::tract_core::ops::nn::tract_ndarray::Dim<I>where
I: Debug,
impl<I> Debug for nom::error::Error<I>where
I: Debug,
impl<I> Debug for VerboseError<I>where
I: Debug,
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, ElemF> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::IntersperseWith<I, ElemF>
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 tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::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 KMergeBy<I, F>
impl<I, F> Debug for PadUsing<I, F>where
I: Debug,
impl<I, F> Debug for Positions<I, F>where
I: Debug,
impl<I, F> Debug for TakeWhileInclusive<I, F>
impl<I, F> Debug for Update<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::IntersperseWith<I, G>
impl<I, J> Debug for Diff<I, J>
impl<I, J> Debug for ConsTuples<I, J>
impl<I, J> Debug for Interleave<I, J>
impl<I, J> Debug for InterleaveShortest<I, J>
impl<I, J> Debug for Product<I, J>
impl<I, J> Debug for ZipEq<I, J>
impl<I, J, F> Debug for MergeBy<I, J, F>
impl<I, P> Debug for 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 FilterEntry<I, P>
impl<I, St, F> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::Scan<I, St, F>
impl<I, T> Debug for CircularTupleWindows<I, T>
impl<I, T> Debug for TupleCombinations<I, T>
impl<I, T> Debug for TupleWindows<I, T>
impl<I, T> Debug for Tuples<I, T>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, U> Debug for Flatten<I>
impl<I, U, F> Debug for FlatMap<I, U, F>
impl<I, V, F> Debug for UniqueBy<I, V, F>
impl<I, const N: usize> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::ArrayChunks<I, N>
impl<Idx> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::ops::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::ops::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__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 tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::range::RangeInclusive<Idx>where
Idx: Debug,
impl<K> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_set::Drain<'_, K>where
K: Debug,
impl<K> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_set::IntoIter<K>where
K: Debug,
impl<K> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_set::Iter<'_, K>where
K: Debug,
impl<K> Debug for LutImpl<K>
impl<K> Debug for hashbrown::set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::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 tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__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 OccupiedEntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for VacantEntryRef<'_, '_, K, Q, V, S, A>
impl<K, T> Debug for ByScalarImpl<K, T>
impl<K, T> Debug for UnicastImpl<K, T>
impl<K, T, Params> Debug for ElementWiseImpl<K, T, Params>
impl<K, T, Params> Debug for MapReduceImpl<K, T, Params>
impl<K, T, Params> Debug for ReduceImpl<K, T, Params>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::Entry<'_, K, V>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Cursor<'_, K, V>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Iter<'_, K, V>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::IterMut<'_, K, V>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::Drain<'_, K, V>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::IntoIter<K, V>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::Iter<'_, K, V>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::IterMut<'_, K, V>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::OccupiedError<'_, K, V>
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__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 tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Entry<'_, K, V, A>
impl<K, V, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::IntoIter<K, V, A>
impl<K, V, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::IntoKeys<K, V, A>
impl<K, V, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::IntoValues<K, V, A>
impl<K, V, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<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 tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::ExtractIf<'_, K, V, F>
impl<K, V, F, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::ExtractIf<'_, K, V, F, A>
impl<K, V, S> Debug for tract_pulse::internal::HashMap<K, V, S>
impl<K, V, S, A> Debug for hashbrown::map::Entry<'_, K, V, S, A>
impl<K, V, S, A> Debug for 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 RawEntryBuilder<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for RawEntryBuilderMut<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for RawOccupiedEntryMut<'_, K, V, S, A>
impl<K, V, S, A> Debug for RawVacantEntryMut<'_, K, V, S, A>where
A: Allocator,
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<Opcode> Debug for NoArg<Opcode>where
Opcode: CompileTimeOpcode,
impl<Opcode, Input> Debug for Setter<Opcode, Input>where
Opcode: CompileTimeOpcode,
Input: Debug,
impl<Opcode, Output> Debug for Getter<Opcode, Output>where
Opcode: CompileTimeOpcode,
impl<Parts, D> Debug for tract_pulse::internal::tract_core::ops::nn::tract_ndarray::Zip<Parts, D>
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<R> Debug for BufReader<R>
impl<R> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::io::Bytes<R>where
R: Debug,
impl<R> Debug for CrcReader<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibEncoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibEncoder<R>where
R: Debug,
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, T> Debug for lock_api::mutex::Mutex<R, T>
impl<R, T> Debug for lock_api::rwlock::RwLock<R, T>
impl<S> Debug for BucketBackend<S>where
S: Debug,
impl<S> Debug for BufferBackend<S>where
S: Debug,
impl<S> Debug for SimpleBackend<S>where
S: Debug,
impl<S> Debug for StringBackend<S>where
S: Debug,
impl<St, F> Debug for Iterate<St, F>where
St: Debug,
impl<St, F> Debug for Unfold<St, F>where
St: Debug,
impl<Storage> Debug for __BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<Symbolic, Concrete> Debug for GeometryBound<Symbolic, Concrete>
impl<T1, T2> Debug for FloatPrecisionTranslator<T1, T2>
impl<T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::FoldWhile<T>where
T: Debug,
impl<T> Debug for MinMaxResult<T>where
T: Debug,
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::sync::TryLockError<T>
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for TrySendError<T>
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_ndarray::FoldWhile<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ₙ)
This trait is implemented for tuples up to twelve items long.