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 rstsr_core::error::Error
impl Debug for FlagSymm
impl Debug for TensorIterOrder
impl Debug for TensorOrder
impl Debug for BroadcastType
impl Debug for Indexer
impl Debug for MatMulType
impl Debug for TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for core::cmp::Ordering
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for core::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for core::fmt::Sign
impl Debug for IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for core::net::socket_addr::SocketAddr
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for GetManyMutError
impl Debug for SearchStep
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for SeekFrom
impl Debug for ErrorKind
impl Debug for Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for RecvTimeoutError
impl Debug for TryRecvError
impl Debug for _Unwind_Reason_Code
impl Debug for CheckedCastError
impl Debug for PodCastError
impl Debug for BigEndian
impl Debug for LittleEndian
impl Debug for Conj
impl Debug for Side
impl Debug for NpyDType
impl Debug for faer::linalg::evd::ComputeVectors
impl Debug for BlockStructure
impl Debug for faer::linalg::svd::ComputeVectors
impl Debug for faer::linalg::zip::Diag
impl Debug for CreationError
impl Debug for FaerError
impl Debug for FillMode
impl Debug for faer::sparse::linalg::CholeskyError
impl Debug for LuError
impl Debug for NanHandling
impl Debug for gemm_common::Parallelism
impl Debug for itertools::with_position::Position
impl Debug for matrixcompare::comparison_failure::Entry
impl Debug for UlpComparisonResult
impl Debug for PrefilterConfig
impl Debug for DType
impl Debug for Order
impl Debug for Endianness
impl Debug for TimeUnits
impl Debug for TypeChar
impl Debug for num_bigint::bigint::Sign
impl Debug for FloatErrorKind
impl Debug for InputLocation
impl Debug for LineColLocation
impl Debug for Atomicity
impl Debug for Lookahead
impl Debug for MatchDir
impl Debug for pest::pratt_parser::Assoc
impl Debug for pest::prec_climber::Assoc
impl Debug for pulp::x86::Arch
impl Debug for Value
impl Debug for FormatError
impl Debug for py_literal::parse::ParseError
impl Debug for BernoulliError
impl Debug for rand_distr::binomial::Error
impl Debug for rand_distr::cauchy::Error
impl Debug for rand_distr::exponential::Error
impl Debug for rand_distr::frechet::Error
impl Debug for BetaError
impl Debug for ChiSquaredError
impl Debug for rand_distr::gamma::Error
impl Debug for FisherFError
impl Debug for rand_distr::geometric::Error
impl Debug for rand_distr::gumbel::Error
impl Debug for rand_distr::hypergeometric::Error
impl Debug for rand_distr::inverse_gaussian::Error
impl Debug for rand_distr::normal::Error
impl Debug for rand_distr::normal_inverse_gaussian::Error
impl Debug for rand_distr::pareto::Error
impl Debug for PertError
impl Debug for rand_distr::poisson::Error
impl Debug for rand_distr::skew_normal::Error
impl Debug for TriangularError
impl Debug for rand_distr::weibull::Error
impl Debug for ZetaError
impl Debug for ZipfError
impl Debug for CacheInfoType
impl Debug for CacheType
impl Debug for DatType
impl Debug for ExtendedRegisterStateLocation
impl Debug for ExtendedRegisterType
impl Debug for Hypervisor
impl Debug for SgxSectionInfo
impl Debug for TopologyType
impl Debug for Associativity
impl Debug for Yield
impl Debug for ucd_trie::owned::Error
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 DeviceCpuSerial
impl Debug for DeviceFaer
impl Debug for DeviceCpuRayon
impl Debug for RangeFull
impl Debug for Global
impl Debug for ByteString
impl Debug for UnorderedKeyError
impl Debug for TryReserveError
impl Debug for CString
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for core::alloc::layout::Layout
impl Debug for LayoutError
impl Debug for core::alloc::AllocError
impl Debug for TypeId
impl Debug for TryFromSliceError
impl Debug for core::ascii::EscapeDefault
impl Debug for ByteStr
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for ParseCharError
impl Debug for DecodeUtf16Error
impl Debug for core::char::EscapeDebug
impl Debug for core::char::EscapeDefault
impl Debug for core::char::EscapeUnicode
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for 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 core::core_arch::x86::bf16
impl Debug for CStr
impl Debug for FromBytesUntilNulError
impl Debug for Arguments<'_>
impl Debug for core::fmt::Error
impl Debug for FormattingOptions
impl Debug for SipHasher
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomPinned
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for Assume
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for core::num::dec2flt::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for PanicMessage<'_>
impl Debug for core::ptr::alignment::Alignment
impl Debug for ParseBoolError
impl Debug for Utf8Error
impl Debug for core::str::iter::Chars<'_>
impl Debug for core::str::iter::EncodeUtf16<'_>
impl Debug for Utf8Chunks<'_>
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 Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for Duration
impl Debug for TryFromFloatSecsError
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for OsStr
impl Debug for OsString
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for File
impl Debug for FileTimes
impl Debug for FileType
impl Debug for Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for DefaultHasher
impl Debug for RandomState
impl Debug for WriterPanicked
impl Debug for std::io::error::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for Stderr
impl Debug for StderrLock<'_>
impl Debug for Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdout
impl Debug for StdoutLock<'_>
impl Debug for std::io::util::Empty
impl Debug for std::io::util::Repeat
impl Debug for Sink
impl Debug for IntoIncoming
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for UdpSocket
impl Debug for BorrowedFd<'_>
impl Debug for OwnedFd
impl Debug for PidFd
impl Debug for std::os::unix::net::addr::SocketAddr
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for UCred
impl Debug for Components<'_>
impl Debug for std::path::Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for Stdio
impl Debug for DefaultRandomSource
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for RecvError
impl Debug for Condvar
impl Debug for WaitTimeoutResult
impl Debug for std::sync::poison::once::Once
impl Debug for OnceState
impl Debug for AccessError
impl Debug for std::thread::scoped::Scope<'_, '_>
impl Debug for Builder
impl Debug for Thread
impl Debug for ThreadId
impl Debug for Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for bitflags::parser::ParseError
impl Debug for Collector
impl Debug for LocalHandle
impl Debug for Guard
impl Debug for Backoff
impl Debug for Parker
impl Debug for Unparker
impl Debug for WaitGroup
impl Debug for crossbeam_utils::thread::Scope<'_>
impl Debug for dyn_stack::alloc::AllocError
impl Debug for dyn_stack::mem::AllocError
impl Debug for dyn_stack::mem::AllocError
impl Debug for SizeOverflow
impl Debug for dyn_stack::stack_req::StackReq
impl Debug for dyn_stack::stack_req::StackReq
impl Debug for Eq
impl Debug for EqError
impl Debug for Ge
impl Debug for GeError
impl Debug for Gt
impl Debug for GtError
impl Debug for Le
impl Debug for LeError
impl Debug for Lt
impl Debug for LtError
impl Debug for Ne
impl Debug for NeError
impl Debug for NoSimd
impl Debug for Symbolic
impl Debug for c32
impl Debug for c32conj
impl Debug for c64
impl Debug for c64conj
impl Debug for BunchKaufmanInfo
impl Debug for LdltInfo
impl Debug for LltInfo
impl Debug for faer::linalg::cholesky::llt::CholeskyError
impl Debug for EvdParams
impl Debug for FullPivLuInfo
impl Debug for PartialPivLuInfo
impl Debug for ColPivQrInfo
impl Debug for faer::sparse::linalg::amd::Control
impl Debug for FlopCount
impl Debug for faer::sparse::linalg::colamd::Control
impl Debug for SparseMatmulInfo
impl Debug for SupernodalThreshold
impl Debug for Size<'_>
impl Debug for NoConj
impl Debug for YesConj
impl Debug for gemm_common::cache::CacheInfo
impl Debug for KernelParams
impl Debug for gemm_common::simd::Scalar
impl Debug for gemm_common::simd::x86::V3
impl Debug for V3Half
impl Debug for half::bfloat::bf16
impl Debug for f16
impl Debug for ExactElementwiseComparator
impl Debug for ExactError
impl Debug for UlpElementwiseComparator
impl Debug for UlpError
impl Debug for DimensionMismatch
impl Debug for One
impl Debug for Three
impl Debug for Two
impl Debug for memchr::arch::all::packedpair::Finder
impl Debug for memchr::arch::all::packedpair::Pair
impl Debug for memchr::arch::all::rabinkarp::Finder
impl Debug for memchr::arch::all::rabinkarp::FinderRev
impl Debug for memchr::arch::all::shiftor::Finder
impl Debug for memchr::arch::all::twoway::Finder
impl Debug for memchr::arch::all::twoway::FinderRev
impl Debug for FinderBuilder
impl Debug for Field
impl Debug for DTypeError
impl Debug for ParseTypeStrError
impl Debug for TypeStr
impl Debug for BigInt
impl Debug for BigUint
impl Debug for ParseBigIntError
impl Debug for ParseRatioError
impl Debug for num_traits::ParseFloatError
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for Adx
impl Debug for Aes
impl Debug for Avx2
impl Debug for Avx
impl Debug for Bmi1
impl Debug for Bmi2
impl Debug for Cmpxchg16b
impl Debug for F16c
impl Debug for Fma
impl Debug for Fxsr
impl Debug for Lzcnt
impl Debug for Pclmulqdq
impl Debug for Popcnt
impl Debug for Rdrand
impl Debug for Rdseed
impl Debug for Rtm
impl Debug for Sha
impl Debug for Sse2
impl Debug for Sse3
impl Debug for Sse4_1
impl Debug for Sse4_2
impl Debug for Sse4a
impl Debug for Sse
impl Debug for Ssse3
impl Debug for Tbm
impl Debug for Xsave
impl Debug for Xsavec
impl Debug for Xsaveopt
impl Debug for Xsaves
impl Debug for pulp::Arch
impl Debug for Scalar128b
impl Debug for Scalar256b
impl Debug for Scalar512b
impl Debug for pulp::Scalar
impl Debug for pulp::Scalar
impl Debug for ScalarArch
impl Debug for pulp::b8
impl Debug for pulp::b8
impl Debug for pulp::b16
impl Debug for pulp::b16
impl Debug for pulp::b32
impl Debug for pulp::b32
impl Debug for pulp::b64
impl Debug for pulp::b64
impl Debug for pulp::f32x4
impl Debug for pulp::f32x4
impl Debug for pulp::f32x8
impl Debug for pulp::f32x8
impl Debug for pulp::f32x16
impl Debug for pulp::f32x16
impl Debug for pulp::f64x2
impl Debug for pulp::f64x2
impl Debug for pulp::f64x4
impl Debug for pulp::f64x4
impl Debug for pulp::f64x8
impl Debug for pulp::f64x8
impl Debug for pulp::i8x16
impl Debug for pulp::i8x16
impl Debug for pulp::i8x32
impl Debug for pulp::i8x32
impl Debug for pulp::i8x64
impl Debug for pulp::i8x64
impl Debug for pulp::i16x8
impl Debug for pulp::i16x8
impl Debug for pulp::i16x16
impl Debug for pulp::i16x16
impl Debug for pulp::i16x32
impl Debug for pulp::i16x32
impl Debug for pulp::i32x4
impl Debug for pulp::i32x4
impl Debug for pulp::i32x8
impl Debug for pulp::i32x8
impl Debug for pulp::i32x16
impl Debug for pulp::i32x16
impl Debug for pulp::i64x2
impl Debug for pulp::i64x2
impl Debug for pulp::i64x4
impl Debug for pulp::i64x4
impl Debug for pulp::i64x8
impl Debug for pulp::i64x8
impl Debug for pulp::m8
impl Debug for pulp::m8
impl Debug for pulp::m8x16
impl Debug for pulp::m8x16
impl Debug for pulp::m8x32
impl Debug for pulp::m8x32
impl Debug for pulp::m16
impl Debug for pulp::m16
impl Debug for pulp::m16x8
impl Debug for pulp::m16x8
impl Debug for pulp::m16x16
impl Debug for pulp::m16x16
impl Debug for pulp::m32
impl Debug for pulp::m32
impl Debug for pulp::m32x4
impl Debug for pulp::m32x4
impl Debug for pulp::m32x8
impl Debug for pulp::m32x8
impl Debug for m32x16
impl Debug for pulp::m64
impl Debug for pulp::m64
impl Debug for pulp::m64x2
impl Debug for pulp::m64x2
impl Debug for pulp::m64x4
impl Debug for pulp::m64x4
impl Debug for m64x8
impl Debug for pulp::u8x16
impl Debug for pulp::u8x16
impl Debug for pulp::u8x32
impl Debug for pulp::u8x32
impl Debug for pulp::u8x64
impl Debug for pulp::u8x64
impl Debug for pulp::u16x8
impl Debug for pulp::u16x8
impl Debug for pulp::u16x16
impl Debug for pulp::u16x16
impl Debug for pulp::u16x32
impl Debug for pulp::u16x32
impl Debug for pulp::u32x4
impl Debug for pulp::u32x4
impl Debug for pulp::u32x8
impl Debug for pulp::u32x8
impl Debug for pulp::u32x16
impl Debug for pulp::u32x16
impl Debug for pulp::u64x2
impl Debug for pulp::u64x2
impl Debug for pulp::u64x4
impl Debug for pulp::u64x4
impl Debug for pulp::u64x8
impl Debug for pulp::u64x8
impl Debug for pulp::x86::V2
impl Debug for pulp::x86::V3
impl Debug for V3Scalar
impl Debug for pulp::x86::v2::V2
impl Debug for pulp::x86::v3::V3
impl Debug for V3_128b
impl Debug for V3_256b
impl Debug for V3_512b
impl Debug for V3_Scalar
impl Debug for Bernoulli
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for Alphanumeric
impl Debug for Standard
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for StepRng
impl Debug for rand_core::error::Error
impl Debug for Binomial
impl Debug for Exp1
impl Debug for Geometric
impl Debug for StandardGeometric
impl Debug for Hypergeometric
impl Debug for StandardNormal
impl Debug for UnitBall
impl Debug for UnitCircle
impl Debug for UnitDisc
impl Debug for UnitSphere
impl Debug for ApmInfo
impl Debug for ExtendedProcessorFeatureIdentifiers
impl Debug for L1CacheTlbInfo
impl Debug for L2And3CacheTlbInfo
impl Debug for MemoryEncryptionInfo
impl Debug for PerformanceOptimizationInfo
impl Debug for ProcessorBrandString
impl Debug for ProcessorCapacityAndFeatureInfo
impl Debug for ProcessorTopologyInfo
impl Debug for SvmFeatures
impl Debug for Tlb1gbPageInfo
impl Debug for raw_cpuid::CacheInfo
impl Debug for CacheInfoIter
impl Debug for CacheParameter
impl Debug for CpuIdResult
impl Debug for DatInfo
impl Debug for DirectCacheAccessInfo
impl Debug for EpcSection
impl Debug for ExtendedFeatures
impl Debug for ExtendedState
impl Debug for ExtendedTopologyLevel
impl Debug for FeatureInfo
impl Debug for L2CatInfo
impl Debug for L3CatInfo
impl Debug for L3MonitoringInfo
impl Debug for MemBwAllocationInfo
impl Debug for MonitorMwaitInfo
impl Debug for PerformanceMonitoringInfo
impl Debug for ProcessorFrequencyInfo
impl Debug for ProcessorSerial
impl Debug for ProcessorTraceInfo
impl Debug for SoCVendorBrand
impl Debug for ThermalPowerInfo
impl Debug for TscInfo
impl Debug for VendorInfo
impl Debug for ThreadBuilder
impl Debug for Configuration
impl Debug for FnContext
impl Debug for ThreadPoolBuildError
impl Debug for ThreadPool
impl Debug for IgnoredAny
impl Debug for serde::de::value::Error
impl Debug for TrieSetOwned
impl Debug for String
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for std::path::Prefix<'a>
impl<'a> Debug for faer::Parallelism<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for Request<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for Location<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for core::str::iter::Bytes<'a>
impl<'a> Debug for core::str::iter::CharIndices<'a>
impl<'a> Debug for core::str::iter::EscapeDebug<'a>
impl<'a> Debug for core::str::iter::EscapeDefault<'a>
impl<'a> Debug for core::str::iter::EscapeUnicode<'a>
impl<'a> Debug for core::str::iter::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for core::str::iter::SplitAsciiWhitespace<'a>
impl<'a> Debug for core::str::iter::SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for CholeskySymbolicParams<'a>
impl<'a> Debug for LuSymbolicParams<'a>
impl<'a> Debug for QrSymbolicParams<'a>
impl<'a> Debug for SymbolicSupernodalParams<'a>
impl<'a> Debug for BroadcastContext<'a>
impl<'a> Debug for rayon::string::Drain<'a>
impl<'a> Debug for TrieSetSlice<'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 OneIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for TwoIter<'a, 'h>
impl<'a, A> Debug for core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, C: Debug> Debug for DataCow<'a, C>
impl<'a, C: Debug> Debug for DataMut<'a, C>
impl<'a, C: Debug> Debug for DataRef<'a, C>
impl<'a, E> Debug for ColMut<'a, E>where
E: Entity,
impl<'a, E> Debug for ColRef<'a, E>where
E: Entity,
impl<'a, E> Debug for DiagMut<'a, E>
impl<'a, E> Debug for DiagRef<'a, E>
impl<'a, E> Debug for ColChunks<'a, E>
impl<'a, E> Debug for ColChunksMut<'a, E>
impl<'a, E> Debug for ColElemChunks<'a, E>
impl<'a, E> Debug for ColElemChunksMut<'a, E>
impl<'a, E> Debug for ColElemPartition<'a, E>
impl<'a, E> Debug for ColElemPartitionMut<'a, E>
impl<'a, E> Debug for ColIter<'a, E>
impl<'a, E> Debug for ColIterMut<'a, E>
impl<'a, E> Debug for ColPartition<'a, E>
impl<'a, E> Debug for ColPartitionMut<'a, E>
impl<'a, E> Debug for ElemIter<'a, E>
impl<'a, E> Debug for ElemIterMut<'a, E>
impl<'a, E> Debug for RowChunks<'a, E>
impl<'a, E> Debug for RowChunksMut<'a, E>
impl<'a, E> Debug for RowElemChunks<'a, E>
impl<'a, E> Debug for RowElemChunksMut<'a, E>
impl<'a, E> Debug for RowElemPartition<'a, E>
impl<'a, E> Debug for RowElemPartitionMut<'a, E>
impl<'a, E> Debug for RowIter<'a, E>
impl<'a, E> Debug for RowIterMut<'a, E>
impl<'a, E> Debug for RowPartition<'a, E>
impl<'a, E> Debug for RowPartitionMut<'a, E>
impl<'a, E> Debug for BunchKaufmanRegularization<'a, E>
impl<'a, E> Debug for LdltRegularization<'a, E>
impl<'a, E> Debug for faer::mat::matmut::MatMut<'a, E>where
E: Entity,
impl<'a, E> Debug for faer::mat::matref::MatRef<'a, E>where
E: Entity,
impl<'a, E> Debug for RowMut<'a, E>where
E: Entity,
impl<'a, E> Debug for RowRef<'a, E>where
E: Entity,
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 faer::perm::permref::PermRef<'a, I>
impl<'a, I> Debug for EliminationTreeRef<'a, I>
impl<'a, I> Debug for SymbolicSupernodeRef<'a, I>
impl<'a, I> Debug for Format<'a, I>
impl<'a, I, A> Debug for Splice<'a, I, A>
impl<'a, I, E> Debug for SimplicialLdltRef<'a, I, E>
impl<'a, I, E> Debug for SimplicialLltRef<'a, I, E>
impl<'a, I, E> Debug for IntranodeBunchKaufmanRef<'a, I, E>
impl<'a, I, E> Debug for LdltRef<'a, I, E>
impl<'a, I, E> Debug for LltRef<'a, I, E>
impl<'a, I, E> Debug for SupernodalIntranodeBunchKaufmanRef<'a, I, E>
impl<'a, I, E> Debug for SupernodalLdltRef<'a, I, E>
impl<'a, I, E> Debug for SupernodalLltRef<'a, I, E>
impl<'a, I, E> Debug for SupernodeRef<'a, I, E>
impl<'a, I, E> Debug for LuRef<'a, I, E>
impl<'a, I, E> Debug for SimplicialQrRef<'a, I, E>
impl<'a, I, E> Debug for QrRef<'a, I, E>
impl<'a, I, E> Debug for SupernodalQrRef<'a, I, E>
impl<'a, I, E> Debug for ProcessResults<'a, I, E>
impl<'a, I, F> Debug for TakeWhileRef<'a, I, F>
impl<'a, I, F> Debug for FormatWith<'a, I, F>
impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F>
impl<'a, K, F> Debug for std::collections::hash::set::ExtractIf<'a, K, F>
impl<'a, K, V> Debug for rayon::collections::btree_map::Iter<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::btree_map::IterMut<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::Drain<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::Iter<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::IterMut<'a, K, V>
impl<'a, K, V, F> Debug for std::collections::hash::map::ExtractIf<'a, K, V, F>
impl<'a, P> Debug for core::str::iter::MatchIndices<'a, P>
impl<'a, P> Debug for core::str::iter::Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for core::str::iter::RSplit<'a, P>
impl<'a, P> Debug for core::str::iter::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for core::str::iter::Split<'a, P>
impl<'a, P> Debug for core::str::iter::SplitInclusive<'a, P>
impl<'a, P> Debug for core::str::iter::SplitN<'a, P>
impl<'a, P> Debug for core::str::iter::SplitTerminator<'a, P>
impl<'a, S: Debug> Debug for DataMutable<'a, S>
impl<'a, S: Debug> Debug for DataReference<'a, S>
impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for dyn_stack::DynArray<'a, T>where
T: Debug,
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for rand::distributions::slice::Slice<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::binary_heap::Drain<'a, T>
impl<'a, T> Debug for rayon::collections::binary_heap::Iter<'a, T>
impl<'a, T> Debug for rayon::collections::btree_set::Iter<'a, T>
impl<'a, T> Debug for rayon::collections::hash_set::Drain<'a, T>
impl<'a, T> Debug for rayon::collections::hash_set::Iter<'a, T>
impl<'a, T> Debug for rayon::collections::linked_list::Iter<'a, T>
impl<'a, T> Debug for rayon::collections::linked_list::IterMut<'a, T>
impl<'a, T> Debug for rayon::collections::vec_deque::Drain<'a, T>
impl<'a, T> Debug for rayon::collections::vec_deque::Iter<'a, T>
impl<'a, T> Debug for rayon::collections::vec_deque::IterMut<'a, T>
impl<'a, T> Debug for rayon::option::Iter<'a, T>
impl<'a, T> Debug for rayon::option::IterMut<'a, T>
impl<'a, T> Debug for rayon::result::Iter<'a, T>
impl<'a, T> Debug for rayon::result::IterMut<'a, T>
impl<'a, T, A> Debug for alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, F, A> Debug for rstsr_core::prelude_dev::vec::ExtractIf<'a, T, F, A>
impl<'a, T, P> Debug for core::slice::iter::ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for core::slice::iter::ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for core::slice::iter::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<'ch> Debug for rayon::str::Bytes<'ch>
impl<'ch> Debug for rayon::str::CharIndices<'ch>
impl<'ch> Debug for rayon::str::Chars<'ch>
impl<'ch> Debug for rayon::str::EncodeUtf16<'ch>
impl<'ch> Debug for rayon::str::Lines<'ch>
impl<'ch> Debug for rayon::str::SplitAsciiWhitespace<'ch>
impl<'ch> Debug for rayon::str::SplitWhitespace<'ch>
impl<'ch, P> Debug for rayon::str::MatchIndices<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::Matches<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::Split<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::SplitInclusive<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::SplitTerminator<'ch, P>where
P: Debug + Pattern,
impl<'data, T> Debug for rayon::slice::chunks::Chunks<'data, T>
impl<'data, T> Debug for rayon::slice::chunks::ChunksExact<'data, T>
impl<'data, T> Debug for rayon::slice::chunks::ChunksExactMut<'data, T>
impl<'data, T> Debug for rayon::slice::chunks::ChunksMut<'data, T>
impl<'data, T> Debug for rayon::slice::rchunks::RChunks<'data, T>
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExact<'data, T>
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExactMut<'data, T>
impl<'data, T> Debug for rayon::slice::rchunks::RChunksMut<'data, T>
impl<'data, T> Debug for rayon::slice::Iter<'data, T>
impl<'data, T> Debug for rayon::slice::IterMut<'data, T>
impl<'data, T> Debug for rayon::slice::Windows<'data, T>
impl<'data, T> Debug for rayon::vec::Drain<'data, T>
impl<'data, T, P> Debug for rayon::slice::chunk_by::ChunkBy<'data, T, P>where
T: Debug,
impl<'data, T, P> Debug for rayon::slice::chunk_by::ChunkByMut<'data, T, P>where
T: Debug,
impl<'data, T, P> Debug for rayon::slice::Split<'data, T, P>where
T: Debug,
impl<'data, T, P> Debug for rayon::slice::SplitInclusive<'data, T, P>where
T: Debug,
impl<'data, T, P> Debug for rayon::slice::SplitInclusiveMut<'data, T, P>where
T: Debug,
impl<'data, T, P> Debug for rayon::slice::SplitMut<'data, T, P>where
T: Debug,
impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>
impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>
impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
impl<'f> Debug for VaListImpl<'f>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'i> Debug for pest::position::Position<'i>
impl<'i> Debug for Span<'i>
impl<'i, R> Debug for Token<'i, R>where
R: Debug,
impl<'i, R> Debug for FlatPairs<'i, R>where
R: RuleType,
impl<'i, R> Debug for pest::iterators::pair::Pair<'i, R>where
R: RuleType,
impl<'i, R> Debug for Pairs<'i, R>where
R: RuleType,
impl<'i, R> Debug for Tokens<'i, R>where
R: RuleType,
impl<'i, R> Debug for ParserState<'i, R>
impl<'n> Debug for memchr::memmem::Finder<'n>
impl<'n> Debug for memchr::memmem::FinderRev<'n>
impl<'scope> Debug for rayon_core::scope::Scope<'scope>
impl<'scope> Debug for ScopeFifo<'scope>
impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env>
impl<'scope, T> Debug for std::thread::scoped::ScopedJoinHandle<'scope, T>
impl<A> Debug for core::iter::sources::repeat::Repeat<A>where
A: Debug,
impl<A> Debug for core::iter::sources::repeat_n::RepeatN<A>where
A: Debug,
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for IterRange<A>where
A: Debug,
impl<A> Debug for IterRangeFrom<A>where
A: Debug,
impl<A> Debug for IterRangeInclusive<A>where
A: Debug,
impl<A> Debug for itertools::repeatn::RepeatN<A>where
A: Debug,
impl<A> Debug for ExtendedGcd<A>where
A: Debug,
impl<A> Debug for 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 core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for core::iter::adapters::zip::Zip<A, B>
impl<A, B> Debug for rayon::iter::chain::Chain<A, B>where
A: Debug + ParallelIterator,
B: Debug + ParallelIterator<Item = <A as ParallelIterator>::Item>,
impl<A, B> Debug for rayon::iter::zip::Zip<A, B>
impl<A, B> Debug for rayon::iter::zip_eq::ZipEq<A, B>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for std::io::Lines<B>where
B: Debug,
impl<B> Debug for std::io::Split<B>where
B: Debug,
impl<B> Debug for Flag<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>
impl<Builder> Debug for WithDType<Builder>where
Builder: Debug,
impl<Builder> Debug for WithShape<Builder>where
Builder: Debug,
impl<C: Debug> Debug for DataArc<C>
impl<C: Debug> Debug for DataOwned<C>
impl<D> Debug for IterLayout<D>
impl<D> Debug for IterLayoutColMajor<D>
impl<D> Debug for IterLayoutRowMajor<D>
impl<D> Debug for rstsr_core::layout::layoutbase::Layout<D>where
D: DimDevAPI,
impl<D> Debug for Stride<D>
impl<D, F, T, S> Debug for DistMap<D, F, T, S>
impl<D, R, T> Debug for DistIter<D, R, T>
impl<D, S> Debug for rayon::iter::splitter::Split<D, S>where
D: Debug,
impl<DA, DB> Debug for LayoutMatMulConfig<DA, DB>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for Report<E>
impl<E> Debug for Col<E>where
E: Entity,
impl<E> Debug for faer::diag::diagown::Diag<E>
impl<E> Debug for LltRegularization<E>
impl<E> Debug for faer::linalg::solvers::Cholesky<E>
impl<E> Debug for ColPivQr<E>
impl<E> Debug for Eigendecomposition<E>
impl<E> Debug for FullPivLu<E>
impl<E> Debug for Lblt<E>
impl<E> Debug for PartialPivLu<E>
impl<E> Debug for faer::linalg::solvers::Qr<E>
impl<E> Debug for SelfAdjointEigendecomposition<E>
impl<E> Debug for Svd<E>
impl<E> Debug for ThinSvd<E>
impl<E> Debug for Mat<E>where
E: Entity,
impl<E> Debug for Row<E>where
E: Entity,
impl<E> Debug for Scale<E>where
E: Debug,
impl<E> Debug for faer::utils::constrained::mat::MatMut<'_, '_, '_, E>where
E: Entity,
impl<E> Debug for faer::utils::constrained::mat::MatRef<'_, '_, '_, E>where
E: Entity,
impl<E> Debug for ArrayGroup<'_, '_, E>where
E: Entity,
impl<E> Debug for ArrayGroupMut<'_, '_, E>where
E: Entity,
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, S> Debug for faer::utils::simd::Prefix<'_, E, S>
impl<E, S> Debug for faer::utils::simd::PrefixMut<'_, E, S>
impl<E, S> Debug for faer::utils::simd::Suffix<'_, E, S>
impl<E, S> Debug for faer::utils::simd::SuffixMut<'_, E, S>
impl<E, T> Debug for RefGroup<'_, E, T>
impl<E, T> Debug for RefGroupMut<'_, E, T>
impl<E, T> Debug for SliceGroup<'_, E, T>
impl<E, T> Debug for SliceGroupMut<'_, E, T>
impl<E, T> Debug for VecGroup<E, T>
impl<F> Debug for core::fmt::builders::FromFn<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for core::iter::sources::from_fn::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for RepeatWith<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for Cauchy<F>
impl<F> Debug for Exp<F>
impl<F> Debug for Frechet<F>
impl<F> Debug for Beta<F>
impl<F> Debug for ChiSquared<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Debug for FisherF<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Debug for Gamma<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Debug for StudentT<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Debug for Gumbel<F>
impl<F> Debug for InverseGaussian<F>
impl<F> Debug for LogNormal<F>
impl<F> Debug for Normal<F>
impl<F> Debug for NormalInverseGaussian<F>
impl<F> Debug for Pareto<F>
impl<F> Debug for Pert<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Debug for Poisson<F>
impl<F> Debug for SkewNormal<F>
impl<F> Debug for Triangular<F>
impl<F> Debug for Weibull<F>
impl<F> Debug for Zeta<F>
impl<F> Debug for Zipf<F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<H> Debug for BuildHasherDefault<H>
impl<Head, Tail> Debug for faer::linalg::zip::Zip<Head, Tail>
impl<I> Debug for SymbolicCholeskyRaw<I>
impl<I> Debug for SymbolicLuRaw<I>where
I: Debug,
impl<I> Debug for SymbolicQrRaw<I>
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for core::iter::adapters::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::copied::Copied<I>where
I: Debug,
impl<I> Debug for Cycle<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for Fuse<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::intersperse::Intersperse<I>
impl<I> Debug for Peekable<I>
impl<I> Debug for core::iter::adapters::skip::Skip<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<I> Debug for ComplexConjIter<I>where
I: Debug,
impl<I> Debug for ComplexIter<I>where
I: Debug,
impl<I> Debug for Perm<I>
impl<I> Debug for SymbolicSparseColMat<I>where
I: Index,
impl<I> Debug for SymbolicSparseColMatRef<'_, I>where
I: Index,
impl<I> Debug for SymbolicSparseRowMat<I>where
I: Index,
impl<I> Debug for SymbolicSparseRowMatRef<'_, I>where
I: Index,
impl<I> Debug for SymbolicSimplicialCholesky<I>
impl<I> Debug for faer::sparse::linalg::cholesky::SymbolicCholesky<I>
impl<I> Debug for SymbolicSupernodalCholesky<I>
impl<I> Debug for faer::sparse::linalg::lu::SymbolicLu<I>where
I: Debug,
impl<I> Debug for SymbolicSupernodalLu<I>where
I: Debug,
impl<I> Debug for SymbolicSimplicialQr<I>where
I: Debug,
impl<I> Debug for faer::sparse::linalg::qr::SymbolicQr<I>
impl<I> Debug for SymbolicSupernodalHouseholder<I>where
I: Debug,
impl<I> Debug for SymbolicSupernodalQr<I>
impl<I> Debug for faer::sparse::linalg::solvers::SymbolicCholesky<I>
impl<I> Debug for faer::sparse::linalg::solvers::SymbolicLu<I>
impl<I> Debug for faer::sparse::linalg::solvers::SymbolicQr<I>
impl<I> Debug for ValuesOrder<I>where
I: Debug,
impl<I> Debug for faer::utils::constrained::perm::PermRef<'_, '_, I>where
I: Index,
impl<I> Debug for Idx<'_, I>where
I: Debug,
impl<I> Debug for IdxInclusive<'_, I>where
I: Debug,
impl<I> Debug for MaybeIdx<'_, I>
impl<I> Debug for MultiProduct<I>
impl<I> Debug for PutBack<I>
impl<I> Debug for itertools::adaptors::WhileSome<I>where
I: Debug,
impl<I> Debug for 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 PeekNth<I>
impl<I> Debug for Permutations<I>
impl<I> Debug for Powerset<I>
impl<I> Debug for PutBackN<I>
impl<I> Debug for RcIter<I>where
I: Debug,
impl<I> Debug for Tee<I>
impl<I> Debug for Unique<I>
impl<I> Debug for WithPosition<I>
impl<I> Debug for ExponentialBlocks<I>where
I: Debug,
impl<I> Debug for UniformBlocks<I>where
I: Debug,
impl<I> Debug for rayon::iter::chunks::Chunks<I>where
I: Debug + IndexedParallelIterator,
impl<I> Debug for rayon::iter::cloned::Cloned<I>where
I: Debug + ParallelIterator,
impl<I> Debug for rayon::iter::copied::Copied<I>where
I: Debug + ParallelIterator,
impl<I> Debug for rayon::iter::enumerate::Enumerate<I>where
I: Debug + IndexedParallelIterator,
impl<I> Debug for rayon::iter::flatten::Flatten<I>where
I: Debug + ParallelIterator,
impl<I> Debug for FlattenIter<I>where
I: Debug + ParallelIterator,
impl<I> Debug for rayon::iter::intersperse::Intersperse<I>
impl<I> Debug for MaxLen<I>where
I: Debug + IndexedParallelIterator,
impl<I> Debug for MinLen<I>where
I: Debug + IndexedParallelIterator,
impl<I> Debug for PanicFuse<I>where
I: Debug + ParallelIterator,
impl<I> Debug for rayon::iter::rev::Rev<I>where
I: Debug + IndexedParallelIterator,
impl<I> Debug for rayon::iter::skip::Skip<I>where
I: Debug,
impl<I> Debug for SkipAny<I>where
I: Debug + ParallelIterator,
impl<I> Debug for rayon::iter::step_by::StepBy<I>where
I: Debug + IndexedParallelIterator,
impl<I> Debug for rayon::iter::take::Take<I>where
I: Debug,
impl<I> Debug for TakeAny<I>where
I: Debug + ParallelIterator,
impl<I> Debug for rayon::iter::while_some::WhileSome<I>where
I: Debug + ParallelIterator,
impl<I, E> Debug for SparseColMatMut<'_, I, E>
impl<I, E> Debug for SparseColMat<I, E>
impl<I, E> Debug for SparseColMatRef<'_, I, E>
impl<I, E> Debug for SparseRowMatMut<'_, I, E>
impl<I, E> Debug for SparseRowMat<I, E>
impl<I, E> Debug for SparseRowMatRef<'_, I, E>
impl<I, E> Debug for SimplicialLu<I, E>
impl<I, E> Debug for NumericLu<I, E>
impl<I, E> Debug for SupernodalLu<I, E>
impl<I, E> Debug for faer::sparse::linalg::solvers::Cholesky<I, E>
impl<I, E> Debug for Lu<I, E>
impl<I, E> Debug for faer::sparse::linalg::solvers::Qr<I, E>
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, ElemF> Debug for itertools::intersperse::IntersperseWith<I, ElemF>
impl<I, F> Debug for core::iter::adapters::filter_map::FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::inspect::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::map::Map<I, F>where
I: Debug,
impl<I, F> Debug for Batching<I, F>where
I: Debug,
impl<I, F> Debug for FilterMapOk<I, F>where
I: Debug,
impl<I, F> Debug for FilterOk<I, F>where
I: Debug,
impl<I, F> Debug for itertools::adaptors::Positions<I, F>where
I: Debug,
impl<I, F> Debug for itertools::adaptors::Update<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 TakeWhileInclusive<I, F>
impl<I, F> Debug for rayon::iter::flat_map::FlatMap<I, F>where
I: ParallelIterator + Debug,
impl<I, F> Debug for FlatMapIter<I, F>where
I: ParallelIterator + Debug,
impl<I, F> Debug for rayon::iter::inspect::Inspect<I, F>where
I: ParallelIterator + Debug,
impl<I, F> Debug for rayon::iter::map::Map<I, F>where
I: ParallelIterator + Debug,
impl<I, F> Debug for rayon::iter::update::Update<I, F>where
I: ParallelIterator + Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for core::iter::adapters::intersperse::IntersperseWith<I, G>
impl<I, ID, F> Debug for Fold<I, ID, F>where
I: ParallelIterator + Debug,
impl<I, ID, F> Debug for FoldChunks<I, ID, F>where
I: IndexedParallelIterator + Debug,
impl<I, INIT, F> Debug for MapInit<I, INIT, F>where
I: ParallelIterator + Debug,
impl<I, J> Debug for Diff<I, J>
impl<I, J> Debug for itertools::adaptors::Interleave<I, J>
impl<I, J> Debug for itertools::adaptors::InterleaveShortest<I, J>
impl<I, J> Debug for Product<I, J>
impl<I, J> Debug for ConsTuples<I, J>
impl<I, J> Debug for itertools::zip_eq_impl::ZipEq<I, J>
impl<I, J> Debug for rayon::iter::interleave::Interleave<I, J>where
I: Debug + IndexedParallelIterator,
J: Debug + IndexedParallelIterator<Item = <I as ParallelIterator>::Item>,
impl<I, J> Debug for rayon::iter::interleave_shortest::InterleaveShortest<I, J>where
I: Debug + IndexedParallelIterator,
J: Debug + IndexedParallelIterator<Item = <I as ParallelIterator>::Item>,
impl<I, J, F> Debug for MergeBy<I, J, F>
impl<I, P> Debug for core::iter::adapters::filter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeWhile<I, P>where
I: Debug,
impl<I, P> Debug for rayon::iter::filter::Filter<I, P>where
I: ParallelIterator + Debug,
impl<I, P> Debug for rayon::iter::filter_map::FilterMap<I, P>where
I: ParallelIterator + Debug,
impl<I, P> Debug for rayon::iter::positions::Positions<I, P>where
I: IndexedParallelIterator + Debug,
impl<I, P> Debug for SkipAnyWhile<I, P>where
I: ParallelIterator + Debug,
impl<I, P> Debug for TakeAnyWhile<I, P>where
I: ParallelIterator + Debug,
impl<I, St, F> Debug for Scan<I, St, F>
impl<I, T> Debug for TupleCombinations<I, T>
impl<I, T> Debug for CircularTupleWindows<I, T>
impl<I, T> Debug for TupleWindows<I, T>
impl<I, T> Debug for Tuples<I, T>where
I: Debug + Iterator<Item = <T as TupleCollect>::Item>,
T: Debug + HomogeneousTuple,
<T as TupleCollect>::Buffer: Debug,
impl<I, T, E> Debug for FlattenOk<I, T, E>where
I: Iterator<Item = Result<T, E>> + Debug,
T: IntoIterator,
<T as IntoIterator>::IntoIter: Debug,
impl<I, T, F> Debug for MapWith<I, T, F>
impl<I, U> Debug for core::iter::adapters::flatten::Flatten<I>
impl<I, U, F> Debug for core::iter::adapters::flatten::FlatMap<I, U, F>
impl<I, U, F> Debug for FoldWith<I, U, F>
impl<I, U, F> Debug for FoldChunksWith<I, U, F>
impl<I, U, F> Debug for TryFoldWith<I, U, F>
impl<I, V, F> Debug for UniqueBy<I, V, F>
impl<I, const N: usize> Debug for core::iter::adapters::array_chunks::ArrayChunks<I, N>
impl<Idx> Debug for rstsr_core::prelude::rstsr_traits::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for rstsr_core::prelude::rstsr_traits::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for rstsr_core::prelude::rstsr_traits::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Iter> Debug for IterBridge<Iter>where
Iter: Debug,
impl<K> Debug for alloc::collections::btree::set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Drain<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::IntoIter<K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Drain<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for rayon::collections::btree_map::IntoIter<K, V>
impl<K, V> Debug for rayon::collections::hash_map::IntoIter<K, V>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>
impl<K, V, F> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, F>
impl<K, V, S> Debug for RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for HashMap<K, V, S>
impl<K, V, S> Debug for RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for RawVacantEntryMut<'_, K, V, S>
impl<L, R> Debug for Either<L, R>
impl<L, R> Debug for IterEither<L, R>
impl<Mask> Debug for Offset<Mask>where
Mask: Debug,
impl<Mat> Debug for Last<Mat>where
Mat: Debug,
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<R> Debug for ErrorVariant<R>where
R: Debug,
impl<R> Debug for BufReader<R>
impl<R> Debug for std::io::Bytes<R>where
R: Debug,
impl<R> Debug for pest::error::Error<R>where
R: Debug,
impl<R> Debug for Operator<R>
impl<R> Debug for PrecClimber<R>
impl<R> Debug for BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for CacheParametersIter<R>where
R: CpuIdReader,
impl<R> Debug for CpuId<R>where
R: CpuIdReader,
impl<R> Debug for DatIter<R>where
R: CpuIdReader,
impl<R> Debug for ExtendedStateInfo<R>where
R: CpuIdReader,
impl<R> Debug for ExtendedStateIter<R>where
R: CpuIdReader,
impl<R> Debug for ExtendedTopologyIter<R>where
R: CpuIdReader,
impl<R> Debug for HypervisorInfo<R>where
R: CpuIdReader,
impl<R> Debug for RdtAllocationInfo<R>where
R: CpuIdReader,
impl<R> Debug for RdtMonitoringInfo<R>where
R: CpuIdReader,
impl<R> Debug for SgxInfo<R>where
R: CpuIdReader,
impl<R> Debug for SgxSectionIter<R>where
R: CpuIdReader,
impl<R> Debug for SoCVendorAttributesIter<R>where
R: CpuIdReader,
impl<R> Debug for SoCVendorInfo<R>where
R: CpuIdReader,
impl<R, T, B, D> Debug for TensorAny<R, T, B, D>
impl<R: Debug, T: Debug, B> Debug for Storage<R, T, B>where
B: DeviceRawAPI<T> + Debug,
impl<Re, Im> Debug for ComplexDistribution<Re, Im>
impl<Rows, Cols, Head, Tail> Debug for faer::linalg::zip::ZipEq<Rows, Cols, Head, Tail>
impl<Rows, Cols, Mat> Debug for LastEq<Rows, Cols, Mat>
impl<S> Debug for pulp::Prefix<'_, f32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::Prefix<'_, f64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::Prefix<'_, i32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::Prefix<'_, i64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::Prefix<'_, u32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::Prefix<'_, u64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::Prefix<'_, Complex<f32>, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::Prefix<'_, Complex<f64>, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::PrefixMut<'_, f32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::PrefixMut<'_, f64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::PrefixMut<'_, i32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::PrefixMut<'_, i64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::PrefixMut<'_, u32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::PrefixMut<'_, u64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::PrefixMut<'_, Complex<f32>, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::PrefixMut<'_, Complex<f64>, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::Suffix<'_, f32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::Suffix<'_, f64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::Suffix<'_, i32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::Suffix<'_, i64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::Suffix<'_, u32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::Suffix<'_, u64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::Suffix<'_, Complex<f32>, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::Suffix<'_, Complex<f64>, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::SuffixMut<'_, f32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::SuffixMut<'_, f64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::SuffixMut<'_, i32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::SuffixMut<'_, i64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::SuffixMut<'_, u32, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::SuffixMut<'_, u64, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for pulp::SuffixMut<'_, Complex<f32>, S, <S as Simd>::m32s>where
S: Simd,
impl<S> Debug for pulp::SuffixMut<'_, Complex<f64>, S, <S as Simd>::m64s>where
S: Simd,
impl<S> Debug for ThreadPoolBuilder<S>
impl<S, B> Debug for WalkTree<S, B>
impl<S, B> Debug for WalkTreePostfix<S, B>
impl<S, B> Debug for WalkTreePrefix<S, B>
impl<St, F> Debug for Iterate<St, F>where
St: Debug,
impl<St, F> Debug for Unfold<St, F>where
St: Debug,
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for TrySendError<T>
impl<T> Debug for TryLockError<T>
impl<T> Debug for Steal<T>
impl<T> Debug for FoldWhile<T>where
T: Debug,
impl<T> Debug for MinMaxResult<T>where
T: Debug,
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)
This trait is implemented for tuples up to twelve items long.