Trait tract_pulse::internal::fmt::Debug
1.0.0 · source · pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}
Expand description
?
formatting.
Debug
should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive
a Debug
implementation.
When used with the alternate format specifier #?
, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive]
if all fields implement Debug
. When
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 };
assert_eq!(format!("The origin is: {origin:#?}"),
"The origin is: Point {
x: 0,
y: 0,
}");
Required Methods§
sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
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 ProtoFusedSpec
impl Debug for ProtoInputStoreSpec
impl Debug for tract_pulse::internal::tract_core::ops::nn::DataFormat
impl Debug for Reducer
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::fmt::Alignment
impl Debug for SearchStep
impl Debug for CollectionAllocErr
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 c_void
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::io::ErrorKind
impl Debug for 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 Which
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 InputStore
impl Debug for InputStoreSpec
impl Debug for OutputStoreSpec
impl Debug for RoundingPolicy
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 _Unwind_Reason_Code
impl Debug for FlushCompress
impl Debug for FlushDecompress
impl Debug for Status
impl Debug for Level
impl Debug for LevelFilter
impl Debug for CGemmOption
impl Debug for Unpacked
impl Debug for EntryType
impl Debug for HeaderMode
impl Debug for bool
impl Debug for char
impl Debug for f32
impl Debug for f64
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 FragmentDecl
impl Debug for FragmentDef
impl Debug for GraphNnefLoader
impl Debug for GraphQuantLoader
impl Debug for Identifier
impl Debug for InletId
impl Debug for OutletId
impl Debug for Parameter
impl Debug for SessionState
impl Debug for ShapeFact
impl Debug for Symbol
impl Debug for SymbolTable
impl Debug for SymbolValues
impl Debug for Tensor
impl Debug for TypedFact
impl Debug for TypedModelResource
impl Debug for f16
impl Debug for HalfTranslator
impl Debug for DynSlice
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 Tile
impl Debug for Topk
impl Debug for Trilu
impl Debug for TypedConcat
impl Debug for MergeOpUnicast
impl Debug for TypedBinOp
impl Debug for Cast
impl Debug for Im2Col
impl Debug for ConcretePoolGeometry
impl Debug for SymbolicPoolGeometry
impl Debug for ConvUnary
impl Debug for DeconvUnary
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 EinSum
impl Debug for ElementWiseOp
impl Debug for Fft
impl Debug for Stft
impl Debug for Identity
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 Equals
impl Debug for Greater
impl Debug for GreaterEqual
impl Debug for GreaterEqualThanZero
impl Debug for GreaterThanZero
impl Debug for tract_pulse::internal::tract_core::ops::logic::IfThenElse
impl Debug for Iff
impl Debug for Less
impl Debug for LessEqual
impl Debug for LessEqualThanZero
impl Debug for LessThanZero
impl Debug for Not
impl Debug for NotEquals
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 Cube
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 Sign
impl Debug for Sin
impl Debug for Sinh
impl Debug for Sqrt
impl Debug for Square
impl Debug for Sub
impl Debug for Tan
impl Debug for Tanh
impl Debug for AddMatMulGeometry
impl Debug for ConcreteMatrixGeometry
impl Debug for LirMatMulUnary
impl Debug for MapOutputAxisToInput
impl Debug for SymbolicMatrixGeometry
impl Debug for MatMatMulPack
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::anyhow::Error
impl Debug for bf16
impl Debug for Arguments<'_>
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::fmt::Error
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 UndeterminedSymbol
impl Debug for AllocError
impl Debug for Global
impl Debug for Layout
impl Debug for LayoutError
impl Debug for System
impl Debug for TypeId
impl Debug for CpuidResult
impl Debug for __m128
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512i
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 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 DefaultHasher
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::RandomState
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 CStr
impl Debug for CString
impl Debug for FromBytesWithNulError
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 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 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 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 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 NonZeroI8
impl Debug for NonZeroI16
impl Debug for NonZeroI32
impl Debug for NonZeroI64
impl Debug for NonZeroI128
impl Debug for NonZeroIsize
impl Debug for NonZeroU8
impl Debug for NonZeroU16
impl Debug for NonZeroU32
impl Debug for NonZeroU64
impl Debug for NonZeroU128
impl Debug for NonZeroUsize
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 UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for UCred
impl Debug for Components<'_>
impl Debug for 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 AtomicBool
impl Debug for AtomicI8
impl Debug for AtomicI16
impl Debug for AtomicI32
impl Debug for AtomicI64
impl Debug for AtomicIsize
impl Debug for AtomicU8
impl Debug for AtomicU16
impl Debug for AtomicU32
impl Debug for AtomicU64
impl Debug for AtomicUsize
impl Debug for RecvError
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for Condvar
impl Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::sync::Once
impl Debug for OnceState
impl Debug for WaitTimeoutResult
impl Debug for Context<'_>
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 OutputStore
impl Debug for OutputStoreKer
impl Debug for Packer
impl Debug for GenericLut8
impl Debug for HSigmoid8
impl Debug for HTanh8
impl Debug for SErf4
impl Debug for SSigmoid4
impl Debug for STanh4
impl Debug for Scaler
impl Debug for avx2_mmm_i32_8x8
impl Debug for avx512_mmm_f32_16x1
impl Debug for avx512_mmm_f32_16x8
impl Debug for avx512_mmm_f32_16x12
impl Debug for avx512_mmm_f32_32x5
impl Debug for avx512_mmm_f32_32x6
impl Debug for avx512_mmm_f32_48x4
impl Debug for avx512_mmm_f32_64x3
impl Debug for avx512_mmm_f32_80x2
impl Debug for avx512_mmm_f32_128x1
impl Debug for fma_mmm_f32_8x8
impl Debug for fma_mmm_f32_16x5
impl Debug for fma_mmm_f32_16x6
impl Debug for fma_mmm_f32_24x4
impl Debug for fma_mmm_f32_32x3
impl Debug for fma_mmm_f32_40x2
impl Debug for fma_mmm_f32_64x1
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 OffsetU8asI8
impl Debug for QuantizeLinearI8
impl Debug for QuantizeLinearU8
impl Debug for Scale
impl Debug for LirScan
impl Debug for tract_pulse::internal::tract_core::ops::scan::Scan
impl Debug for ScanInfo
impl Debug for 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 FromBytesUntilNulError
impl Debug for TimSortRun
impl Debug for Adler32
impl Debug for SymbolU16
impl Debug for SymbolU32
impl Debug for SymbolUsize
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 getrandom::error::Error
impl Debug for ParseLevelError
impl Debug for SetLoggerError
impl Debug for IgnoredAny
impl Debug for serde::de::value::Error
impl Debug for GnuHeader
impl Debug for GnuSparseHeader
impl Debug for Header
impl Debug for OldHeader
impl Debug for UstarHeader
impl Debug for DeconvDelay
impl Debug for Delay
impl Debug for DelayState
impl Debug for PulsePad
impl Debug for PulsedAxisSlice
impl Debug for AHasher
impl Debug for AhoCorasick
impl Debug for AhoCorasickBuilder
impl Debug for AhoCorasickKind
impl Debug for Alternation
impl Debug for Anchored
impl Debug for Argument
impl Debug for Assertion
impl Debug for AssertionKind
impl Debug for Assignment
impl Debug for Ast
impl Debug for BigEndian
impl Debug for BuildError
impl Debug for Builder
impl Debug for Builder
impl Debug for Builder
impl Debug for Builder
impl Debug for Candidate
impl Debug for Capture
impl Debug for CaptureLocations
impl Debug for CaptureLocations
impl Debug for CaptureName
impl Debug for CaseFoldError
impl Debug for Class
impl Debug for Class
impl Debug for ClassAscii
impl Debug for ClassAsciiKind
impl Debug for ClassBracketed
impl Debug for ClassBytes
impl Debug for ClassBytesRange
impl Debug for ClassPerl
impl Debug for ClassPerlKind
impl Debug for ClassSet
impl Debug for ClassSetBinaryOp
impl Debug for ClassSetBinaryOpKind
impl Debug for ClassSetItem
impl Debug for ClassSetRange
impl Debug for ClassSetUnion
impl Debug for ClassUnicode
impl Debug for ClassUnicode
impl Debug for ClassUnicodeKind
impl Debug for ClassUnicodeOpKind
impl Debug for ClassUnicodeRange
impl Debug for Comment
impl Debug for CompareResult
impl Debug for Comprehension
impl Debug for CompressionLevel
impl Debug for CompressionStrategy
impl Debug for Concat
impl Debug for Config
impl Debug for DFA
impl Debug for DataFormat
impl Debug for DecompressError
impl Debug for DirEntry
impl Debug for Document
impl Debug for Dot
impl Debug for Endianness
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for ErrorKind
impl Debug for ErrorKind
impl Debug for ErrorKind
impl Debug for ExtractKind
impl Debug for Extractor
impl Debug for FftDirection
impl Debug for FileTime
impl Debug for FinderBuilder
impl Debug for Flag
impl Debug for Flags
impl Debug for FlagsItem
impl Debug for FlagsItemKind
impl Debug for GraphDef
impl Debug for Group
impl Debug for GroupKind
impl Debug for Handle
impl Debug for Hasher
impl Debug for HexLiteralKind
impl Debug for Hir
impl Debug for HirKind
impl Debug for IfThenElse
impl Debug for IntoIter
impl Debug for Invocation
impl Debug for LValue
impl Debug for Literal
impl Debug for Literal
impl Debug for Literal
impl Debug for Literal
impl Debug for LiteralKind
impl Debug for LittleEndian
impl Debug for Look
impl Debug for LookSet
impl Debug for LookSetIter
impl Debug for MZError
impl Debug for MZFlush
impl Debug for MZStatus
impl Debug for Match
impl Debug for MatchError
impl Debug for MatchErrorKind
impl Debug for MatchKind
impl Debug for MatchKind
impl Debug for NFA
impl Debug for NFA
impl Debug for Needed
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for OverlappingState
impl Debug for Parser
impl Debug for Parser
impl Debug for ParserBuilder
impl Debug for ParserBuilder
impl Debug for PatternID
impl Debug for PatternIDError
impl Debug for Position
impl Debug for Prefilter
impl Debug for Prefilter
impl Debug for Printer
impl Debug for Printer
impl Debug for Properties
impl Debug for ProtoModel
impl Debug for QuantFormat
impl Debug for RandomState
impl Debug for Regex
impl Debug for Regex
impl Debug for RegexBuilder
impl Debug for RegexBuilder
impl Debug for RegexSet
impl Debug for RegexSet
impl Debug for RegexSetBuilder
impl Debug for RegexSetBuilder
impl Debug for Repetition
impl Debug for Repetition
impl Debug for RepetitionKind
impl Debug for RepetitionOp
impl Debug for RepetitionRange
impl Debug for Result_
impl Debug for ScanError
impl Debug for Searcher
impl Debug for Seq
impl Debug for SetFlags
impl Debug for SetMatches
impl Debug for SetMatches
impl Debug for SetMatchesIntoIter
impl Debug for SetMatchesIntoIter
impl Debug for Span
impl Debug for Span
impl Debug for SpecialLiteralKind
impl Debug for StartKind
impl Debug for StateID
impl Debug for StateIDError
impl Debug for StreamResult
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 Subscript
impl Debug for TDEFLFlush
impl Debug for TDEFLStatus
impl Debug for TINFLStatus
impl Debug for Translator
impl Debug for TranslatorBuilder
impl Debug for TryReserveError
impl Debug for TypeSpec
impl Debug for UnicodeWordError
impl Debug for UnsupportedPlatformError
impl Debug for Utf8Range
impl Debug for Utf8Sequence
impl Debug for Utf8Sequences
impl Debug for VerboseErrorKind
impl Debug for WalkDir
impl Debug for WithComments
impl Debug for dyn Any + 'static
impl Debug for dyn Any + Send + 'static
impl Debug for dyn Any + Sync + Send + 'static
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 Demand<'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 PanicInfo<'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 CostModel<'a>
impl<'a> Debug for Source<'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 ClassBytesIter<'a>
impl<'a> Debug for ClassUnicodeIter<'a>
impl<'a> Debug for SetMatchesIter<'a>
impl<'a> Debug for SetMatchesIter<'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 FindIter<'a, 'h>
impl<'a, 'h> Debug for FindOverlappingIter<'a, 'h>
impl<'a, 'h, A> Debug for FindIter<'a, 'h, A>where A: Debug,
impl<'a, 'h, A> Debug for 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>where A: Debug, D: Debug,
impl<'a, A, R> Debug for StreamFindIter<'a, A, R>where A: Debug, R: Debug,
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>where I: Iterator, <I as Iterator>::Item: Debug,
impl<'a, I, A> Debug for Splice<'a, I, A>where I: Debug + Iterator + 'a, A: Debug + Allocator + 'a, <I as Iterator>::Item: Debug,
impl<'a, I, E> Debug for ProcessResults<'a, I, E>where I: Debug, E: Debug + 'a,
impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F>where I: 'a + Iterator + Debug,
impl<'a, I, F> Debug for TakeWhileRef<'a, I, F>where I: Iterator + Debug,
impl<'a, K, F> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_set::DrainFilter<'a, K, F>where F: FnMut(&K) -> bool,
impl<'a, K, V, F> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::DrainFilter<'a, K, V, F>where F: FnMut(&K, &mut V) -> bool,
impl<'a, P> Debug for MatchIndices<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::Matches<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for RMatchIndices<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for RMatches<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::RSplit<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::RSplitN<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for RSplitTerminator<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::Split<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::SplitInclusive<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::str::SplitN<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for SplitTerminator<'a, P>where P: Pattern<'a>, <P as Pattern<'a>>::Searcher: Debug,
impl<'a, R> Debug for ReplacerRef<'a, R>where R: Debug + ?Sized,
impl<'a, R> Debug for ReplacerRef<'a, R>where R: Debug + ?Sized,
impl<'a, R> Debug for StreamFindIter<'a, R>where R: Debug,
impl<'a, T> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::binary_heap::Drain<'a, T>where T: Debug + 'a,
impl<'a, T> Debug for DrainSorted<'a, T>where T: Debug + Ord,
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>where T: 'a + Array, <T as Array>::Item: Debug,
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::mpsc::Iter<'a, T>where T: Debug + 'a,
impl<'a, T> Debug for TryIter<'a, T>where T: Debug + 'a,
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T, F, A> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::vec::DrainFilter<'a, T, F, A>where T: Debug, F: Debug + FnMut(&mut T) -> bool, A: Debug + Allocator,
impl<'a, T, P> Debug for GroupBy<'a, T, P>where T: 'a + Debug,
impl<'a, T, P> Debug for GroupByMut<'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, 't> Debug for SubCaptureMatches<'c, 't>
impl<'c, 't> Debug for SubCaptureMatches<'c, '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>where I: Iterator + Debug, <I as Iterator>::Item: Pair, <<I as Iterator>::Item as Pair>::Second: Debug,
impl<'f> Debug for VaListImpl<'f>
impl<'h> Debug for Input<'h>
impl<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'n> Debug for Finder<'n>
impl<'n> Debug for FinderRev<'n>
impl<'o> Debug for OptimizerSession<'o>
impl<'p, T> Debug for KInWriter<'p, T>where T: Debug + Copy,
impl<'p, T> Debug for KOutSinglePanelWriter<'p, T>where T: Debug + Copy,
impl<'p, T> Debug for KOutWriter<'p, T>where T: Debug + Copy,
impl<'r> Debug for CaptureNames<'r>
impl<'r> Debug for CaptureNames<'r>
impl<'r, 't> Debug for CaptureMatches<'r, 't>
impl<'r, 't> Debug for CaptureMatches<'r, 't>
impl<'r, 't> Debug for Matches<'r, 't>
impl<'r, 't> Debug for Matches<'r, 't>
impl<'r, 't> Debug for Split<'r, 't>
impl<'r, 't> Debug for Split<'r, 't>
impl<'r, 't> Debug for SplitN<'r, 't>
impl<'r, 't> Debug for SplitN<'r, 't>
impl<'s, 'h> Debug for FindIter<'s, 'h>
impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>
impl<'t> Debug for FusedSpec<'t>
impl<'t> Debug for Captures<'t>
impl<'t> Debug for Captures<'t>
impl<'t> Debug for Match<'t>
impl<'t> Debug for Match<'t>
impl<'t> Debug for NoExpand<'t>
impl<'t> Debug for NoExpand<'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>where A: Array, <A as Array>::Item: Debug,
impl<A> Debug for SmallVec<A>where A: Array, <A as Array>::Item: Debug,
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 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 OwnedArcRepr<A>where A: Debug,
impl<A> Debug for OwnedRepr<A>where A: Debug,
impl<A> Debug for EnumAccessDeserializer<A>where A: Debug,
impl<A> Debug for MapAccessDeserializer<A>where A: Debug,
impl<A> Debug for SeqAccessDeserializer<A>where A: Debug,
impl<A, B> Debug for EitherOrBoth<A, B>where A: Debug, B: Debug,
impl<A, B> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::Chain<A, B>where A: Debug, B: Debug,
impl<A, B> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::Zip<A, B>where A: Debug, B: Debug,
impl<A, S, D> Debug for ArrayBase<S, D>where A: Debug, D: Dimension, S: Data<Elem = A>,
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>where B: Debug + ToOwned + ?Sized, <B as ToOwned>::Owned: Debug,
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 BitVec<B>where B: BitBlock,
impl<B> Debug for BitSet<B>where B: BitBlock,
impl<B, C> Debug for ControlFlow<B, C>where B: Debug, C: Debug,
impl<B, H> Debug for StringInterner<B, H>where B: Backend + Debug, <B as Backend>::Symbol: Symbol + Debug, H: BuildHasher,
impl<D> Debug for Indices<D>where D: Debug + Dimension,
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>where D: DimLike, S: AsRef<[D]> + Debug,
impl<Dyn> Debug for DynMetadata<Dyn>where Dyn: ?Sized,
impl<E> Debug for Report<E>where Report<E>: Display,
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<E> Debug for Err<E>where E: Debug,
impl<F> Debug for Outlet<F>where F: Fact,
impl<F> Debug for CharPredicateSearcher<'_, F>where F: FnMut(char) -> bool,
impl<F> Debug for 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>where F: Clone + Display,
impl<F> Debug for Fwhere F: FnPtr,
impl<F, O> Debug for Graph<F, O>where F: Debug + Fact + Clone + 'static, O: Debug + Display + AsRef<dyn Op + 'static> + AsMut<dyn Op + 'static> + Clone + 'static,
impl<F, O> Debug for ModelPatch<F, O>where F: Debug + Fact + Clone + 'static, O: Debug + Display + AsRef<dyn Op + 'static> + AsMut<dyn Op + 'static> + Clone + 'static,
impl<F, O> Debug for Node<F, O>where F: Debug + Fact, O: Debug,
impl<F, O, M> Debug for SimplePlan<F, O, M>where F: Debug + Fact + Clone + 'static, O: Debug + Display + AsRef<dyn Op + 'static> + AsMut<dyn Op + 'static> + Clone + 'static, M: Debug + Borrow<Graph<F, O>>,
impl<F, O, M, P> Debug for SimpleState<F, O, M, P>where F: Debug + Fact + Clone + 'static, O: Debug + Display + AsRef<dyn Op + 'static> + AsMut<dyn Op + 'static> + Clone + 'static, M: Debug + Borrow<Graph<F, O>>, P: Debug + Borrow<SimplePlan<F, O, M>>,
impl<F, O, M, P> Debug for FrozenSimpleState<F, O, M, P>where F: Debug + Fact + Clone + 'static, O: Debug + Display + AsRef<dyn Op + 'static> + AsMut<dyn Op + 'static> + Clone + 'static, M: Debug + Borrow<Graph<F, O>>, P: Debug + Borrow<SimplePlan<F, O, M>> + Clone,
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>where I: Debug + Iterator, <I as Iterator>::Item: Clone + Debug,
impl<I> Debug for Peekable<I>where I: Debug + Iterator, <I as Iterator>::Item: Debug,
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>where I: Iterator + Debug, <I as Iterator>::Item: Debug,
impl<I> Debug for CombinationsWithReplacement<I>where I: Iterator + Debug, <I as Iterator>::Item: Debug + Clone,
impl<I> Debug for ExactlyOneError<I>where I: Iterator + Debug, <I as Iterator>::Item: Debug,
impl<I> Debug for GroupingMap<I>where I: Debug,
impl<I> Debug for MultiPeek<I>where I: Debug + Iterator, <I as Iterator>::Item: Debug,
impl<I> Debug for MultiProduct<I>where I: Iterator + Clone + Debug, <I as Iterator>::Item: Clone + Debug,
impl<I> Debug for PeekNth<I>where I: Debug + Iterator, <I as Iterator>::Item: Debug,
impl<I> Debug for Permutations<I>where I: Iterator + Debug, <I as Iterator>::Item: Debug,
impl<I> Debug for Powerset<I>where I: Iterator + Debug, <I as Iterator>::Item: Debug,
impl<I> Debug for PutBack<I>where I: Debug + Iterator, <I as Iterator>::Item: Debug,
impl<I> Debug for PutBackN<I>where I: Debug + Iterator, <I as Iterator>::Item: Debug,
impl<I> Debug for RcIter<I>where I: Debug,
impl<I> Debug for Step<I>where I: Debug,
impl<I> Debug for Tee<I>where I: Debug + Iterator, <I as Iterator>::Item: Debug,
impl<I> Debug for Unique<I>where I: Iterator + Debug, <I as Iterator>::Item: Hash + Eq + Debug,
impl<I> Debug for WhileSome<I>where I: Debug,
impl<I> Debug for FromIter<I>where I: Debug,
impl<I> Debug for DecodeUtf16<I>where I: Debug + Iterator<Item = u16>,
impl<I> Debug for Dim<I>where I: Debug,
impl<I> Debug for 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>where I: Debug + Iterator, ElemF: Debug, <I as Iterator>::Item: Debug,
impl<I, F> Debug for FilterMap<I, F>where I: Debug,
impl<I, F> Debug for Inspect<I, F>where I: Debug,
impl<I, F> Debug for 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>where I: Iterator + Debug, <I as Iterator>::Item: Debug,
impl<I, F> Debug for PadUsing<I, F>where I: Debug,
impl<I, F> Debug for Positions<I, F>where I: Debug,
impl<I, F> Debug for Update<I, F>where I: Debug,
impl<I, G> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::IntersperseWith<I, G>where I: Iterator + Debug, <I as Iterator>::Item: Debug, G: Debug,
impl<I, J> Debug for ConsTuples<I, J>where I: Debug + Iterator<Item = J>, J: Debug,
impl<I, J> Debug for Interleave<I, J>where I: Debug, J: Debug,
impl<I, J> Debug for InterleaveShortest<I, J>where I: Debug + Iterator, J: Debug + Iterator<Item = <I as Iterator>::Item>,
impl<I, J> Debug for Product<I, J>where I: Debug + Iterator, J: Debug, <I as Iterator>::Item: Debug,
impl<I, J> Debug for ZipEq<I, J>where I: Debug, J: Debug,
impl<I, J, F> Debug for MergeBy<I, J, F>where I: Iterator + Debug, J: Iterator<Item = <I as Iterator>::Item> + Debug, <I as Iterator>::Item: Debug,
impl<I, J, F> Debug for MergeJoinBy<I, J, F>where I: Iterator + Debug, <I as Iterator>::Item: Debug, J: Iterator + Debug, <J as Iterator>::Item: Debug,
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>where I: Debug, P: Debug,
impl<I, St, F> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::Scan<I, St, F>where I: Debug, St: Debug,
impl<I, T> Debug for CircularTupleWindows<I, T>where I: Debug + Iterator<Item = <T as TupleCollect>::Item> + Clone, T: Debug + Clone + TupleCollect,
impl<I, T> Debug for TupleCombinations<I, T>where I: Debug + Iterator, T: Debug + HasCombination<I>, <T as HasCombination<I>>::Combination: Debug,
impl<I, T> Debug for TupleWindows<I, T>where I: Debug + Iterator<Item = <T as TupleCollect>::Item>, T: Debug + HomogeneousTuple,
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>where I: Debug + Iterator, <I as Iterator>::Item: IntoIterator<IntoIter = U, Item = <U as Iterator>::Item>, U: Debug + Iterator,
impl<I, U, F> Debug for FlatMap<I, U, F>where I: Debug, U: IntoIterator, <U as IntoIterator>::IntoIter: Debug,
impl<I, V, F> Debug for UniqueBy<I, V, F>where I: Iterator + Debug, V: Debug + Hash + Eq,
impl<I, const N: usize> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::__std_iter::ArrayChunks<I, N>where I: Debug + Iterator, <I as Iterator>::Item: Debug,
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 RangeFrom<Idx>where Idx: Debug,
impl<Idx> Debug for RangeInclusive<Idx>where Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where Idx: Debug,
impl<Idx> Debug for RangeToInclusive<Idx>where Idx: 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>where K: Debug + LutKer,
impl<K> Debug for Iter<'_, K>where K: Debug,
impl<K, A> Debug for Drain<'_, K, A>where K: Debug, A: Allocator + Clone,
impl<K, A> Debug for IntoIter<K, A>where K: Debug, A: Allocator + Clone,
impl<K, T> Debug for ElementWiseImpl<K, T>where K: Debug + ElementWiseKer<T> + Clone, T: Debug + LADatum,
impl<K, TI> Debug for MatMatMulImpl<K, TI>where TI: LADatum, K: MatMatMulKer<TI> + 'static,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::Entry<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Cursor<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::Iter<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::IterMut<'_, K, V>where K: Debug, V: Debug,
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>where K: Debug, V: Debug,
impl<K, V> Debug for RangeMut<'_, K, V>where K: Debug, V: Debug,
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>where K: Debug, V: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::IntoIter<K, V>where K: Debug, V: Debug,
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>where K: Debug, V: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::IterMut<'_, K, V>where K: Debug, V: Debug,
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>where K: Debug, V: Debug,
impl<K, V> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::OccupiedError<'_, K, V>where K: Debug, V: Debug,
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 Iter<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for IterMut<'_, K, V>where K: Debug, V: Debug,
impl<K, V> Debug for Keys<'_, K, V>where K: Debug,
impl<K, V> Debug for Values<'_, K, V>where V: Debug,
impl<K, V> Debug for ValuesMut<'_, K, V>where K: Debug, 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>where K: Debug + Ord, V: Debug, A: Allocator + Clone,
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>where K: Debug, V: Debug,
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>where K: Debug, V: Debug, A: Allocator + Clone,
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>where K: Debug, A: Allocator + Clone,
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>where V: Debug, A: Allocator + Clone,
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>where K: Debug + Ord, V: Debug, A: Allocator + Clone,
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>where K: Debug + Ord, V: Debug, A: Allocator + Clone,
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>where K: Debug + Ord, A: Allocator + Clone,
impl<K, V, A> Debug for BTreeMap<K, V, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for Drain<'_, K, V, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, A> Debug for IntoIter<K, V, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, F> Debug for tract_pulse::internal::tract_core::ops::nn::tract_data::internal::tract_smallvec::alloc::collections::btree_map::DrainFilter<'_, K, V, F, Global>where K: Debug, V: Debug, F: FnMut(&K, &mut V) -> bool,
impl<K, V, S> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::RawEntryMut<'_, K, V, S>where K: Debug, V: Debug,
impl<K, V, S> Debug for tract_pulse::internal::HashMap<K, V, S>where K: Debug, V: Debug,
impl<K, V, S> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::RawOccupiedEntryMut<'_, K, V, S>where K: Debug, V: Debug,
impl<K, V, S> Debug for tract_pulse::internal::tract_core::ops::nn::tract_downcast_rs::__std::collections::hash_map::RawVacantEntryMut<'_, K, V, S>
impl<K, V, S, A> Debug for Entry<'_, K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for HashMap<K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for OccupiedEntry<'_, K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for OccupiedError<'_, K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for RawEntryBuilder<'_, K, V, S, A>where A: Allocator + Clone,
impl<K, V, S, A> Debug for RawEntryBuilderMut<'_, K, V, S, A>where A: Allocator + Clone,
impl<K, V, S, A> Debug for RawEntryMut<'_, K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for RawOccupiedEntryMut<'_, K, V, S, A>where K: Debug, V: Debug, A: Allocator + Clone,
impl<K, V, S, A> Debug for RawVacantEntryMut<'_, K, V, S, A>where A: Allocator + Clone,
impl<K, V, S, A> Debug for VacantEntry<'_, K, V, S, A>where K: Debug, A: Allocator + Clone,
impl<L, R> Debug for Either<L, R>where L: Debug, R: Debug,
impl<P> Debug for Pin<P>where P: Debug,
impl<Parts, D> Debug for tract_pulse::internal::tract_core::ops::nn::tract_ndarray::Zip<Parts, D>where Parts: Debug, D: Debug,
impl<R> Debug for BufReader<R>where R: Debug,
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<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<Symbolic, Concrete> Debug for GeometryBound<Symbolic, Concrete>where Symbolic: Debug, Concrete: Debug,
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 tract_pulse::internal::tract_core::ops::nn::tract_data::prelude::tract_itertools::Position<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 TryLockError<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 &Twhere T: Debug + ?Sized,
impl<T> Debug for &mut Twhere T: Debug + ?Sized,
impl<T> Debug for [T]where T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where T: Debug + ?Sized,
This trait is implemented for tuples up to twelve items long.