Trait plot_interface::fmt::Debug
1.0.0 · source · [−]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 (libstd
, libcore
, liballoc
, 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
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 DxtVariant
impl Debug for plot_interface::dependency::image::codecs::gif::Repeat
impl Debug for PixelDensityUnit
impl Debug for CompressionType
impl Debug for plot_interface::dependency::image::codecs::png::FilterType
impl Debug for ArbitraryTuplType
impl Debug for PnmSubtype
impl Debug for SampleEncoding
impl Debug for plot_interface::dependency::image::ColorType
impl Debug for DynamicImage
impl Debug for ExtendedColorType
impl Debug for ImageError
impl Debug for ImageFormat
impl Debug for ImageOutputFormat
impl Debug for ImageFormatHint
impl Debug for LimitErrorKind
impl Debug for ParameterErrorKind
impl Debug for UnsupportedErrorKind
impl Debug for plot_interface::dependency::image::flat::Error
impl Debug for NormalForm
impl Debug for plot_interface::dependency::image::imageops::FilterType
impl Debug for FloatErrorKind
impl Debug for Alignment
impl Debug for TryReserveErrorKind
impl Debug for core::cmp::Ordering
impl Debug for Infallible
impl Debug for Which
impl Debug for c_void
impl Debug for FpCategory
impl Debug for IntErrorKind
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 std::io::error::ErrorKind
impl Debug for std::net::addr::SocketAddr
impl Debug for Shutdown
impl Debug for IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for std::sync::mpsc::RecvTimeoutError
impl Debug for std::sync::mpsc::TryRecvError
impl Debug for _Unwind_Reason_Code
impl Debug for time::ParseError
impl Debug for SecondsFormat
impl Debug for Month
impl Debug for Weekday
impl Debug for Fixed
impl Debug for Numeric
impl Debug for Pad
impl Debug for RoundingError
impl Debug for FlushCompress
impl Debug for FlushDecompress
impl Debug for Status
impl Debug for Always
impl Debug for SplitType
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 HdrMetadata
impl Debug for Rgbe8Pixel
impl Debug for PixelDensity
impl Debug for ArbitraryHeader
impl Debug for BitmapHeader
impl Debug for GraymapHeader
impl Debug for PixmapHeader
impl Debug for plot_interface::dependency::image::codecs::webp::vp8::Frame
impl Debug for plot_interface::dependency::image::error::DecodingError
impl Debug for plot_interface::dependency::image::error::EncodingError
impl Debug for LimitError
impl Debug for plot_interface::dependency::image::error::ParameterError
impl Debug for UnsupportedError
impl Debug for SampleLayout
impl Debug for LimitSupport
impl Debug for plot_interface::dependency::image::io::Limits
impl Debug for Rect
impl Debug for Delay
impl Debug for Progress
impl Debug for plot_interface::dependency::wmath::dependency::math_adapter::dependency::traits::ParseFloatError
impl Debug for plot_interface::Context
impl Debug for ContextChanger
impl Debug for DrawChanger
impl Debug for Drawing
impl Debug for DrawingChangeNew
impl Debug for Id
impl Debug for RectChange
impl Debug for RectChanger
impl Debug for StrokeBrush
impl Debug for StrokeBrushChangeColor
impl Debug for StrokeBrushChangeNew
impl Debug for StrokeBrushChanger
impl Debug for Global
impl Debug for alloc::collections::TryReserveError
impl Debug for CString
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for String
impl Debug for Layout
impl Debug for LayoutError
impl Debug for AllocError
impl Debug for TypeId
impl Debug for TryFromSliceError
impl Debug for core::ascii::EscapeDefault
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 __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 CStr
impl Debug for FromBytesUntilNulError
impl Debug for FromBytesWithNulError
impl Debug for SipHasher
impl Debug for PhantomPinned
impl Debug for core::num::dec2flt::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
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 RangeFull
impl Debug for ParseBoolError
impl Debug for Utf8Error
impl Debug for Utf8Lossy
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 RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for core::time::Duration
impl Debug for FromFloatSecsError
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for DefaultHasher
impl Debug for RandomState
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for Vars
impl Debug for VarsOs
impl Debug for OsStr
impl Debug for OsString
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for File
impl Debug for FileType
impl Debug for Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for WriterPanicked
impl Debug for std::io::error::Error
impl Debug for Stderr
impl Debug for Stdin
impl Debug for Stdout
impl Debug for std::io::util::Empty
impl Debug for std::io::util::Repeat
impl Debug for Sink
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for AddrParseError
impl Debug for IntoIncoming
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for UdpSocket
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 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 Barrier
impl Debug for BarrierWaitResult
impl Debug for Condvar
impl Debug for WaitTimeoutResult
impl Debug for std::sync::mpsc::RecvError
impl Debug for std::sync::once::Once
impl Debug for OnceState
impl Debug for AccessError
impl Debug for std::thread::Builder
impl Debug for Thread
impl Debug for ThreadId
impl Debug for Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for time::duration::Duration
impl Debug for OutOfRangeError
impl Debug for SteadyTime
impl Debug for Timespec
impl Debug for Tm
impl Debug for Adler32
impl Debug for anyhow::Error
impl Debug for Parsed
impl Debug for InternalFixed
impl Debug for InternalNumeric
impl Debug for chrono::format::ParseError
impl Debug for NaiveDate
The Debug
output of the naive date d
is the same as
d.format("%Y-%m-%d")
.
The string printed can be readily parsed via the parse
method on str
.
Example
use chrono::NaiveDate;
assert_eq!(format!("{:?}", NaiveDate::from_ymd(2015, 9, 5)), "2015-09-05");
assert_eq!(format!("{:?}", NaiveDate::from_ymd( 0, 1, 1)), "0000-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd(9999, 12, 31)), "9999-12-31");
ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.
assert_eq!(format!("{:?}", NaiveDate::from_ymd( -1, 1, 1)), "-0001-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd(10000, 12, 31)), "+10000-12-31");
impl Debug for NaiveDateTime
The Debug
output of the naive date and time dt
is the same as
dt.format("%Y-%m-%dT%H:%M:%S%.f")
.
The string printed can be readily parsed via the parse
method on str
.
It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)
Example
use chrono::NaiveDate;
let dt = NaiveDate::from_ymd(2016, 11, 15).and_hms(7, 39, 24);
assert_eq!(format!("{:?}", dt), "2016-11-15T07:39:24");
Leap seconds may also be used.
let dt = NaiveDate::from_ymd(2015, 6, 30).and_hms_milli(23, 59, 59, 1_500);
assert_eq!(format!("{:?}", dt), "2015-06-30T23:59:60.500");
impl Debug for IsoWeek
The Debug
output of the ISO week w
is the same as
d.format("%G-W%V")
where d
is any NaiveDate
value in that week.
Example
use chrono::{NaiveDate, Datelike};
assert_eq!(format!("{:?}", NaiveDate::from_ymd(2015, 9, 5).iso_week()), "2015-W36");
assert_eq!(format!("{:?}", NaiveDate::from_ymd( 0, 1, 3).iso_week()), "0000-W01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd(9999, 12, 31).iso_week()), "9999-W52");
ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.
assert_eq!(format!("{:?}", NaiveDate::from_ymd( 0, 1, 2).iso_week()), "-0001-W52");
assert_eq!(format!("{:?}", NaiveDate::from_ymd(10000, 12, 31).iso_week()), "+10000-W52");
impl Debug for NaiveTime
The Debug
output of the naive time t
is the same as
t.format("%H:%M:%S%.f")
.
The string printed can be readily parsed via the parse
method on str
.
It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)
Example
use chrono::NaiveTime;
assert_eq!(format!("{:?}", NaiveTime::from_hms(23, 56, 4)), "23:56:04");
assert_eq!(format!("{:?}", NaiveTime::from_hms_milli(23, 56, 4, 12)), "23:56:04.012");
assert_eq!(format!("{:?}", NaiveTime::from_hms_micro(23, 56, 4, 1234)), "23:56:04.001234");
assert_eq!(format!("{:?}", NaiveTime::from_hms_nano(23, 56, 4, 123456)), "23:56:04.000123456");
Leap seconds may also be used.
assert_eq!(format!("{:?}", NaiveTime::from_hms_milli(6, 59, 59, 1_500)), "06:59:60.500");
impl Debug for FixedOffset
impl Debug for Local
impl Debug for Utc
impl Debug for ParseMonthError
impl Debug for ParseWeekdayError
impl Debug for BasicError
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 DecompressError
impl Debug for flate2::Compression
impl Debug for getrandom::error::Error
impl Debug for bf16
impl Debug for f16
impl Debug for ParseRatioError
impl Debug for ThreadBuilder
impl Debug for Configuration
impl Debug for FnContext
impl Debug for ThreadPoolBuildError
impl Debug for rayon_core::thread_pool::ThreadPool
impl Debug for plot_interface::fmt::Error
impl Debug for AdaptiveFilterType
impl Debug for AhoCorasickBuilder
impl Debug for Alternation
impl Debug for Anchor
impl Debug for AnimationControl
impl Debug for AnyExtension
impl Debug for Assertion
impl Debug for AssertionKind
impl Debug for Ast
impl Debug for AttributeValue
impl Debug for Backoff
impl Debug for BigEndian
impl Debug for BitDepth
impl Debug for BitOrder
impl Debug for BlendOp
impl Debug for Block
impl Debug for BlockDescription
impl Debug for BlockIndex
impl Debug for BlockType
impl Debug for Blocks
impl Debug for Builder
impl Debug for CaptureLocations
impl Debug for CaptureLocations
impl Debug for CaptureName
impl Debug for CaseFoldError
impl Debug for ChannelDescription
impl Debug for ChannelList
impl Debug for CheckedCastError
impl Debug for Chromaticities
impl Debug for Chunk
impl Debug for ChunkType
impl Debug for ChunkType
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 CodingProcess
impl Debug for CollectionAllocErr
impl Debug for Collector
impl Debug for ColorOutput
impl Debug for ColorType
impl Debug for ColorType
impl Debug for Colour
impl Debug for Comment
impl Debug for CompressedBlock
impl Debug for CompressedDeepScanLineBlock
impl Debug for CompressedDeepTileBlock
impl Debug for CompressedScanLineBlock
impl Debug for CompressedTileBlock
impl Debug for Compression
impl Debug for Compression
impl Debug for Compression
impl Debug for CompressionLevel
impl Debug for CompressionMethod
impl Debug for CompressionOptions
impl Debug for CompressionStrategy
impl Debug for Concat
impl Debug for Config
impl Debug for DataFormat
impl Debug for DecodeOptions
impl Debug for Decoded
impl Debug for DecodingError
impl Debug for DecodingError
impl Debug for DecodingFormatError
impl Debug for DecodingResult
impl Debug for Deflate
impl Debug for DeflateLevel
impl Debug for DisposalMethod
impl Debug for DisposeOp
impl Debug for Encoding
impl Debug for EncodingError
impl Debug for EncodingError
impl Debug for Entry
impl Debug for EnvironmentMap
impl Debug for Error
impl Debug for Error
impl Debug for Error
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 Extension
impl Debug for Extensions
impl Debug for FilterOp
impl Debug for FilterType
impl Debug for FinderBuilder
impl Debug for Flag
impl Debug for Flags
impl Debug for FlagsItem
impl Debug for FlagsItemKind
impl Debug for FlatSamples
impl Debug for FlatSamplesReader
impl Debug for FloatRect
impl Debug for FrameControl
impl Debug for Group
impl Debug for Group
impl Debug for GroupKind
impl Debug for GroupKind
impl Debug for Guard
impl Debug for Hasher
impl Debug for Header
impl Debug for HexLiteralKind
impl Debug for Hir
impl Debug for HirKind
impl Debug for ITXtChunk
impl Debug for ImageAttributes
impl Debug for ImageInfo
impl Debug for Infix
impl Debug for IntegerBounds
impl Debug for KeyCode
impl Debug for LayerAttributes
impl Debug for LevelMode
impl Debug for Limits
impl Debug for Limits
impl Debug for LineIndex
impl Debug for LineOrder
impl Debug for Literal
impl Debug for Literal
impl Debug for Literal
impl Debug for LiteralKind
impl Debug for Literals
impl Debug for LittleEndian
impl Debug for LocalHandle
impl Debug for Lzw
impl Debug for LzwError
impl Debug for LzwStatus
impl Debug for MZError
impl Debug for MZFlush
impl Debug for MZStatus
impl Debug for Match
impl Debug for MatchKind
impl Debug for MatchKind
impl Debug for MatchingType
impl Debug for MemoryLimit
impl Debug for MetaData
impl Debug for NoneMore
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for Options
impl Debug for Options
impl Debug for Options
impl Debug for Options
impl Debug for OptionsBuilder
impl Debug for OptionsBuilder
impl Debug for OptionsBuilder
impl Debug for OptionsBuilder
impl Debug for OutputInfo
impl Debug for Packbits
impl Debug for ParameterError
impl Debug for ParkResult
impl Debug for ParkToken
impl Debug for Parker
impl Debug for ParseError
impl Debug for Parser
impl Debug for Parser
impl Debug for ParserBuilder
impl Debug for ParserBuilder
impl Debug for Pcg64
impl Debug for PhotometricInterpretation
impl Debug for PixelDimensions
impl Debug for PixelFormat
impl Debug for PlanarConfiguration
impl Debug for PodCastError
impl Debug for Position
impl Debug for Predictor
impl Debug for Prefilter
impl Debug for Prefix
impl Debug for Preview
impl Debug for Printer
impl Debug for Printer
impl Debug for ReadBuilder
impl Debug for ReadFlatSamples
impl Debug for ReadyTimeoutError
impl Debug for RecvError
impl Debug for RecvError
impl Debug for RecvTimeoutError
impl Debug for RecvTimeoutError
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 Repeat
impl Debug for Repetition
impl Debug for Repetition
impl Debug for RepetitionKind
impl Debug for RepetitionKind
impl Debug for RepetitionOp
impl Debug for RepetitionRange
impl Debug for RepetitionRange
impl Debug for RequeueOp
impl Debug for Requirements
impl Debug for ResolutionUnit
impl Debug for RoundMode
impl Debug for RoundingMode
impl Debug for Sample
impl Debug for SampleFormat
impl Debug for SampleType
impl Debug for ScaledFloat
impl Debug for Searcher
impl Debug for SelectError
impl Debug for SelectTimeoutError
impl Debug for SetFlags
impl Debug for SetMatches
impl Debug for SetMatches
impl Debug for SetMatchesIntoIter
impl Debug for SetMatchesIntoIter
impl Debug for SourceChromaticities
impl Debug for Span
impl Debug for SpecialLiteralKind
impl Debug for SpecialOptions
impl Debug for SrgbRenderingIntent
impl Debug for StreamResult
impl Debug for Style
Styles have a special Debug
implementation that only shows the fields that
are set. Fields that haven’t been touched aren’t included in the output.
This behaviour gets bypassed when using the alternate formatting mode
format!("{:#?}")
.
use ansi_term::Colour::{Red, Blue};
assert_eq!("Style { fg(Red), on(Blue), bold, italic }",
format!("{:?}", Red.on(Blue).bold().italic()));
impl Debug for Suffix
impl Debug for TDEFLFlush
impl Debug for TDEFLStatus
impl Debug for TEXtChunk
impl Debug for TINFLStatus
impl Debug for Tag
impl Debug for Text
impl Debug for ThreadPool
impl Debug for TiffError
impl Debug for TiffFormatError
impl Debug for TiffUnsupportedError
impl Debug for TileCoordinates
impl Debug for TileDescription
impl Debug for TileIndices
impl Debug for TimeCode
impl Debug for Transformations
impl Debug for Translator
impl Debug for TranslatorBuilder
impl Debug for TryReadyError
impl Debug for TryRecvError
impl Debug for TryRecvError
impl Debug for TryReserveError
impl Debug for TrySelectError
impl Debug for Type
impl Debug for Uncompressed
impl Debug for UncompressedBlock
impl Debug for UnicodeWordError
impl Debug for Unit
impl Debug for UnparkResult
impl Debug for UnparkToken
impl Debug for Unparker
impl Debug for UnsupportedFeature
impl Debug for UsageError
impl Debug for Utf8Range
impl Debug for Utf8Sequence
impl Debug for Utf8Sequences
impl Debug for ValidationOptions
impl Debug for Value
impl Debug for Version
impl Debug for WaitGroup
impl Debug for WithComments
impl Debug for WordBoundary
impl Debug for WyRand
impl Debug for ZTXtChunk
impl Debug for dyn Any + 'static
impl Debug for dyn Any + Send + 'static
impl Debug for dyn Any + Sync + Send + 'static
impl<'_> Debug for alloc::string::Drain<'_>
impl<'_> Debug for core::str::iter::Chars<'_>
impl<'_> Debug for core::str::iter::EncodeUtf16<'_>
impl<'_> Debug for core::task::wake::Context<'_>
impl<'_> Debug for SplitPaths<'_>
impl<'_> Debug for ReadBuf<'_>
impl<'_> Debug for StderrLock<'_>
impl<'_> Debug for StdinLock<'_>
impl<'_> Debug for StdoutLock<'_>
impl<'_> Debug for BorrowedFd<'_>
impl<'_> Debug for Components<'_>
impl<'_> Debug for Display<'_>
impl<'_> Debug for std::path::Iter<'_>
impl<'_> Debug for Arguments<'_>
impl<'_> Debug for Scope<'_>
impl<'_> Debug for Select<'_>
impl<'_> Debug for SelectedOperation<'_>
impl<'_, '_> Debug for std::thread::scoped::Scope<'_, '_>
impl<'_, '_, K, Q, V, S, A> Debug for EntryRef<'_, '_, K, Q, V, S, A> where
K: Borrow<Q>,
Q: Debug + ?Sized,
V: Debug,
A: Allocator + Clone,
impl<'_, '_, K, Q, V, S, A> Debug for OccupiedEntryRef<'_, '_, K, Q, V, S, A> where
K: Borrow<Q>,
Q: Debug + ?Sized,
V: Debug,
A: Allocator + Clone,
impl<'_, '_, K, Q, V, S, A> Debug for VacantEntryRef<'_, '_, K, Q, V, S, A> where
K: Borrow<Q>,
Q: Debug + ?Sized,
A: Allocator + Clone,
impl<'_, B> Debug for Cow<'_, B> where
B: Debug + ToOwned + ?Sized,
<B as ToOwned>::Owned: Debug,
impl<'_, F> Debug for CharPredicateSearcher<'_, F> where
F: FnMut(char) -> bool,
impl<'_, K> Debug for std::collections::hash::set::Drain<'_, K> where
K: Debug,
impl<'_, K> Debug for std::collections::hash::set::Iter<'_, K> where
K: Debug,
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, V> Debug for std::collections::hash::map::Entry<'_, K, V> where
K: Debug,
V: Debug,
impl<'_, K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V> where
K: Debug,
V: Debug,
impl<'_, K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V> where
K: Debug,
V: Debug,
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> where
K: Debug,
V: Debug,
impl<'_, K, V> Debug for RangeMut<'_, K, V> where
K: Debug,
V: Debug,
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> where
K: Debug,
V: Debug,
impl<'_, K, V> Debug for std::collections::hash::map::Iter<'_, K, V> where
K: Debug,
V: Debug,
impl<'_, K, V> Debug for std::collections::hash::map::IterMut<'_, K, V> where
K: Debug,
V: Debug,
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> where
K: Debug,
V: Debug,
impl<'_, K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V> where
K: Debug,
V: Debug,
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 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
V: Debug,
impl<'_, K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A> where
K: Debug + Ord,
V: Debug,
A: Allocator + Clone,
impl<'_, K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A> where
K: Debug + Ord,
V: Debug,
A: Allocator + Clone,
impl<'_, K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A> where
K: Debug + Ord,
V: Debug,
A: Allocator + Clone,
impl<'_, K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A> where
K: Debug + Ord,
A: Allocator + Clone,
impl<'_, K, V, A> Debug for Drain<'_, K, V, A> where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<'_, K, V, F> Debug for alloc::collections::btree::map::DrainFilter<'_, K, V, F, Global> where
K: Debug,
V: Debug,
F: for<'_, '_> FnMut(&K, &mut V) -> bool,
impl<'_, K, V, S> Debug for std::collections::hash::map::RawEntryMut<'_, K, V, S> where
K: Debug,
V: Debug,
impl<'_, K, V, S> Debug for std::collections::hash::map::RawEntryBuilder<'_, K, V, S>
impl<'_, K, V, S> Debug for std::collections::hash::map::RawEntryBuilderMut<'_, K, V, S>
impl<'_, K, V, S> Debug for std::collections::hash::map::RawOccupiedEntryMut<'_, K, V, S> where
K: Debug,
V: Debug,
impl<'_, K, V, S> Debug for 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 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<'_, P> Debug for EnumeratePixels<'_, P> where
P: Pixel,
<P as Pixel>::Subpixel: Debug,
impl<'_, P> Debug for EnumeratePixelsMut<'_, P> where
P: Pixel,
<P as Pixel>::Subpixel: Debug,
impl<'_, P> Debug for EnumerateRows<'_, P> where
P: Pixel,
<P as Pixel>::Subpixel: Debug,
impl<'_, P> Debug for EnumerateRowsMut<'_, P> where
P: Pixel,
<P as Pixel>::Subpixel: Debug,
impl<'_, P> Debug for plot_interface::dependency::image::buffer::Pixels<'_, P> where
P: Pixel,
<P as Pixel>::Subpixel: Debug,
impl<'_, P> Debug for PixelsMut<'_, P> where
P: Pixel,
<P as Pixel>::Subpixel: Debug,
impl<'_, P> Debug for Rows<'_, P> where
P: Pixel,
<P as Pixel>::Subpixel: Debug,
impl<'_, P> Debug for RowsMut<'_, P> where
P: Pixel,
<P as Pixel>::Subpixel: Debug,
impl<'_, T> Debug for &T where
T: Debug + ?Sized,
impl<'_, T> Debug for &mut T where
T: Debug + ?Sized,
impl<'_, T> Debug for alloc::collections::binary_heap::Iter<'_, T> where
T: Debug,
impl<'_, T> Debug for PeekMut<'_, T> where
T: Ord + Debug,
impl<'_, T> Debug for alloc::collections::btree::set::Iter<'_, T> where
T: Debug,
impl<'_, T> Debug for alloc::collections::btree::set::SymmetricDifference<'_, T> where
T: Debug,
impl<'_, T> Debug for alloc::collections::btree::set::Union<'_, T> where
T: Debug,
impl<'_, T> Debug for alloc::collections::linked_list::Cursor<'_, T> where
T: Debug,
impl<'_, T> Debug for CursorMut<'_, T> where
T: Debug,
impl<'_, T> Debug for alloc::collections::linked_list::Iter<'_, T> where
T: Debug,
impl<'_, T> Debug for alloc::collections::linked_list::IterMut<'_, T> where
T: Debug,
impl<'_, T> Debug for alloc::collections::vec_deque::iter::Iter<'_, T> where
T: Debug,
impl<'_, T> Debug for alloc::collections::vec_deque::iter_mut::IterMut<'_, T> where
T: Debug,
impl<'_, T> Debug for core::cell::Ref<'_, T> where
T: Debug + ?Sized,
impl<'_, T> Debug for core::cell::RefMut<'_, T> where
T: Debug + ?Sized,
impl<'_, T> Debug for core::slice::iter::Iter<'_, T> where
T: Debug,
impl<'_, T> Debug for core::slice::iter::IterMut<'_, T> where
T: Debug,
impl<'_, T> Debug for std::sync::mutex::MutexGuard<'_, T> where
T: Debug + ?Sized,
impl<'_, T> Debug for std::sync::rwlock::RwLockReadGuard<'_, T> where
T: Debug,
impl<'_, T> Debug for std::sync::rwlock::RwLockWriteGuard<'_, T> where
T: Debug,
impl<'_, T> Debug for Iter<'_, T>
impl<'_, T> Debug for ScopedJoinHandle<'_, T>
impl<'_, T> Debug for ShardedLockReadGuard<'_, T> where
T: Debug,
impl<'_, T> Debug for ShardedLockWriteGuard<'_, T> where
T: Debug,
impl<'_, T> Debug for Shared<'_, T> where
T: Pointable + ?Sized,
impl<'_, T> Debug for TryIter<'_, T>
impl<'_, T, A> Debug for alloc::collections::btree::set::Difference<'_, T, A> where
T: Debug,
A: Allocator + Clone,
impl<'_, T, A> Debug for alloc::collections::btree::set::Intersection<'_, T, A> where
T: Debug,
A: Allocator + Clone,
impl<'_, T, A> Debug for alloc::collections::vec_deque::drain::Drain<'_, T, A> where
T: Debug,
A: Allocator,
impl<'_, T, A> Debug for alloc::vec::drain::Drain<'_, T, A> where
T: Debug,
A: Allocator,
impl<'_, T, F> Debug for alloc::collections::linked_list::DrainFilter<'_, T, F> where
T: Debug,
F: for<'_> FnMut(&mut T) -> bool,
impl<'_, T, F, A> Debug for alloc::collections::btree::set::DrainFilter<'_, T, F, A> where
A: Allocator + Clone,
T: Debug,
F: for<'_> FnMut(&T) -> bool,
impl<'_, T, P> Debug for core::slice::iter::RSplit<'_, T, P> where
T: Debug,
P: for<'_> FnMut(&T) -> bool,
impl<'_, T, P> Debug for RSplitMut<'_, T, P> where
T: Debug,
P: for<'_> FnMut(&T) -> bool,
impl<'_, T, P> Debug for core::slice::iter::RSplitN<'_, T, P> where
T: Debug,
P: for<'_> FnMut(&T) -> bool,
impl<'_, T, P> Debug for RSplitNMut<'_, T, P> where
T: Debug,
P: for<'_> FnMut(&T) -> bool,
impl<'_, T, P> Debug for core::slice::iter::Split<'_, T, P> where
T: Debug,
P: for<'_> FnMut(&T) -> bool,
impl<'_, T, P> Debug for core::slice::iter::SplitInclusive<'_, T, P> where
T: Debug,
P: for<'_> FnMut(&T) -> bool,
impl<'_, T, P> Debug for SplitInclusiveMut<'_, T, P> where
T: Debug,
P: for<'_> FnMut(&T) -> bool,
impl<'_, T, P> Debug for core::slice::iter::SplitMut<'_, T, P> where
T: Debug,
P: for<'_> FnMut(&T) -> bool,
impl<'_, T, P> Debug for core::slice::iter::SplitN<'_, T, P> where
T: Debug,
P: for<'_> FnMut(&T) -> bool,
impl<'_, T, P> Debug for SplitNMut<'_, T, P> where
T: Debug,
P: for<'_> FnMut(&T) -> bool,
impl<'_, T, P> Debug for CompareExchangeError<'_, T, P> where
P: Pointer<T> + Debug,
impl<'_, T, S> Debug for std::collections::hash::set::Difference<'_, T, S> where
T: Debug + Eq + Hash,
S: BuildHasher,
impl<'_, T, S> Debug for std::collections::hash::set::Intersection<'_, T, S> where
T: Debug + Eq + Hash,
S: BuildHasher,
impl<'_, T, S> Debug for std::collections::hash::set::SymmetricDifference<'_, T, S> where
T: Debug + Eq + Hash,
S: BuildHasher,
impl<'_, T, S> Debug for std::collections::hash::set::Union<'_, T, S> where
T: Debug + Eq + Hash,
S: BuildHasher,
impl<'_, T, S, A> Debug for Difference<'_, T, S, A> where
T: Debug + Eq + Hash,
S: BuildHasher,
A: Allocator + Clone,
impl<'_, T, S, A> Debug for Intersection<'_, T, S, A> where
T: Debug + Eq + Hash,
S: BuildHasher,
A: Allocator + Clone,
impl<'_, T, S, A> Debug for SymmetricDifference<'_, T, S, A> where
T: Debug + Eq + Hash,
S: BuildHasher,
A: Allocator + Clone,
impl<'_, T, S, A> Debug for Union<'_, T, S, A> where
T: Debug + Eq + Hash,
S: BuildHasher,
A: Allocator + Clone,
impl<'a> Debug for Component<'a>
impl<'a> Debug for std::path::Prefix<'a>
impl<'a> Debug for Item<'a>
impl<'a> Debug for Demand<'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 SplitAsciiWhitespace<'a>
impl<'a> Debug for core::str::iter::SplitWhitespace<'a>
impl<'a> Debug for Utf8LossyChunk<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for std::error::Chain<'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 Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for TmFmt<'a>
impl<'a> Debug for StrftimeItems<'a>
impl<'a> Debug for rayon::string::Drain<'a>
impl<'a> Debug for IsolateOptions<'a>
impl<'a> Debug for ParseOptions<'a>
impl<'a> Debug for Request<'a>
impl<'a> Debug for strs_tools::string::split::private::Split<'a>
impl<'a> Debug for ClassBytesIter<'a>
impl<'a> Debug for ClassUnicodeIter<'a>
impl<'a> Debug for Decoded<'a>
impl<'a> Debug for Frame<'a>
impl<'a> Debug for Info<'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, S> Debug for FindIter<'a, 'b, S> where
S: Debug + StateID,
impl<'a, 'b, S> Debug for FindOverlappingIter<'a, 'b, S> where
S: Debug + StateID,
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, A> Debug for core::option::Iter<'a, A> where
A: 'a + Debug,
impl<'a, A> Debug for core::option::IterMut<'a, A> where
A: 'a + Debug,
impl<'a, D> Debug for SplitFastIterator<'a, D> where
D: Debug + Searcher,
impl<'a, D> Debug for SplitOptions<'a, D> where
D: Debug + Searcher + Default + Clone,
impl<'a, I> Debug for plot_interface::dependency::image::Pixels<'a, I> where
I: 'a + Debug + ?Sized,
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: 'a + Debug + Iterator,
A: 'a + Debug + Allocator,
<I as Iterator>::Item: Debug,
impl<'a, I, E> Debug for ProcessResults<'a, I, E> where
I: Debug,
E: 'a + Debug,
impl<'a, I, F> Debug for TakeWhileRef<'a, I, F> where
I: Iterator + Debug,
impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F> where
I: 'a + Iterator + Debug,
impl<'a, K, F> Debug for std::collections::hash::set::DrainFilter<'a, K, F> where
F: for<'_> FnMut(&K) -> bool,
impl<'a, K, V> Debug for rayon::collections::btree_map::Iter<'a, K, V> where
K: Debug + Ord + Sync,
V: Debug + Sync,
impl<'a, K, V> Debug for rayon::collections::btree_map::IterMut<'a, K, V> where
K: Debug + Ord + Sync,
V: Debug + Send,
impl<'a, K, V> Debug for rayon::collections::hash_map::Drain<'a, K, V> where
K: Debug + Hash + Eq + Send,
V: Debug + Send,
impl<'a, K, V> Debug for rayon::collections::hash_map::Iter<'a, K, V> where
K: Debug + Hash + Eq + Sync,
V: Debug + Sync,
impl<'a, K, V> Debug for rayon::collections::hash_map::IterMut<'a, K, V> where
K: Debug + Hash + Eq + Sync,
V: Debug + Send,
impl<'a, K, V, F> Debug for std::collections::hash::map::DrainFilter<'a, K, V, F> where
F: for<'_, '_> FnMut(&K, &mut V) -> bool,
impl<'a, K, V, S> Debug for Ref<'a, K, V, S> where
K: Eq + Hash + Debug,
V: Debug,
S: BuildHasher,
impl<'a, K, V, S> Debug for RefMut<'a, K, V, S> where
K: Eq + Hash + Debug,
V: Debug,
S: BuildHasher,
impl<'a, K, V, T, S> Debug for MappedRef<'a, K, V, T, S> where
K: Eq + Hash + Debug,
T: Debug,
S: BuildHasher,
impl<'a, K, V, T, S> Debug for MappedRefMut<'a, K, V, T, S> where
K: Eq + Hash + Debug,
T: Debug,
S: BuildHasher,
impl<'a, P> Debug for core::str::iter::MatchIndices<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for core::str::iter::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 core::str::iter::RSplit<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for core::str::iter::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 core::str::iter::Split<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for core::str::iter::SplitInclusive<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for core::str::iter::SplitN<'a, P> where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for core::str::iter::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, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T> where
R: 'a + RawMutex,
G: 'a + GetThreadId,
T: 'a + Debug + ?Sized,
impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T> where
R: 'a + RawMutex,
G: 'a + GetThreadId,
T: 'a + Debug + ?Sized,
impl<'a, R, S> Debug for StreamFindIter<'a, R, S> where
R: Debug,
S: Debug + StateID,
impl<'a, R, T> Debug for MappedMutexGuard<'a, R, T> where
R: 'a + RawMutex,
T: 'a + Debug + ?Sized,
impl<'a, R, T> Debug for MappedRwLockReadGuard<'a, R, T> where
R: 'a + RawRwLock,
T: 'a + Debug + ?Sized,
impl<'a, R, T> Debug for MappedRwLockWriteGuard<'a, R, T> where
R: 'a + RawRwLock,
T: 'a + Debug + ?Sized,
impl<'a, R, T> Debug for MutexGuard<'a, R, T> where
R: 'a + RawMutex,
T: 'a + Debug + ?Sized,
impl<'a, R, T> Debug for RwLockReadGuard<'a, R, T> where
R: 'a + RawRwLock,
T: 'a + Debug + ?Sized,
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T> where
R: 'a + RawRwLockUpgrade,
T: 'a + Debug + ?Sized,
impl<'a, R, T> Debug for RwLockWriteGuard<'a, R, T> where
R: 'a + RawRwLock,
T: 'a + Debug + ?Sized,
impl<'a, S> Debug for ANSIGenericString<'a, S> where
S: 'a + Debug + ToOwned + ?Sized,
<S as ToOwned>::Owned: Debug,
impl<'a, S> Debug for ANSIGenericStrings<'a, S> where
S: 'a + Debug + ToOwned + PartialEq<S> + ?Sized,
<S as ToOwned>::Owned: Debug,
impl<'a, T> Debug for alloc::collections::binary_heap::Drain<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for DrainSorted<'a, T> where
T: Debug + Ord,
impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for core::result::Iter<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for core::result::IterMut<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for core::slice::iter::Chunks<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for core::slice::iter::ChunksExact<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for core::slice::iter::ChunksExactMut<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for core::slice::iter::ChunksMut<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for core::slice::iter::RChunks<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for core::slice::iter::RChunksExact<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for core::slice::iter::RChunksExactMut<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for core::slice::iter::RChunksMut<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for core::slice::iter::Windows<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T> where
T: 'a + Debug,
impl<'a, T> Debug for rayon::collections::binary_heap::Drain<'a, T> where
T: Debug + Ord + Send,
impl<'a, T> Debug for rayon::collections::binary_heap::Iter<'a, T> where
T: Debug + Ord + Sync,
impl<'a, T> Debug for rayon::collections::btree_set::Iter<'a, T> where
T: Debug + Ord + Sync,
impl<'a, T> Debug for rayon::collections::hash_set::Drain<'a, T> where
T: Debug + Hash + Eq + Send,
impl<'a, T> Debug for rayon::collections::hash_set::Iter<'a, T> where
T: Debug + Hash + Eq + Sync,
impl<'a, T> Debug for rayon::collections::linked_list::Iter<'a, T> where
T: Debug + Sync,
impl<'a, T> Debug for rayon::collections::linked_list::IterMut<'a, T> where
T: Debug + Send,
impl<'a, T> Debug for rayon::collections::vec_deque::Drain<'a, T> where
T: Debug + Send,
impl<'a, T> Debug for rayon::collections::vec_deque::Iter<'a, T> where
T: Debug + Sync,
impl<'a, T> Debug for rayon::collections::vec_deque::IterMut<'a, T> where
T: Debug + Send,
impl<'a, T> Debug for rayon::option::Iter<'a, T> where
T: Debug + Sync,
impl<'a, T> Debug for rayon::option::IterMut<'a, T> where
T: Debug + Send,
impl<'a, T> Debug for rayon::result::Iter<'a, T> where
T: Debug + Sync,
impl<'a, T> Debug for rayon::result::IterMut<'a, T> where
T: Debug + Send,
impl<'a, T> Debug for Drain<'a, T> where
T: 'a + Array,
<T as Array>::Item: Debug,
impl<'a, T> Debug for Drain<'a, T> where
T: Debug,
impl<'a, T> Debug for MutexGuard<'a, T> where
T: Debug + ?Sized,
impl<'a, T> Debug for Selector<'a, T> where
T: 'a,
impl<'a, T> Debug for SpinMutexGuard<'a, T> where
T: Debug + ?Sized,
impl<'a, T, F, A> Debug for alloc::vec::drain_filter::DrainFilter<'a, T, F, A> where
T: Debug,
F: Debug + for<'_> 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 ArrayChunks<'a, T, N> where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayChunksMut<'a, T, N> where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N> where
T: 'a + Debug,
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<'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::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::SplitTerminator<'ch, P> where
P: Debug + Pattern,
impl<'channels, PixelWriter, Storage, Channels> Debug for SpecificChannelsWriter<'channels, PixelWriter, Storage, Channels> where
PixelWriter: Debug,
Storage: Debug,
Channels: Debug,
impl<'data, T> Debug for rayon::slice::chunks::Chunks<'data, T> where
T: Debug + Sync,
impl<'data, T> Debug for rayon::slice::chunks::ChunksExact<'data, T> where
T: Debug + Sync,
impl<'data, T> Debug for rayon::slice::chunks::ChunksExactMut<'data, T> where
T: Debug + Send,
impl<'data, T> Debug for rayon::slice::chunks::ChunksMut<'data, T> where
T: Debug + Send,
impl<'data, T> Debug for rayon::slice::rchunks::RChunks<'data, T> where
T: Debug + Sync,
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExact<'data, T> where
T: Debug + Sync,
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExactMut<'data, T> where
T: Debug + Send,
impl<'data, T> Debug for rayon::slice::rchunks::RChunksMut<'data, T> where
T: Debug + Send,
impl<'data, T> Debug for rayon::slice::Iter<'data, T> where
T: Debug + Sync,
impl<'data, T> Debug for rayon::slice::IterMut<'data, T> where
T: Debug + Send,
impl<'data, T> Debug for rayon::slice::Windows<'data, T> where
T: Debug + Sync,
impl<'data, T> Debug for rayon::vec::Drain<'data, T> where
T: Debug + Send,
impl<'data, T, P> Debug for rayon::slice::Split<'data, T, P> where
T: Debug,
impl<'data, T, P> Debug for rayon::slice::SplitMut<'data, T, P> where
T: Debug,
impl<'f> Debug for VaListImpl<'f>
impl<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'img, Layers, OnProgress> Debug for WriteImageWithOptions<'img, Layers, OnProgress> where
Layers: Debug,
OnProgress: Debug,
impl<'n> Debug for Finder<'n>
impl<'n> Debug for FinderRev<'n>
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<'rwlock, T> Debug for RwLockReadGuard<'rwlock, T> where
T: Debug + ?Sized,
impl<'rwlock, T, R> Debug for RwLockUpgradableGuard<'rwlock, T, R> where
T: Debug + ?Sized,
impl<'rwlock, T, R> Debug for RwLockWriteGuard<'rwlock, T, R> where
T: Debug + ?Sized,
impl<'s> Debug for FlatSampleIterator<'s>
impl<'s, 'h> Debug for FindIter<'s, 'h>
impl<'samples> Debug for FlatSamplesWriter<'samples>
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<'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<'w, W> Debug for ParallelBlocksCompressor<'w, W> where
W: Debug,
impl<'w, W> Debug for SequentialBlocksCompressor<'w, W> where
W: Debug,
impl<'w, W> Debug for SortedBlocksWriter<'w, W> where
W: Debug,
impl<'w, W, F> Debug for OnProgressChunkWriter<'w, W, F> where
W: Debug,
F: Debug,
impl<A> Debug for core::iter::sources::repeat::Repeat<A> where
A: Debug,
impl<A> Debug for core::option::IntoIter<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 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, B> Debug for EitherOrBoth<A, B> where
A: Debug,
B: Debug,
impl<A, B> Debug for core::iter::adapters::chain::Chain<A, B> where
A: Debug,
B: Debug,
impl<A, B> Debug for core::iter::adapters::zip::Zip<A, B> where
A: Debug,
B: Debug,
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> where
A: Debug + IndexedParallelIterator,
B: Debug + IndexedParallelIterator,
impl<A, B> Debug for rayon::iter::zip_eq::ZipEq<A, B> where
A: Debug + IndexedParallelIterator,
B: Debug + IndexedParallelIterator,
impl<B> Debug for std::io::Lines<B> where
B: Debug,
impl<B> Debug for std::io::Split<B> where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C> where
B: Debug,
C: Debug,
impl<Buffer> Debug for plot_interface::dependency::image::FlatSamples<Buffer> where
Buffer: Debug,
impl<Buffer, P> Debug for View<Buffer, P> where
Buffer: Debug + AsRef<[<P as Pixel>::Subpixel]>,
P: Debug + Pixel,
impl<Buffer, P> Debug for ViewMut<Buffer, P> where
Buffer: Debug + AsMut<[<P as Pixel>::Subpixel]>,
P: Debug + Pixel,
impl<Channels> Debug for CroppedChannels<Channels> where
Channels: Debug,
impl<Channels> Debug for Layer<Channels> where
Channels: Debug,
impl<ChannelsReader> Debug for AllLayersReader<ChannelsReader> where
ChannelsReader: Debug,
impl<ChannelsReader> Debug for FirstValidLayerReader<ChannelsReader> where
ChannelsReader: Debug,
impl<ChannelsReader> Debug for LayerReader<ChannelsReader> where
ChannelsReader: Debug,
impl<ChannelsWriter> Debug for AllLayersWriter<ChannelsWriter> where
ChannelsWriter: Debug,
impl<ChannelsWriter> Debug for CroppedWriter<ChannelsWriter> where
ChannelsWriter: Debug,
impl<ChannelsWriter> Debug for LayerWriter<ChannelsWriter> where
ChannelsWriter: Debug,
impl<ComponentType> Debug for BGR<ComponentType> where
ComponentType: Debug,
impl<ComponentType> Debug for Gray<ComponentType> where
ComponentType: Debug,
impl<ComponentType> Debug for RGB<ComponentType> where
ComponentType: Debug,
impl<ComponentType, AlphaComponentType> Debug for BGRA<ComponentType, AlphaComponentType> where
ComponentType: Debug,
AlphaComponentType: Debug,
impl<ComponentType, AlphaComponentType> Debug for GrayAlpha<ComponentType, AlphaComponentType> where
ComponentType: Debug,
AlphaComponentType: Debug,
impl<ComponentType, AlphaComponentType> Debug for RGBA<ComponentType, AlphaComponentType> where
ComponentType: Debug,
AlphaComponentType: Debug,
impl<Context> Debug for Registry<Context> where
Context: Debug + ContextInterface,
impl<Cropped, Old> Debug for CropResult<Cropped, Old> where
Cropped: Debug,
Old: Debug,
impl<D, S> Debug for rayon::iter::splitter::Split<D, S> where
D: Debug,
impl<DeepOrFlatSamples> Debug for ReadAllLevels<DeepOrFlatSamples> where
DeepOrFlatSamples: Debug,
impl<DeepOrFlatSamples> Debug for ReadLargestLevel<DeepOrFlatSamples> where
DeepOrFlatSamples: Debug,
impl<DefaultSample> Debug for OptionalSampleReader<DefaultSample> where
DefaultSample: Debug,
impl<Dyn> Debug for DynMetadata<Dyn> where
Dyn: ?Sized,
impl<E> Debug for Report<E> where
Report<E>: Display,
impl<E, HashSet, Former, ContainerEnd> Debug for HashSetFormer<E, HashSet, Former, ContainerEnd> where
E: Debug + Eq + Hash,
HashSet: Debug + HashSetLike<E> + Default,
Former: Debug,
ContainerEnd: Debug + for<'_> Fn(&mut Former, Option<HashSet>),
impl<E, Vector, Former, ContainerEnd> Debug for VectorFormer<E, Vector, Former, ContainerEnd> where
E: Debug,
Vector: Debug + VectorLike<E> + PartialEq<Vector> + Default,
Former: Debug,
ContainerEnd: Debug + for<'_> Fn(&mut Former, Option<Vector>),
impl<F> Debug for PollFn<F>
impl<F> Debug for FromFn<F>
impl<F> Debug for OnceWith<F> where
F: Debug,
impl<F> Debug for RepeatWith<F> where
F: Debug,
impl<F> Debug for RepeatCall<F>
impl<H> Debug for BuildHasherDefault<H>
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 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> where
I: Debug + Iterator,
<I as Iterator>::Item: Clone,
<I as Iterator>::Item: Debug,
impl<I> Debug for Peekable<I> where
I: Debug + Iterator,
<I as Iterator>::Item: Debug,
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 DelayedFormat<I> where
I: Debug,
impl<I> Debug for MultiProduct<I> where
I: Iterator + Clone + Debug,
<I as Iterator>::Item: Clone,
<I as Iterator>::Item: Debug,
impl<I> Debug for PutBack<I> where
I: Debug + Iterator,
<I as Iterator>::Item: Debug,
impl<I> Debug for Step<I> where
I: Debug,
impl<I> Debug for itertools::adaptors::WhileSome<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,
<I as Iterator>::Item: 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 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 PutBackN<I> where
I: Debug + Iterator,
<I as Iterator>::Item: Debug,
impl<I> Debug for RcIter<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,
<I as Iterator>::Item: Eq,
<I as Iterator>::Item: 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> where
I: Debug + ParallelIterator,
<I as ParallelIterator>::Item: Clone,
<I as ParallelIterator>::Item: Debug,
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 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 rayon::iter::while_some::WhileSome<I> where
I: Debug + ParallelIterator,
impl<I, ElemF> Debug for itertools::intersperse::IntersperseWith<I, ElemF> where
I: Debug + Iterator,
ElemF: Debug,
<I as Iterator>::Item: Debug,
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> 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 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, G> Debug for core::iter::adapters::intersperse::IntersperseWith<I, G> where
I: Iterator + Debug,
G: Debug,
<I as Iterator>::Item: Debug,
impl<I, ID, F> Debug for Fold<I, ID, F> where
I: ParallelIterator + Debug,
impl<I, INIT, F> Debug for MapInit<I, INIT, F> where
I: ParallelIterator + Debug,
impl<I, J> Debug for itertools::adaptors::Interleave<I, J> where
I: Debug,
J: Debug,
impl<I, J> Debug for itertools::adaptors::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 ConsTuples<I, J> where
I: Debug + Iterator<Item = J>,
J: Debug,
impl<I, J> Debug for itertools::zip_eq_impl::ZipEq<I, J> where
I: Debug,
J: Debug,
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> 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,
J: Iterator + Debug,
<I as Iterator>::Item: Debug,
<J as Iterator>::Item: Debug,
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, St, F> Debug for Scan<I, St, F> where
I: Debug,
St: Debug,
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 CircularTupleWindows<I, T> where
I: Debug + Iterator<Item = <T as TupleCollect>::Item> + Clone,
T: Debug + Clone + TupleCollect,
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, T, F> Debug for MapWith<I, T, F> where
I: ParallelIterator + Debug,
T: Debug,
impl<I, U> Debug for core::iter::adapters::flatten::Flatten<I> where
I: Debug + Iterator,
U: Debug + Iterator,
<I as Iterator>::Item: IntoIterator,
<<I as Iterator>::Item as IntoIterator>::IntoIter == U,
<<I as Iterator>::Item as IntoIterator>::Item == <U as Iterator>::Item,
impl<I, U, F> Debug for core::iter::adapters::flatten::FlatMap<I, U, F> where
I: Debug,
U: IntoIterator,
<U as IntoIterator>::IntoIter: Debug,
impl<I, U, F> Debug for FoldWith<I, U, F> where
I: ParallelIterator + Debug,
U: Debug,
impl<I, U, F> Debug for TryFoldWith<I, U, F> where
I: ParallelIterator + Debug,
U: Try,
<U as Try>::Output: Debug,
impl<I, V, F> Debug for UniqueBy<I, V, F> where
I: Iterator + Debug,
V: Debug + Hash + Eq,
impl<Idx> Debug for core::ops::range::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<Inner, Value> Debug for Recursive<Inner, Value> where
Inner: Debug,
Value: Debug,
impl<Iter> Debug for IterBridge<Iter> where
Iter: Debug,
impl<K> Debug for std::collections::hash::set::IntoIter<K> where
K: Debug,
impl<K, A> Debug for IntoIter<K, A> where
K: Debug,
A: Allocator + Clone,
impl<K, E, HashMap, Former, ContainerEnd> Debug for HashMapFormer<K, E, HashMap, Former, ContainerEnd> where
K: Debug + Eq + Hash,
E: Debug,
HashMap: Debug + HashMapLike<K, E> + Default,
Former: Debug,
ContainerEnd: Debug + for<'_> Fn(&mut Former, Option<HashMap>),
impl<K, S> Debug for DashSet<K, S> where
K: Eq + Hash + Debug,
S: BuildHasher + Clone,
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V> where
K: Debug,
V: Debug,
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 rayon::collections::btree_map::IntoIter<K, V> where
K: Debug + Ord + Send,
V: Debug + Send,
impl<K, V> Debug for rayon::collections::hash_map::IntoIter<K, V> where
K: Debug + Hash + Eq + Send,
V: Debug + Send,
impl<K, V, A> Debug for BTreeMap<K, V, A> where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A> where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A> where
K: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A> where
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, A> Debug for IntoKeys<K, V, A> where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for IntoValues<K, V, A> where
V: Debug,
A: Allocator + Clone,
impl<K, V, S> Debug for plot_interface::HashMap<K, V, S> where
K: Debug,
V: Debug,
impl<K, V, S> Debug for DashMap<K, V, S> where
K: Eq + Hash + Debug,
V: Debug,
S: BuildHasher + Clone,
impl<K, V, S> Debug for ReadOnlyView<K, V, S> where
K: Eq + Hash + Debug,
V: Debug,
S: BuildHasher + Clone,
impl<K, V, S, A> Debug for HashMap<K, V, S, A> where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<L> Debug for ImageWithAttributesReader<L> where
L: Debug,
impl<L, R> Debug for Either<L, R> where
L: Debug,
R: Debug,
impl<Layers> Debug for Image<Layers> where
Layers: Debug,
impl<M> Debug for ExtendedFloat<M> where
M: Debug + UnsignedInteger,
impl<OnProgress, ReadLayers> Debug for ReadImage<OnProgress, ReadLayers> where
OnProgress: Debug,
ReadLayers: Debug,
impl<P> Debug for Pin<P> where
P: Debug,
impl<P, Container> Debug for ImageBuffer<P, Container> where
P: Debug + Pixel,
Container: Debug,
impl<PixelStorage, SetPixel, PixelReader, Pixel> Debug for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel> where
PixelStorage: Debug,
SetPixel: Debug,
PixelReader: Debug,
Pixel: Debug,
impl<Pixels, ChannelsDescription> Debug for SpecificChannels<Pixels, ChannelsDescription> where
Pixels: Debug,
ChannelsDescription: Debug,
impl<R> Debug for HdrAdapter<R> where
R: Debug + Read,
impl<R> Debug for HdrDecoder<R> where
R: Debug,
impl<R> Debug for OpenExrDecoder<R> where
R: Debug,
impl<R> Debug for BufReader<R> where
R: Debug,
impl<R> Debug for std::io::Bytes<R> where
R: Debug,
impl<R> Debug for CrcReader<R> where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateDecoder<R> where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateEncoder<R> where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateDecoder<R> where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateEncoder<R> where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzDecoder<R> where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzEncoder<R> where
R: Debug,
impl<R> Debug for flate2::gz::bufread::MultiGzDecoder<R> where
R: Debug,
impl<R> Debug for flate2::gz::read::GzDecoder<R> where
R: Debug,
impl<R> Debug for flate2::gz::read::GzEncoder<R> where
R: Debug,
impl<R> Debug for flate2::gz::read::MultiGzDecoder<R> where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibDecoder<R> where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibEncoder<R> where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibDecoder<R> where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibEncoder<R> where
R: Debug,
impl<R> Debug for AllChunksReader<R> where
R: Debug,
impl<R> Debug for Decoder<R> where
R: Debug + Read + Seek,
impl<R> Debug for FilteredChunksReader<R> where
R: Debug,
impl<R> Debug for ParallelBlockDecompressor<R> where
R: Debug + ChunksReader,
impl<R> Debug for Reader<R> where
R: Debug,
impl<R> Debug for SequentialBlockDecompressor<R> where
R: Debug + ChunksReader,
impl<R> Debug for TryResult<R> where
R: Debug,
impl<R, F> Debug for OnProgressChunksReader<R, F> where
R: Debug,
F: Debug,
impl<R, G, T> Debug for ReentrantMutex<R, G, T> where
R: RawMutex,
G: GetThreadId,
T: Debug + ?Sized,
impl<R, T> Debug for Mutex<R, T> where
R: RawMutex,
T: Debug + ?Sized,
impl<R, T> Debug for RwLock<R, T> where
R: RawRwLock,
T: Debug + ?Sized,
impl<ReadChannels> Debug for ReadAllLayers<ReadChannels> where
ReadChannels: Debug,
impl<ReadChannels> Debug for ReadFirstValidLayer<ReadChannels> where
ReadChannels: Debug,
impl<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel> Debug for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel> where
ReadChannels: Debug,
Pixel: Debug,
PixelStorage: Debug,
CreatePixels: Debug,
SetPixel: Debug,
impl<ReadChannels, Sample> Debug for ReadOptionalChannel<ReadChannels, Sample> where
ReadChannels: Debug,
Sample: Debug,
impl<ReadChannels, Sample> Debug for ReadRequiredChannel<ReadChannels, Sample> where
ReadChannels: Debug,
Sample: Debug,
impl<ReadSamples> Debug for ReadAnyChannels<ReadSamples> where
ReadSamples: Debug,
impl<RecursiveChannels, RecursivePixel> Debug for SpecificChannelsBuilder<RecursiveChannels, RecursivePixel> where
RecursiveChannels: Debug,
RecursivePixel: Debug,
impl<Ret> Debug for fn() -> Ret
impl<Ret> Debug for extern "C" fn() -> Ret
impl<Ret> Debug for unsafe fn() -> Ret
impl<Ret> Debug for unsafe extern "C" fn() -> Ret
impl<Ret, A> Debug for fn(A) -> Ret
impl<Ret, A> Debug for extern "C" fn(A) -> Ret
impl<Ret, A> Debug for extern "C" fn(A, ...) -> Ret
impl<Ret, A> Debug for unsafe fn(A) -> Ret
impl<Ret, A> Debug for unsafe extern "C" fn(A) -> Ret
impl<Ret, A> Debug for unsafe extern "C" fn(A, ...) -> Ret
impl<Ret, A, B> Debug for fn(A, B) -> Ret
impl<Ret, A, B> Debug for extern "C" fn(A, B) -> Ret
impl<Ret, A, B> Debug for extern "C" fn(A, B, ...) -> Ret
impl<Ret, A, B> Debug for unsafe fn(A, B) -> Ret
impl<Ret, A, B> Debug for unsafe extern "C" fn(A, B) -> Ret
impl<Ret, A, B> Debug for unsafe extern "C" fn(A, B, ...) -> Ret
impl<Ret, A, B, C> Debug for fn(A, B, C) -> Ret
impl<Ret, A, B, C> Debug for extern "C" fn(A, B, C) -> Ret
impl<Ret, A, B, C> Debug for extern "C" fn(A, B, C, ...) -> Ret
impl<Ret, A, B, C> Debug for unsafe fn(A, B, C) -> Ret
impl<Ret, A, B, C> Debug for unsafe extern "C" fn(A, B, C) -> Ret
impl<Ret, A, B, C> Debug for unsafe extern "C" fn(A, B, C, ...) -> Ret
impl<Ret, A, B, C, D> Debug for fn(A, B, C, D) -> Ret
impl<Ret, A, B, C, D> Debug for extern "C" fn(A, B, C, D) -> Ret
impl<Ret, A, B, C, D> Debug for extern "C" fn(A, B, C, D, ...) -> Ret
impl<Ret, A, B, C, D> Debug for unsafe fn(A, B, C, D) -> Ret
impl<Ret, A, B, C, D> Debug for unsafe extern "C" fn(A, B, C, D) -> Ret
impl<Ret, A, B, C, D> Debug for unsafe extern "C" fn(A, B, C, D, ...) -> Ret
impl<Ret, A, B, C, D, E> Debug for fn(A, B, C, D, E) -> Ret
impl<Ret, A, B, C, D, E> Debug for extern "C" fn(A, B, C, D, E) -> Ret
impl<Ret, A, B, C, D, E> Debug for extern "C" fn(A, B, C, D, E, ...) -> Ret
impl<Ret, A, B, C, D, E> Debug for unsafe fn(A, B, C, D, E) -> Ret
impl<Ret, A, B, C, D, E> Debug for unsafe extern "C" fn(A, B, C, D, E) -> Ret
impl<Ret, A, B, C, D, E> Debug for unsafe extern "C" fn(A, B, C, D, E, ...) -> Ret
impl<Ret, A, B, C, D, E, F> Debug for fn(A, B, C, D, E, F) -> Ret
impl<Ret, A, B, C, D, E, F> Debug for extern "C" fn(A, B, C, D, E, F) -> Ret
impl<Ret, A, B, C, D, E, F> Debug for extern "C" fn(A, B, C, D, E, F, ...) -> Ret
impl<Ret, A, B, C, D, E, F> Debug for unsafe fn(A, B, C, D, E, F) -> Ret
impl<Ret, A, B, C, D, E, F> Debug for unsafe extern "C" fn(A, B, C, D, E, F) -> Ret
impl<Ret, A, B, C, D, E, F> Debug for unsafe extern "C" fn(A, B, C, D, E, F, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G> Debug for fn(A, B, C, D, E, F, G) -> Ret
impl<Ret, A, B, C, D, E, F, G> Debug for extern "C" fn(A, B, C, D, E, F, G) -> Ret
impl<Ret, A, B, C, D, E, F, G> Debug for extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G> Debug for unsafe fn(A, B, C, D, E, F, G) -> Ret
impl<Ret, A, B, C, D, E, F, G> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G) -> Ret
impl<Ret, A, B, C, D, E, F, G> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G, H> Debug for fn(A, B, C, D, E, F, G, H) -> Ret
impl<Ret, A, B, C, D, E, F, G, H> Debug for extern "C" fn(A, B, C, D, E, F, G, H) -> Ret
impl<Ret, A, B, C, D, E, F, G, H> Debug for extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G, H> Debug for unsafe fn(A, B, C, D, E, F, G, H) -> Ret
impl<Ret, A, B, C, D, E, F, G, H> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H) -> Ret
impl<Ret, A, B, C, D, E, F, G, H> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I> Debug for fn(A, B, C, D, E, F, G, H, I) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I> Debug for unsafe fn(A, B, C, D, E, F, G, H, I) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for fn(A, B, C, D, E, F, G, H, I, J) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for unsafe fn(A, B, C, D, E, F, G, H, I, J) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for unsafe fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for unsafe fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L) -> Ret
impl<Ret, A, B, C, D, E, F, G, H, I, J, K, L> Debug for unsafe extern "C" fn(A, B, C, D, E, F, G, H, I, J, K, L, ...) -> Ret
impl<S> Debug for ThreadPoolBuilder<S>
impl<S> Debug for AhoCorasick<S> where
S: Debug + StateID,
impl<Sample> Debug for SampleReader<Sample> where
Sample: Debug,
impl<Sample> Debug for SampleWriter<Sample> where
Sample: Debug,
impl<Samples> Debug for AnyChannel<Samples> where
Samples: Debug,
impl<Samples> Debug for AnyChannels<Samples> where
Samples: Debug,
impl<Samples> Debug for Levels<Samples> where
Samples: Debug,
impl<Samples> Debug for RipMaps<Samples> where
Samples: Debug,
impl<SamplesReader> Debug for AllLevelsReader<SamplesReader> where
SamplesReader: Debug,
impl<SamplesReader> Debug for AnyChannelReader<SamplesReader> where
SamplesReader: Debug,
impl<SamplesReader> Debug for AnyChannelsReader<SamplesReader> where
SamplesReader: Debug,
impl<SamplesWriter> Debug for AnyChannelsWriter<SamplesWriter> where
SamplesWriter: Debug,
impl<SamplesWriter> Debug for LevelsWriter<SamplesWriter> where
SamplesWriter: Debug,
impl<Scalar> Debug for X2<Scalar> where
Scalar: ScalarInterface,
impl<St, F> Debug for Iterate<St, F> where
St: Debug,
impl<St, F> Debug for Unfold<St, F> where
St: Debug,
impl<T1, T2> Debug for Pair<T1, T2> where
T1: Debug,
T2: Debug,
impl<T> Debug for FoldWhile<T> where
T: Debug,
impl<T> Debug for MinMaxResult<T> where
T: Debug,
impl<T> Debug for plot_interface::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 Poll<T> where
T: Debug,
impl<T> Debug for std::sync::mpsc::TrySendError<T>
impl<T> Debug for TryLockError<T>
impl<T> Debug for LocalResult<T> where
T: Debug,
impl<T> Debug for OpType<T> where
T: Debug,
impl<T> Debug for *const T where
T: ?Sized,
impl<T> Debug for *mut T where
T: ?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.