pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}Expand description
? formatting.
Debug should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive a Debug implementation.
When used with the alternate format specifier #?, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive] if all fields implement Debug. When
derived for structs, it will use the name of the struct, then {, then a
comma-separated list of each field’s name and Debug value, then }. For
enums, it will use the name of the variant and, if applicable, (, then the
Debug values of the fields, then ).
§Stability
Derived Debug formats are not stable, and so may change with future Rust
versions. Additionally, Debug implementations of types provided by the
standard library (std, core, alloc, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);There are a number of helper methods on the Formatter struct to help you with manual
implementations, such as debug_struct.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter trait (debug_struct, debug_tuple,
debug_list, debug_set, debug_map) can do something totally custom by
manually writing an arbitrary representation to the Formatter.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}Debug implementations using either derive or the debug builder API
on Formatter support pretty-printing using the alternate flag: {:#?}.
Pretty-printing with #?:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err if, and only if, the provided Formatter returns Err.
String formatting is considered an infallible operation; this function only
returns a Result because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");Implementors§
impl Debug for Action
impl Debug for ClientApiHint
impl Debug for ColorEditDisplayMode
impl Debug for ColorEditInputMode
impl Debug for ColorFormat
impl Debug for ColorPickerMode
impl Debug for ColorPreview
impl Debug for ComboBoxHeight
impl Debug for ComboBoxPreviewMode
impl Debug for Condition
impl Debug for ContextCreationApi
impl Debug for ContextReleaseBehavior
impl Debug for ContextRobustnessHint
impl Debug for CursorMode
impl Debug for Direction
impl Debug for chaos_framework::Error
impl Debug for EulerRot
impl Debug for FocusedWidget
impl Debug for GamepadAxis
impl Debug for GamepadButton
impl Debug for HistoryDirection
impl Debug for InitError
impl Debug for InitHint
impl Debug for ItemFlag
impl Debug for JoystickEvent
impl Debug for JoystickId
impl Debug for MonitorEvent
impl Debug for MouseCursor
impl Debug for OpenGlProfileHint
impl Debug for ProjectionType
impl Debug for StandardCursor
impl Debug for StyleColor
impl Debug for StyleVar
impl Debug for SwapInterval
impl Debug for WindowEvent
impl Debug for WindowHint
impl Debug for GLFWcursor
impl Debug for GLFWmonitor
impl Debug for GLFWwindow
impl Debug for DataType
impl Debug for c_void
impl Debug for AsciiChar
impl Debug for chaos_framework::__core::cmp::Ordering
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for AtomicOrdering
impl Debug for SimdAlign
impl Debug for IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for chaos_framework::__core::net::SocketAddr
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for GetDisjointMutError
impl Debug for SearchStep
impl Debug for chaos_framework::__core::sync::atomic::Ordering
impl Debug for chaos_framework::__core::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for chaos_framework::__core::fmt::Sign
impl Debug for TryReserveErrorKind
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for std::fs::TryLockError
impl Debug for SeekFrom
impl Debug for std::io::error::ErrorKind
impl Debug for Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for RecvTimeoutError
impl Debug for TryRecvError
impl Debug for aligned_vec::TryReserveError
impl Debug for TransferFunction
impl Debug for av_scenechange::cpu::rust::CpuFeatureLevel
impl Debug for av_scenechange::SceneDetectionSpeed
impl Debug for avif_serialize::constants::ColorPrimaries
impl Debug for avif_serialize::constants::MatrixCoefficients
impl Debug for avif_serialize::constants::TransferCharacteristics
impl Debug for CheckedError
impl Debug for CheckedCastError
impl Debug for PodCastError
impl Debug for byteorder_lite::BigEndian
impl Debug for byteorder_lite::LittleEndian
impl Debug for CompressedBlock
impl Debug for Sample
impl Debug for exr::compression::Compression
impl Debug for exr::error::Error
impl Debug for Blocks
impl Debug for exr::image::FlatSamples
impl Debug for RoundingMode
impl Debug for AttributeValue
impl Debug for BlockType
impl Debug for EnvironmentMap
impl Debug for LevelMode
impl Debug for LineOrder
impl Debug for SampleType
impl Debug for BlockDescription
impl Debug for DecodeStatus
impl Debug for Color
impl Debug for Mode
impl Debug for DecompressionError
impl Debug for FlushCompress
impl Debug for FlushDecompress
impl Debug for Status
impl Debug for Block
impl Debug for DisposalMethod
impl Debug for Extension
impl Debug for gif::encoder::EncodingError
impl Debug for EncodingFormatError
impl Debug for gif::encoder::Repeat
impl Debug for ColorOutput
impl Debug for gif::reader::decoder::Decoded
impl Debug for gif::reader::decoder::DecodingError
impl Debug for FrameDataType
impl Debug for gif::reader::decoder::Version
impl Debug for MemoryLimit
impl Debug for glfw::Key
impl Debug for glfw::MouseButton
impl Debug for image_webp::decoder::DecodingError
impl Debug for LoopCount
impl Debug for image_webp::encoder::ColorType
impl Debug for image_webp::encoder::EncodingError
impl Debug for image::codecs::avif::encoder::ColorSpace
impl Debug for image::codecs::gif::Repeat
impl Debug for PixelDensityUnit
impl Debug for CompressionType
impl Debug for image::codecs::png::FilterType
impl Debug for ArbitraryTuplType
impl Debug for PnmSubtype
impl Debug for SampleEncoding
impl Debug for image::color::ColorType
impl Debug for ExtendedColorType
impl Debug for ImageError
impl Debug for ImageFormatHint
impl Debug for LimitErrorKind
impl Debug for ParameterErrorKind
impl Debug for UnsupportedErrorKind
impl Debug for image::imageops::sample::FilterType
impl Debug for DynamicImage
impl Debug for image::images::flat::Error
impl Debug for NormalForm
impl Debug for ImageFormat
impl Debug for image::metadata::cicp::CicpColorPrimaries
impl Debug for CicpMatrixCoefficients
impl Debug for CicpTransferCharacteristics
impl Debug for CicpVideoFullRangeFlag
impl Debug for Orientation
impl Debug for imgui::input::keyboard::Key
impl Debug for imgui::input::mouse::MouseButton
impl Debug for Position
impl Debug for DIR
impl Debug for FILE
impl Debug for timezone
impl Debug for tpacket_versions
impl Debug for log::Level
impl Debug for LevelFilter
impl Debug for PrefilterConfig
impl Debug for CompressionStrategy
impl Debug for TDEFLFlush
impl Debug for TDEFLStatus
impl Debug for CompressionLevel
impl Debug for DataFormat
impl Debug for MZError
impl Debug for MZFlush
impl Debug for MZStatus
impl Debug for TINFLStatus
impl Debug for ExtraXYZ
impl Debug for ExtraZXZ
impl Debug for ExtraZYX
impl Debug for IntraXYZ
impl Debug for IntraZXZ
impl Debug for IntraZYX
impl Debug for moxcms::cicp::CicpColorPrimaries
impl Debug for moxcms::cicp::MatrixCoefficients
impl Debug for moxcms::cicp::TransferCharacteristics
impl Debug for CmsError
impl Debug for DataColorSpace
impl Debug for LutStore
impl Debug for LutType
impl Debug for LutWarehouse
impl Debug for MeasurementGeometry
impl Debug for ProfileClass
impl Debug for ProfileSignature
impl Debug for ProfileText
impl Debug for ProfileVersion
impl Debug for moxcms::profile::RenderingIntent
impl Debug for StandardIlluminant
impl Debug for StandardObserver
impl Debug for TechnologySignatures
impl Debug for BarycentricWeightScale
impl Debug for InterpolationMethod
impl Debug for moxcms::transform::Layout
impl Debug for ToneReprCurve
impl Debug for nom::error::ErrorKind
impl Debug for Needed
impl Debug for Endianness
impl Debug for CompareResult
impl Debug for num_bigint::bigint::Sign
impl Debug for FloatErrorKind
impl Debug for parking_lot::once::OnceState
impl Debug for FilterOp
impl Debug for ParkResult
impl Debug for RequeueOp
impl Debug for Adam7Variant
impl Debug for png::common::BitDepth
impl Debug for BlendOp
impl Debug for png::common::ColorType
impl Debug for png::common::Compression
impl Debug for DeflateCompression
impl Debug for DisposeOp
impl Debug for SrgbRenderingIntent
impl Debug for Unit
impl Debug for InterlaceInfo
impl Debug for png::decoder::stream::Decoded
impl Debug for png::decoder::stream::DecodingError
impl Debug for png::encoder::EncodingError
impl Debug for png::filter::Filter
impl Debug for qoi::error::Error
impl Debug for Channels
impl Debug for qoi::types::ColorSpace
impl Debug for BernoulliError
impl Debug for WeightedError
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
impl Debug for ChromaSamplePosition
impl Debug for rav1e::api::color::ColorPrimaries
impl Debug for rav1e::api::color::MatrixCoefficients
impl Debug for PixelRange
impl Debug for rav1e::api::color::TransferCharacteristics
impl Debug for InvalidConfig
impl Debug for rav1e::api::config::rate::Error
impl Debug for PredictionModesSetting
impl Debug for SGRComplexityLevel
impl Debug for rav1e::api::config::speedsettings::SceneDetectionSpeed
impl Debug for SegmentationLevel
impl Debug for EncoderStatus
impl Debug for FrameType
impl Debug for rav1e::cpu_features::rust::CpuFeatureLevel
impl Debug for Tune
impl Debug for FrameTypeOverride
impl Debug for BlockSize
impl Debug for PredictionMode
impl Debug for TxType
impl Debug for AlphaColorMode
impl Debug for ravif::av1encoder::BitDepth
impl Debug for ColorModel
impl Debug for ravif::error::Error
impl Debug for HandleError
impl Debug for RawDisplayHandle
impl Debug for RawWindowHandle
impl Debug for Yield
impl Debug for Always
impl Debug for CollectionAllocErr
impl Debug for tiff::decoder::ChunkType
impl Debug for DecodingResult
impl Debug for Value
impl Debug for DeflateLevel
impl Debug for tiff::ColorType
impl Debug for TiffError
impl Debug for TiffFormatError
impl Debug for TiffUnsupportedError
impl Debug for UsageError
impl Debug for CompressionMethod
impl Debug for PhotometricInterpretation
impl Debug for PlanarConfiguration
impl Debug for Predictor
impl Debug for ResolutionUnit
impl Debug for SampleFormat
impl Debug for Tag
impl Debug for Type
impl Debug for LoadError
impl Debug for ChromaSampling
impl Debug for BitOrder
impl Debug for LzwError
impl Debug for LzwStatus
impl Debug for Colorspace
impl Debug for y4m::Error
impl Debug for y4m::ParseError
impl Debug for zerocopy::byteorder::BigEndian
impl Debug for zerocopy::byteorder::LittleEndian
impl Debug for zune_core::bit_depth::BitDepth
impl Debug for zune_core::bit_depth::BitDepth
impl Debug for zune_core::bit_depth::BitType
impl Debug for zune_core::bit_depth::BitType
impl Debug for zune_core::bit_depth::ByteEndian
impl Debug for zune_core::bit_depth::ByteEndian
impl Debug for ZByteIoError
impl Debug for zune_core::colorspace::ColorCharacteristics
impl Debug for zune_core::colorspace::ColorCharacteristics
impl Debug for zune_core::colorspace::ColorSpace
impl Debug for zune_core::colorspace::ColorSpace
impl Debug for zune_core::colorspace::RenderingIntent
impl Debug for zune_core::log::Level
impl Debug for zune_core::log::Level
impl Debug for DecodeErrorStatus
impl Debug for zune_jpeg::errors::DecodeErrors
impl Debug for zune_jpeg::errors::DecodeErrors
impl Debug for zune_jpeg::errors::UnsupportedSchemes
impl Debug for zune_jpeg::errors::UnsupportedSchemes
impl Debug for Marker
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 ImColor32Fields
impl Debug for DragDropPayload
impl Debug for DragDropPayloadEmpty
impl Debug for PayloadIsWrongType
impl Debug for DrawFlags
impl Debug for DrawListFlags
impl Debug for GLFWgamepadstate
impl Debug for GLFWgammaramp
impl Debug for GLFWimage
impl Debug for GLFWvidmode
impl Debug for Affine2
target_arch=spirv only.impl Debug for Affine3A
target_arch=spirv only.impl Debug for BVec2
target_arch=spirv only.impl Debug for BVec3
target_arch=spirv only.impl Debug for BVec3A
target_arch=spirv only.impl Debug for BVec4
target_arch=spirv only.impl Debug for BVec4A
target_arch=spirv only.impl Debug for BackendFlags
impl Debug for ButtonFlags
impl Debug for Camera
impl Debug for ColorEditFlags
impl Debug for ComboBoxFlags
impl Debug for ConfigFlags
impl Debug for chaos_framework::Cursor
impl Debug for DAffine2
target_arch=spirv only.impl Debug for DAffine3
target_arch=spirv only.impl Debug for DMat2
target_arch=spirv only.impl Debug for DMat3
target_arch=spirv only.impl Debug for DMat4
target_arch=spirv only.impl Debug for DQuat
target_arch=spirv only.impl Debug for DVec2
target_arch=spirv only.impl Debug for DVec3
target_arch=spirv only.impl Debug for DVec4
target_arch=spirv only.impl Debug for DebugAliases<MouseButton>
impl Debug for DragDropFlags
impl Debug for DrawCmdParams
impl Debug for DrawVert
impl Debug for FontAtlasFlags
impl Debug for FontConfig
impl Debug for FontGlyph
impl Debug for FontGlyphRanges
impl Debug for FontId
impl Debug for GamepadState
impl Debug for GammaRamp
impl Debug for Glfw
impl Debug for I16Vec2
target_arch=spirv only.impl Debug for I16Vec3
target_arch=spirv only.impl Debug for I16Vec4
target_arch=spirv only.impl Debug for I64Vec2
target_arch=spirv only.impl Debug for I64Vec3
target_arch=spirv only.impl Debug for I64Vec4
target_arch=spirv only.impl Debug for IVec2
target_arch=spirv only.impl Debug for IVec3
target_arch=spirv only.impl Debug for IVec4
target_arch=spirv only.impl Debug for Id
impl Debug for ImColor32
impl Debug for ImStr
impl Debug for ImString
impl Debug for chaos_framework::Image
impl Debug for ImageButtonDeprecated
impl Debug for InputTextCallback
impl Debug for InputTextFlags
impl Debug for InputTextMultilineCallback
impl Debug for InvalidStyleColorValue
impl Debug for ItemHoveredFlags
impl Debug for Joystick
impl Debug for JoystickHats
impl Debug for LightHandle
impl Debug for Mat2
target_arch=spirv only.impl Debug for Mat3
target_arch=spirv only.impl Debug for Mat3A
target_arch=spirv only.impl Debug for Mat4
target_arch=spirv only.impl Debug for chaos_framework::Mesh
impl Debug for MeshHandle
impl Debug for ModelHandle
impl Debug for Modifiers
impl Debug for Monitor
impl Debug for PRenderContext
impl Debug for PWindow
impl Debug for PixelImage
impl Debug for Quat
target_arch=spirv only.impl Debug for RenderContext
impl Debug for SelectableFlags
impl Debug for Shader
impl Debug for SkeletalMesh
impl Debug for SkeletalMeshHandle
impl Debug for SkeletalVertex
impl Debug for SliderFlags
impl Debug for Style
impl Debug for SuspendedContext
impl Debug for TabBarFlags
impl Debug for TabItemFlags
impl Debug for TextureHandle
impl Debug for TextureId
impl Debug for ThreadSafeGlfw
impl Debug for TreeNodeFlags
impl Debug for U16Vec2
target_arch=spirv only.impl Debug for U16Vec3
target_arch=spirv only.impl Debug for U16Vec4
target_arch=spirv only.impl Debug for U64Vec2
target_arch=spirv only.impl Debug for U64Vec3
target_arch=spirv only.impl Debug for U64Vec4
target_arch=spirv only.impl Debug for UVec2
target_arch=spirv only.impl Debug for UVec3
target_arch=spirv only.impl Debug for UVec4
target_arch=spirv only.impl Debug for Ui
impl Debug for UiBuffer
impl Debug for chaos_framework::Vec2
target_arch=spirv only.impl Debug for Vec3
target_arch=spirv only.impl Debug for Vec3A
target_arch=spirv only.impl Debug for Vec4
target_arch=spirv only.impl Debug for chaos_framework::Version
impl Debug for Vertex
impl Debug for VidMode
impl Debug for WindowFlags
impl Debug for WindowFocusedFlags
impl Debug for WindowHoveredFlags
impl Debug for ImColor
impl Debug for ImDrawChannel
impl Debug for ImDrawCmd
impl Debug for ImDrawCmdHeader
impl Debug for ImDrawData
impl Debug for ImDrawList
impl Debug for ImDrawListSplitter
impl Debug for ImDrawVert
impl Debug for ImFont
impl Debug for ImFontAtlas
impl Debug for ImFontAtlasCustomRect
impl Debug for ImFontBuilderIO
impl Debug for ImFontConfig
impl Debug for ImFontGlyph
impl Debug for ImFontGlyphRangesBuilder
impl Debug for ImGuiContext
impl Debug for ImGuiIO
impl Debug for ImGuiInputTextCallbackData
impl Debug for ImGuiKeyData
impl Debug for ImGuiListClipper
impl Debug for ImGuiOnceUponAFrame
impl Debug for ImGuiPayload
impl Debug for ImGuiPlatformImeData
impl Debug for ImGuiSizeCallbackData
impl Debug for ImGuiStorage
impl Debug for ImGuiStoragePair
impl Debug for ImGuiStyle
impl Debug for ImGuiTableColumnSortSpecs
impl Debug for ImGuiTableSortSpecs
impl Debug for ImGuiTextBuffer
impl Debug for ImGuiTextFilter
impl Debug for ImGuiTextRange
impl Debug for ImGuiViewport
impl Debug for ImVec2
impl Debug for ImVec4
impl Debug for ImVector_ImDrawChannel
impl Debug for ImVector_ImDrawCmd
impl Debug for ImVector_ImDrawIdx
impl Debug for ImVector_ImDrawVert
impl Debug for ImVector_ImFontAtlasCustomRect
impl Debug for ImVector_ImFontConfig
impl Debug for ImVector_ImFontGlyph
impl Debug for ImVector_ImFontPtr
impl Debug for ImVector_ImGuiStoragePair
impl Debug for ImVector_ImGuiTextRange
impl Debug for ImVector_ImTextureID
impl Debug for ImVector_ImU32
impl Debug for ImVector_ImVec2
impl Debug for ImVector_ImVec4
impl Debug for ImVector_ImWchar
impl Debug for ImVector_char
impl Debug for ImVector_float
impl Debug for chaos_framework::__core::alloc::AllocError
impl Debug for chaos_framework::__core::alloc::Layout
impl Debug for LayoutError
impl Debug for TypeId
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 chaos_framework::__core::arch::x86_64::bf16
impl Debug for TryFromSliceError
impl Debug for chaos_framework::__core::ascii::EscapeDefault
impl Debug for ByteStr
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for DecodeUtf16Error
impl Debug for chaos_framework::__core::char::EscapeDebug
impl Debug for chaos_framework::__core::char::EscapeDefault
impl Debug for chaos_framework::__core::char::EscapeUnicode
impl Debug for ParseCharError
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for CStr
Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
impl Debug for FromBytesUntilNulError
impl Debug for SipHasher
impl Debug for Last
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for PhantomPinned
impl Debug for Assume
impl Debug for AddrParseError
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for chaos_framework::__core::num::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for Location<'_>
impl Debug for PanicMessage<'_>
impl Debug for chaos_framework::__core::ptr::Alignment
impl Debug for chaos_framework::__core::str::Chars<'_>
impl Debug for chaos_framework::__core::str::EncodeUtf16<'_>
impl Debug for ParseBoolError
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for AtomicBool
target_has_atomic_load_store=8 only.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 chaos_framework::__core::task::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 Global
impl Debug for ByteString
impl Debug for UnorderedKeyError
impl Debug for alloc::collections::TryReserveError
impl Debug for CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for String
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for OsStr
impl Debug for OsString
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for File
impl Debug for FileTimes
impl Debug for FileType
impl Debug for std::fs::Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for DefaultHasher
impl Debug for std::hash::random::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 NormalizeError
impl Debug for Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for Stdio
impl Debug for DefaultRandomSource
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for RecvError
impl Debug for std::sync::nonpoison::condvar::Condvar
impl Debug for WouldBlock
impl Debug for std::sync::once::Once
impl Debug for std::sync::once::OnceState
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for std::sync::WaitTimeoutResult
impl Debug for Builder
impl Debug for ThreadId
impl Debug for AccessError
impl Debug for std::thread::scoped::Scope<'_, '_>
impl Debug for Thread
impl Debug for Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for AHasher
impl Debug for ahash::random_state::RandomState
impl Debug for anyhow::Error
impl Debug for NoiseGenArgs
impl Debug for GrainTableSegment
impl Debug for VideoDetails
impl Debug for DetectionOptions
impl Debug for DetectionResults
impl Debug for bitflags::parser::ParseError
impl Debug for bitstream_io::BigEndian
impl Debug for bitstream_io::LittleEndian
impl Debug for Overflowed
impl Debug for Hasher
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 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 Chunk
impl Debug for CompressedDeepScanLineBlock
impl Debug for CompressedDeepTileBlock
impl Debug for CompressedScanLineBlock
impl Debug for CompressedTileBlock
impl Debug for TileCoordinates
impl Debug for LineIndex
impl Debug for BlockIndex
impl Debug for UncompressedBlock
impl Debug for FlatSamplesReader
impl Debug for ReadFlatSamples
impl Debug for ReadBuilder
impl Debug for NoneMore
impl Debug for Encoding
impl Debug for ValidationOptions
impl Debug for ChannelDescription
impl Debug for ChannelList
impl Debug for Chromaticities
impl Debug for FloatRect
impl Debug for IntegerBounds
impl Debug for KeyCode
impl Debug for Preview
impl Debug for Text
impl Debug for TileDescription
impl Debug for TimeCode
impl Debug for exr::meta::header::Header
impl Debug for ImageAttributes
impl Debug for LayerAttributes
impl Debug for MetaData
impl Debug for Requirements
impl Debug for TileIndices
impl Debug for Bits
impl Debug for Crc
impl Debug for GzBuilder
impl Debug for GzHeader
impl Debug for Compress
impl Debug for CompressError
impl Debug for Decompress
impl Debug for flate2::mem::DecompressError
impl Debug for flate2::Compression
impl Debug for getrandom::error::Error
impl Debug for getrandom::error::Error
impl Debug for AnyExtension
impl Debug for DecodingFormatError
impl Debug for DecodeOptions
impl Debug for glfw::Window
impl Debug for half::bfloat::bf16
target_arch=spirv only.impl Debug for f16
target_arch=spirv only.impl Debug for EncoderParams
impl Debug for image_webp::vp8::Frame
impl Debug for Delay
impl Debug for HdrMetadata
impl Debug for PixelDensity
impl Debug for ArbitraryHeader
impl Debug for BitmapHeader
impl Debug for GraymapHeader
impl Debug for PixmapHeader
impl Debug for image::error::DecodingError
impl Debug for image::error::EncodingError
impl Debug for LimitError
impl Debug for image::error::ParameterError
impl Debug for TryFromExtendedColorError
impl Debug for UnsupportedError
impl Debug for SampleLayout
impl Debug for LimitSupport
impl Debug for image::io::limits::Limits
impl Debug for Rect
impl Debug for Cicp
impl Debug for imgui::context::Context
impl Debug for j1939_filter
impl Debug for __c_anonymous_sockaddr_can_j1939
impl Debug for __c_anonymous_sockaddr_can_tp
impl Debug for can_filter
impl Debug for can_frame
impl Debug for canfd_frame
impl Debug for canxl_frame
impl Debug for sockaddr_can
impl Debug for termios2
impl Debug for msqid_ds
impl Debug for semid_ds
impl Debug for sigset_t
impl Debug for sysinfo
impl Debug for timex
impl Debug for statvfs
impl Debug for _libc_fpstate
impl Debug for _libc_fpxreg
impl Debug for _libc_xmmreg
impl Debug for clone_args
impl Debug for flock64
impl Debug for flock
impl Debug for ipc_perm
impl Debug for max_align_t
impl Debug for mcontext_t
impl Debug for pthread_attr_t
impl Debug for ptrace_rseq_configuration
impl Debug for shmid_ds
impl Debug for sigaction
impl Debug for siginfo_t
impl Debug for stack_t
impl Debug for stat64
impl Debug for stat
impl Debug for statfs64
impl Debug for statfs
impl Debug for statvfs64
impl Debug for ucontext_t
impl Debug for user
impl Debug for user_fpregs_struct
impl Debug for user_regs_struct
impl Debug for Elf32_Chdr
impl Debug for Elf64_Chdr
impl Debug for __c_anonymous_ptrace_syscall_info_entry
impl Debug for __c_anonymous_ptrace_syscall_info_exit
impl Debug for __c_anonymous_ptrace_syscall_info_seccomp
impl Debug for __exit_status
impl Debug for __timeval
impl Debug for aiocb
impl Debug for cmsghdr
impl Debug for fanotify_event_info_error
impl Debug for fanotify_event_info_pidfd
impl Debug for fpos64_t
impl Debug for fpos_t
impl Debug for glob64_t
impl Debug for iocb
impl Debug for mallinfo2
impl Debug for mallinfo
impl Debug for mbstate_t
impl Debug for msghdr
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for ntptimeval
impl Debug for ptrace_peeksiginfo_args
impl Debug for ptrace_sud_config
impl Debug for ptrace_syscall_info
impl Debug for regex_t
impl Debug for rtentry
impl Debug for sem_t
impl Debug for seminfo
impl Debug for tcp_info
impl Debug for termios
impl Debug for timespec
impl Debug for utmpx
impl Debug for Elf32_Ehdr
impl Debug for Elf32_Phdr
impl Debug for Elf32_Shdr
impl Debug for Elf32_Sym
impl Debug for Elf64_Ehdr
impl Debug for Elf64_Phdr
impl Debug for Elf64_Shdr
impl Debug for Elf64_Sym
impl Debug for __c_anonymous__kernel_fsid_t
impl Debug for __c_anonymous_elf32_rel
impl Debug for __c_anonymous_elf32_rela
impl Debug for __c_anonymous_elf64_rel
impl Debug for __c_anonymous_elf64_rela
impl Debug for __c_anonymous_ifru_map
impl Debug for af_alg_iv
impl Debug for arpd_request
impl Debug for cpu_set_t
impl Debug for dirent64
impl Debug for dirent
impl Debug for dl_phdr_info
impl Debug for dmabuf_cmsg
impl Debug for dmabuf_token
impl Debug for dqblk
impl Debug for epoll_params
impl Debug for fanotify_event_info_fid
impl Debug for fanotify_event_info_header
impl Debug for fanotify_event_metadata
impl Debug for fanotify_response
impl Debug for fanout_args
impl Debug for ff_condition_effect
impl Debug for ff_constant_effect
impl Debug for ff_effect
impl Debug for ff_envelope
impl Debug for ff_periodic_effect
impl Debug for ff_ramp_effect
impl Debug for ff_replay
impl Debug for ff_rumble_effect
impl Debug for ff_trigger
impl Debug for fsid_t
impl Debug for genlmsghdr
impl Debug for glob_t
impl Debug for hwtstamp_config
impl Debug for if_nameindex
impl Debug for ifconf
impl Debug for ifreq
impl Debug for in6_ifreq
impl Debug for in6_pktinfo
impl Debug for inotify_event
impl Debug for input_absinfo
impl Debug for input_event
impl Debug for input_id
impl Debug for input_keymap_entry
impl Debug for input_mask
impl Debug for itimerspec
impl Debug for iw_discarded
impl Debug for iw_encode_ext
impl Debug for iw_event
impl Debug for iw_freq
impl Debug for iw_michaelmicfailure
impl Debug for iw_missed
impl Debug for iw_mlme
impl Debug for iw_param
impl Debug for iw_pmkid_cand
impl Debug for iw_pmksa
impl Debug for iw_point
impl Debug for iw_priv_args
impl Debug for iw_quality
impl Debug for iw_range
impl Debug for iw_scan_req
impl Debug for iw_statistics
impl Debug for iw_thrspy
impl Debug for iwreq
impl Debug for mnt_ns_info
impl Debug for mntent
impl Debug for mount_attr
impl Debug for mq_attr
impl Debug for msginfo
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for open_how
impl Debug for option
impl Debug for packet_mreq
impl Debug for passwd
impl Debug for pidfd_info
impl Debug for posix_spawn_file_actions_t
impl Debug for posix_spawnattr_t
impl Debug for pthread_barrier_t
impl Debug for pthread_barrierattr_t
impl Debug for pthread_cond_t
impl Debug for pthread_condattr_t
impl Debug for pthread_mutex_t
impl Debug for pthread_mutexattr_t
impl Debug for pthread_rwlock_t
impl Debug for pthread_rwlockattr_t
impl Debug for ptp_clock_caps
impl Debug for ptp_clock_time
impl Debug for ptp_extts_event
impl Debug for ptp_extts_request
impl Debug for ptp_perout_request
impl Debug for ptp_pin_desc
impl Debug for ptp_sys_offset
impl Debug for ptp_sys_offset_extended
impl Debug for ptp_sys_offset_precise
impl Debug for regmatch_t
impl Debug for rlimit64
impl Debug for sched_attr
impl Debug for sctp_authinfo
impl Debug for sctp_initmsg
impl Debug for sctp_nxtinfo
impl Debug for sctp_prinfo
impl Debug for sctp_rcvinfo
impl Debug for sctp_sndinfo
impl Debug for sctp_sndrcvinfo
impl Debug for seccomp_data
impl Debug for seccomp_notif
impl Debug for seccomp_notif_addfd
impl Debug for seccomp_notif_resp
impl Debug for seccomp_notif_sizes
impl Debug for sembuf
impl Debug for signalfd_siginfo
impl Debug for sock_extended_err
impl Debug for sock_txtime
impl Debug for sockaddr_alg
impl Debug for sockaddr_nl
impl Debug for sockaddr_pkt
impl Debug for sockaddr_vm
impl Debug for sockaddr_xdp
impl Debug for spwd
impl Debug for tls12_crypto_info_aes_ccm_128
impl Debug for tls12_crypto_info_aes_gcm_128
impl Debug for tls12_crypto_info_aes_gcm_256
impl Debug for tls12_crypto_info_aria_gcm_128
impl Debug for tls12_crypto_info_aria_gcm_256
impl Debug for tls12_crypto_info_chacha20_poly1305
impl Debug for tls12_crypto_info_sm4_ccm
impl Debug for tls12_crypto_info_sm4_gcm
impl Debug for tls_crypto_info
impl Debug for tpacket2_hdr
impl Debug for tpacket3_hdr
impl Debug for tpacket_auxdata
impl Debug for tpacket_bd_ts
impl Debug for tpacket_block_desc
impl Debug for tpacket_hdr
impl Debug for tpacket_hdr_v1
impl Debug for tpacket_hdr_variant1
impl Debug for tpacket_req3
impl Debug for tpacket_req
impl Debug for tpacket_rollover_stats
impl Debug for tpacket_stats
impl Debug for tpacket_stats_v3
impl Debug for ucred
impl Debug for uinput_abs_setup
impl Debug for uinput_ff_erase
impl Debug for uinput_ff_upload
impl Debug for uinput_setup
impl Debug for uinput_user_dev
impl Debug for xdp_desc
impl Debug for xdp_mmap_offsets
impl Debug for xdp_mmap_offsets_v1
impl Debug for xdp_options
impl Debug for xdp_ring_offset
impl Debug for xdp_ring_offset_v1
impl Debug for xdp_statistics
impl Debug for xdp_statistics_v1
impl Debug for xdp_umem_reg
impl Debug for xdp_umem_reg_v1
impl Debug for xsk_tx_metadata
impl Debug for xsk_tx_metadata_completion
impl Debug for xsk_tx_metadata_request
impl Debug for Dl_info
impl Debug for addrinfo
impl Debug for arphdr
impl Debug for arpreq
impl Debug for arpreq_old
impl Debug for epoll_event
impl Debug for fd_set
impl Debug for file_clone_range
impl Debug for ifaddrs
impl Debug for in6_rtmsg
impl Debug for in_addr
impl Debug for in_pktinfo
impl Debug for ip_mreq
impl Debug for ip_mreq_source
impl Debug for ip_mreqn
impl Debug for lconv
impl Debug for mmsghdr
impl Debug for sched_param
impl Debug for sigevent
impl Debug for sock_filter
impl Debug for sock_fprog
impl Debug for sockaddr
impl Debug for sockaddr_in6
impl Debug for sockaddr_in
impl Debug for sockaddr_ll
impl Debug for sockaddr_storage
impl Debug for sockaddr_un
impl Debug for statx
impl Debug for statx_timestamp
impl Debug for tm
impl Debug for utsname
impl Debug for group
impl Debug for hostent
impl Debug for in6_addr
impl Debug for iovec
impl Debug for ipv6_mreq
impl Debug for itimerval
impl Debug for linger
impl Debug for pollfd
impl Debug for protoent
impl Debug for rlimit
impl Debug for rusage
impl Debug for servent
impl Debug for sigval
impl Debug for timeval
impl Debug for tms
impl Debug for utimbuf
impl Debug for winsize
impl Debug for ParseLevelError
impl Debug for SetLoggerError
impl Debug for memchr::arch::all::memchr::One
impl Debug for memchr::arch::all::memchr::Three
impl Debug for memchr::arch::all::memchr::Two
impl Debug for memchr::arch::all::packedpair::Finder
impl Debug for Pair
impl Debug for memchr::arch::all::rabinkarp::Finder
impl Debug for memchr::arch::all::rabinkarp::FinderRev
impl Debug for memchr::arch::all::shiftor::Finder
impl Debug for memchr::arch::all::twoway::Finder
impl Debug for memchr::arch::all::twoway::FinderRev
impl Debug for memchr::arch::x86_64::avx2::memchr::One
impl Debug for memchr::arch::x86_64::avx2::memchr::Three
impl Debug for memchr::arch::x86_64::avx2::memchr::Two
impl Debug for memchr::arch::x86_64::avx2::packedpair::Finder
impl Debug for memchr::arch::x86_64::sse2::memchr::One
impl Debug for memchr::arch::x86_64::sse2::memchr::Three
impl Debug for memchr::arch::x86_64::sse2::memchr::Two
impl Debug for memchr::arch::x86_64::sse2::packedpair::Finder
impl Debug for FinderBuilder
impl Debug for miniz_oxide::inflate::DecompressError
impl Debug for miniz_oxide::StreamResult
impl Debug for Chromaticity
impl Debug for moxcms::cicp::ColorPrimaries
impl Debug for ColorDateTime
impl Debug for DtUchHcb
impl Debug for DtUchHsb
impl Debug for DtUchJch
impl Debug for MalformedSize
impl Debug for Jzazbz
impl Debug for Jzczhz
impl Debug for Lab
impl Debug for LCh
impl Debug for Luv
impl Debug for Matrix3d
impl Debug for Matrix3f
impl Debug for Matrix4f
impl Debug for Xyz
impl Debug for Xyzd
impl Debug for Oklab
impl Debug for CicpProfile
impl Debug for ColorProfile
impl Debug for DescriptionString
impl Debug for LocalizableString
impl Debug for LutDataType
impl Debug for LutMultidimensionalType
impl Debug for Measurement
impl Debug for ParsingOptions
impl Debug for ViewingConditions
impl Debug for Srlab2
impl Debug for TransformOptions
impl Debug for XyY
impl Debug for Ych
impl Debug for Yrg
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 parking_lot::condvar::Condvar
impl Debug for parking_lot::condvar::WaitTimeoutResult
impl Debug for parking_lot::once::Once
impl Debug for ParkToken
impl Debug for UnparkResult
impl Debug for UnparkToken
impl Debug for Adam7Info
impl Debug for png::chunk::ChunkType
impl Debug for AnimationControl
impl Debug for CodingIndependentCodePoints
impl Debug for ContentLightLevelInfo
impl Debug for FrameControl
impl Debug for MasteringDisplayColorVolume
impl Debug for png::common::ParameterError
impl Debug for PixelDimensions
impl Debug for ScaledFloat
impl Debug for SourceChromaticities
impl Debug for Transformations
impl Debug for png::decoder::Limits
impl Debug for OutputInfo
impl Debug for ITXtChunk
impl Debug for TEXtChunk
impl Debug for ZTXtChunk
impl Debug for qoi::header::Header
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 ReadError
impl Debug for StepRng
impl Debug for StdRng
impl Debug for ThreadRng
impl Debug for ChaCha8Core
impl Debug for ChaCha8Rng
impl Debug for ChaCha12Core
impl Debug for ChaCha12Rng
impl Debug for ChaCha20Core
impl Debug for ChaCha20Rng
impl Debug for rand_core::error::Error
impl Debug for OsRng
impl Debug for ChromaticityPoint
impl Debug for ColorDescription
impl Debug for ContentLight
impl Debug for MasteringDisplay
impl Debug for EncoderConfig
impl Debug for RateControlConfig
impl Debug for MotionSpeedSettings
impl Debug for PartitionRange
impl Debug for PartitionSpeedSettings
impl Debug for PredictionSpeedSettings
impl Debug for SpeedSettings
impl Debug for TransformSpeedSettings
impl Debug for Config
impl Debug for Opaque
impl Debug for Rational
impl Debug for T35
impl Debug for Sequence
impl Debug for FrameParameters
impl Debug for RCSummary
impl Debug for EncoderStats
impl Debug for TilingInfo
impl Debug for Encoder
impl Debug for AndroidDisplayHandle
impl Debug for AndroidNdkWindowHandle
impl Debug for AppKitDisplayHandle
impl Debug for AppKitWindowHandle
impl Debug for DisplayHandle<'_>
impl Debug for WindowHandle<'_>
impl Debug for HaikuDisplayHandle
impl Debug for HaikuWindowHandle
impl Debug for OhosDisplayHandle
impl Debug for OhosNdkWindowHandle
impl Debug for OrbitalDisplayHandle
impl Debug for OrbitalWindowHandle
impl Debug for UiKitDisplayHandle
impl Debug for UiKitWindowHandle
impl Debug for DrmDisplayHandle
impl Debug for DrmWindowHandle
impl Debug for GbmDisplayHandle
impl Debug for GbmWindowHandle
impl Debug for WaylandDisplayHandle
impl Debug for WaylandWindowHandle
impl Debug for XcbDisplayHandle
impl Debug for XcbWindowHandle
impl Debug for XlibDisplayHandle
impl Debug for XlibWindowHandle
impl Debug for WebCanvasWindowHandle
impl Debug for WebDisplayHandle
impl Debug for WebOffscreenCanvasWindowHandle
impl Debug for WebWindowHandle
impl Debug for Win32WindowHandle
impl Debug for WinRtWindowHandle
impl Debug for WindowsDisplayHandle
impl Debug for ThreadBuilder
impl Debug for rayon_core::Configuration
impl Debug for FnContext
impl Debug for ThreadPoolBuildError
impl Debug for ThreadPool
impl Debug for tiff::decoder::ifd::Entry
impl Debug for tiff::decoder::Limits
impl Debug for Directory
impl Debug for Deflate
impl Debug for Lzw
impl Debug for Packbits
impl Debug for Uncompressed
impl Debug for IfdPointer
impl Debug for LoadOptions
impl Debug for Material
impl Debug for tobj::Mesh
impl Debug for Model
impl Debug for PlaneConfig
impl Debug for PlaneOffset
impl Debug for weezl::decode::Configuration
impl Debug for weezl::encode::Configuration
impl Debug for BufferResult
impl Debug for weezl::error::StreamResult
impl Debug for EncoderBuilder
impl Debug for y4m::Limits
impl Debug for y4m::Ratio
impl Debug for VendorExtensionString
impl Debug for zerocopy::error::AllocError
impl Debug for zune_core::colorspace::ColorPrimaries
impl Debug for SingleColorPrimary
impl Debug for zune_core::options::decoder::DecoderOptions
impl Debug for zune_core::options::decoder::DecoderOptions
impl Debug for zune_core::options::encoder::EncoderOptions
impl Debug for zune_core::options::encoder::EncoderOptions
impl Debug for InflateDecodeErrors
impl Debug for Arguments<'_>
impl Debug for chaos_framework::__core::fmt::Error
impl Debug for FormattingOptions
impl Debug for ImGuiStoragePair__bindgen_ty_1
impl Debug for __c_anonymous_sockaddr_can_can_addr
impl Debug for __c_anonymous_ptrace_syscall_info_data
impl Debug for __c_anonymous_ifc_ifcu
impl Debug for __c_anonymous_ifr_ifru
impl Debug for __c_anonymous_iwreq
impl Debug for __c_anonymous_ptp_perout_request_1
impl Debug for __c_anonymous_ptp_perout_request_2
impl Debug for __c_anonymous_xsk_tx_metadata_union
impl Debug for iwreq_data
impl Debug for tpacket_bd_header_u
impl Debug for tpacket_req_u
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl<'a> Debug for FontSource<'a>
impl<'a> Debug for Texture<'a>
impl<'a> Debug for WindowMode<'a>
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for IndexVecIter<'a>
impl<'a> Debug for FontAtlasTexture<'a>
impl<'a> Debug for TreeNodeToken<'a>
impl<'a> Debug for Request<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for chaos_framework::__core::ffi::c_str::Bytes<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for chaos_framework::__core::str::Bytes<'a>
impl<'a> Debug for chaos_framework::__core::str::CharIndices<'a>
impl<'a> Debug for chaos_framework::__core::str::EscapeDebug<'a>
impl<'a> Debug for chaos_framework::__core::str::EscapeDefault<'a>
impl<'a> Debug for chaos_framework::__core::str::EscapeUnicode<'a>
impl<'a> Debug for chaos_framework::__core::str::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for chaos_framework::__core::str::SplitAsciiWhitespace<'a>
impl<'a> Debug for chaos_framework::__core::str::SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'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 gif::common::Frame<'a>
impl<'a> Debug for log::Metadata<'a>
impl<'a> Debug for MetadataBuilder<'a>
impl<'a> Debug for Record<'a>
impl<'a> Debug for RecordBuilder<'a>
impl<'a> Debug for Info<'a>
impl<'a> Debug for BroadcastContext<'a>
impl<'a> Debug for rayon::string::Drain<'a>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'f> Debug for VaList<'a, 'f>where
'f: 'a,
impl<'a, 'h> Debug for memchr::arch::all::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::TwoIter<'a, 'h>
impl<'a, A> Debug for chaos_framework::__core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for chaos_framework::__core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I> Debug for image::images::generic_image::Pixels<'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 ProcessResults<'a, I, E>
impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F>
impl<'a, K, V> Debug for rayon::collections::btree_map::Iter<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::btree_map::IterMut<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::Drain<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::Iter<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::IterMut<'a, K, V>
impl<'a, Message> Debug for FlushedMessages<'a, Message>
impl<'a, P> Debug for chaos_framework::__core::str::MatchIndices<'a, P>
impl<'a, P> Debug for chaos_framework::__core::str::Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for chaos_framework::__core::str::RSplit<'a, P>
impl<'a, P> Debug for chaos_framework::__core::str::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for chaos_framework::__core::str::Split<'a, P>
impl<'a, P> Debug for chaos_framework::__core::str::SplitInclusive<'a, P>
impl<'a, P> Debug for chaos_framework::__core::str::SplitN<'a, P>
impl<'a, P> Debug for chaos_framework::__core::str::SplitTerminator<'a, P>
impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T>
impl<'a, R, T> Debug for lock_api::mutex::MappedMutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::mutex::MutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockWriteGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockWriteGuard<'a, R, T>
impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>
impl<'a, T> Debug for chaos_framework::__core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for chaos_framework::__core::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for chaos_framework::__core::slice::Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for chaos_framework::__core::slice::ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for chaos_framework::__core::slice::ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for chaos_framework::__core::slice::ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for chaos_framework::__core::slice::RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for chaos_framework::__core::slice::RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for chaos_framework::__core::slice::RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for chaos_framework::__core::slice::RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for chaos_framework::__core::slice::Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for alloc::collections::btree::set::Range<'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 PixelsIterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for PixelsRefIter<'a, T>where
T: Debug,
impl<'a, T> Debug for RowsIter<'a, T>where
T: Debug,
impl<'a, T> Debug for RowsIterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for Slice<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::binary_heap::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::binary_heap::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::btree_set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::hash_set::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::hash_set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::linked_list::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::linked_list::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::option::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::option::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::result::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::result::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for smallvec::Drain<'a, T>
impl<'a, T> Debug for PlaneIter<'a, T>
impl<'a, T> Debug for PlaneSlice<'a, T>
impl<'a, T, A> Debug for alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, I> Debug for Ptr<'a, T, I>where
T: 'a + ?Sized,
I: Invariants,
impl<'a, T, L> Debug for TreeNode<'a, T, L>
impl<'a, T, P> Debug for chaos_framework::__core::slice::ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for chaos_framework::__core::slice::ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'ch> Debug for rayon::str::Bytes<'ch>
impl<'ch> Debug for rayon::str::CharIndices<'ch>
impl<'ch> Debug for rayon::str::Chars<'ch>
impl<'ch> Debug for rayon::str::EncodeUtf16<'ch>
impl<'ch> Debug for rayon::str::Lines<'ch>
impl<'ch> Debug for rayon::str::SplitAsciiWhitespace<'ch>
impl<'ch> Debug for rayon::str::SplitWhitespace<'ch>
impl<'ch, P> Debug for rayon::str::MatchIndices<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::Matches<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::Split<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::SplitInclusive<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::SplitTerminator<'ch, P>where
P: Debug + Pattern,
impl<'channels, PixelWriter, Storage, Channels> Debug for SpecificChannelsWriter<'channels, PixelWriter, Storage, Channels>
impl<'data> Debug for InterlacedRow<'data>
impl<'data, T> Debug for rayon::slice::chunks::Chunks<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksExact<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksExactMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunks<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExact<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExactMut<'data, T>
impl<'data, T> Debug for rayon::slice::rchunks::RChunksMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::Iter<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::IterMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::Windows<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::vec::Drain<'data, T>
impl<'f> Debug for VaListImpl<'f>
impl<'f> Debug for y4m::Frame<'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<'img, Layers, OnProgress> Debug for WriteImageWithOptions<'img, Layers, OnProgress>
impl<'n> Debug for memchr::memmem::Finder<'n>
impl<'n> Debug for memchr::memmem::FinderRev<'n>
impl<'s> Debug for FlatSampleIterator<'s>
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<'ui> Debug for ChildWindow<'ui>
impl<'ui> Debug for DragDropTarget<'ui>
impl<'ui, 'a, Label> Debug for imgui::window::Window<'ui, 'a, Label>where
Label: Debug,
impl<'ui, 'a, Label, C> Debug for ColorEdit3<'ui, 'a, Label, C>
impl<'ui, 'a, Label, Color> Debug for ColorPicker3<'ui, 'a, Label, Color>
impl<'ui, 'a, Label, Color> Debug for ColorPicker4<'ui, 'a, Label, Color>
impl<'ui, 'a, T, C> Debug for ColorEdit4<'ui, 'a, T, C>
impl<'ui, Label, Data, Format> Debug for Slider<'ui, Label, Data, Format>
impl<'ui, Label, Preview> Debug for ComboBox<'ui, Label, Preview>
impl<'ui, Label, Shortcut> Debug for MenuItem<'ui, Label, Shortcut>
impl<'ui, StrId> Debug for ImageButton<'ui, StrId>where
StrId: Debug,
impl<'ui, T> Debug for ColorButton<'ui, T>where
T: Debug,
impl<'ui, T> Debug for DragDropSource<'ui, T>where
T: Debug,
impl<'ui, T> Debug for Selectable<'ui, T>where
T: Debug,
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>
impl<A> Debug for chaos_framework::__core::iter::Repeat<A>where
A: Debug,
impl<A> Debug for chaos_framework::__core::iter::RepeatN<A>where
A: Debug,
impl<A> Debug for chaos_framework::__core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for IterRange<A>where
A: Debug,
impl<A> Debug for IterRangeFrom<A>where
A: Debug,
impl<A> Debug for IterRangeInclusive<A>where
A: Debug,
impl<A> Debug for itertools::repeatn::RepeatN<A>where
A: Debug,
impl<A> Debug for ExtendedGcd<A>where
A: Debug,
impl<A> Debug for smallvec::IntoIter<A>
impl<A> Debug for SmallVec<A>
impl<A, B> Debug for EitherOrBoth<A, B>
impl<A, B> Debug for chaos_framework::__core::iter::Chain<A, B>
impl<A, B> Debug for chaos_framework::__core::iter::Zip<A, B>
impl<A, B> Debug for rayon::iter::chain::Chain<A, B>
impl<A, B> Debug for rayon::iter::zip::Zip<A, B>
impl<A, B> Debug for rayon::iter::zip_eq::ZipEq<A, B>
impl<A, S, V> Debug for ConvertError<A, S, V>
impl<A, T> Debug for Aligned<A, T>
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<Buffer> Debug for image::images::flat::FlatSamples<Buffer>where
Buffer: Debug,
impl<Buffer, P> Debug for View<Buffer, P>
impl<Buffer, P> Debug for ViewMut<Buffer, P>
impl<C, T> Debug for Checked<C, T>
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 CroppedWriter<ChannelsWriter>where
ChannelsWriter: Debug,
impl<ChannelsWriter> Debug for AllLayersWriter<ChannelsWriter>where
ChannelsWriter: Debug,
impl<ChannelsWriter> Debug for LayerWriter<ChannelsWriter>where
ChannelsWriter: Debug,
impl<Container> Debug for Img<Container>where
Container: Debug,
impl<Cropped, Old> Debug for CropResult<Cropped, Old>
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<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 DecodeError<E>where
E: Debug,
impl<E> Debug for Report<E>
impl<F> Debug for PollFn<F>
impl<F> Debug for chaos_framework::__core::iter::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for RepeatWith<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for chaos_framework::__core::fmt::FromFn<F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<Failure, Error> Debug for Err<Failure, Error>
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for chaos_framework::__core::iter::Cloned<I>where
I: Debug,
impl<I> Debug for chaos_framework::__core::iter::Copied<I>where
I: Debug,
impl<I> Debug for Cycle<I>where
I: Debug,
impl<I> Debug for chaos_framework::__core::iter::Enumerate<I>where
I: Debug,
impl<I> Debug for Fuse<I>where
I: Debug,
impl<I> Debug for chaos_framework::__core::iter::Intersperse<I>
impl<I> Debug for Peekable<I>
impl<I> Debug for chaos_framework::__core::iter::Skip<I>where
I: Debug,
impl<I> Debug for chaos_framework::__core::iter::StepBy<I>where
I: Debug,
impl<I> Debug for chaos_framework::__core::iter::Take<I>where
I: Debug,
impl<I> Debug for MultiProduct<I>
impl<I> Debug for PutBack<I>
impl<I> Debug for itertools::adaptors::WhileSome<I>where
I: Debug,
impl<I> Debug for CombinationsWithReplacement<I>
impl<I> Debug for ExactlyOneError<I>
impl<I> Debug for GroupingMap<I>where
I: Debug,
impl<I> Debug for MultiPeek<I>
impl<I> Debug for PeekNth<I>
impl<I> Debug for Permutations<I>
impl<I> Debug for Powerset<I>
impl<I> Debug for PutBackN<I>
impl<I> Debug for RcIter<I>where
I: Debug,
impl<I> Debug for Tee<I>
impl<I> Debug for Unique<I>
impl<I> Debug for WithPosition<I>
impl<I> Debug for nom::error::Error<I>where
I: Debug,
impl<I> Debug for ExponentialBlocks<I>where
I: Debug,
impl<I> Debug for UniformBlocks<I>where
I: Debug,
impl<I> Debug for rayon::iter::chunks::Chunks<I>where
I: Debug,
impl<I> Debug for rayon::iter::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for rayon::iter::copied::Copied<I>where
I: Debug,
impl<I> Debug for rayon::iter::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for rayon::iter::flatten::Flatten<I>where
I: Debug,
impl<I> Debug for FlattenIter<I>where
I: Debug,
impl<I> Debug for rayon::iter::intersperse::Intersperse<I>
impl<I> Debug for MaxLen<I>where
I: Debug,
impl<I> Debug for MinLen<I>where
I: Debug,
impl<I> Debug for PanicFuse<I>where
I: Debug,
impl<I> Debug for rayon::iter::rev::Rev<I>where
I: Debug,
impl<I> Debug for rayon::iter::skip::Skip<I>where
I: Debug,
impl<I> Debug for SkipAny<I>where
I: Debug,
impl<I> Debug for rayon::iter::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for rayon::iter::take::Take<I>where
I: Debug,
impl<I> Debug for TakeAny<I>where
I: Debug,
impl<I> Debug for rayon::iter::while_some::WhileSome<I>where
I: Debug,
impl<I, ElemF> Debug for itertools::intersperse::IntersperseWith<I, ElemF>
impl<I, F> Debug for chaos_framework::__core::iter::FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for chaos_framework::__core::iter::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for chaos_framework::__core::iter::Map<I, F>where
I: Debug,
impl<I, F> Debug for Batching<I, F>where
I: Debug,
impl<I, F> Debug for FilterMapOk<I, F>where
I: Debug,
impl<I, F> Debug for FilterOk<I, F>where
I: Debug,
impl<I, F> Debug for itertools::adaptors::Positions<I, F>where
I: Debug,
impl<I, F> Debug for TakeWhileRef<'_, I, F>
impl<I, F> Debug for itertools::adaptors::Update<I, F>where
I: Debug,
impl<I, F> Debug for FormatWith<'_, I, F>
impl<I, F> Debug for KMergeBy<I, F>
impl<I, F> Debug for PadUsing<I, F>where
I: Debug,
impl<I, F> Debug for TakeWhileInclusive<I, F>
impl<I, F> Debug for rayon::iter::flat_map::FlatMap<I, F>where
I: Debug,
impl<I, F> Debug for FlatMapIter<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::inspect::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::map::Map<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::update::Update<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for chaos_framework::__core::iter::IntersperseWith<I, G>
impl<I, ID, F> Debug for Fold<I, ID, F>where
I: Debug,
impl<I, ID, F> Debug for FoldChunks<I, ID, F>where
I: Debug,
impl<I, INIT, F> Debug for MapInit<I, INIT, F>where
I: Debug,
impl<I, J> Debug for Diff<I, J>
impl<I, J> Debug for itertools::adaptors::Interleave<I, J>
impl<I, J> Debug for itertools::adaptors::InterleaveShortest<I, J>
impl<I, J> Debug for Product<I, J>
impl<I, J> Debug for itertools::zip_eq_impl::ZipEq<I, J>
impl<I, J> Debug for rayon::iter::interleave::Interleave<I, J>
impl<I, J> Debug for rayon::iter::interleave_shortest::InterleaveShortest<I, J>
impl<I, J, F> Debug for MergeBy<I, J, F>
impl<I, P> Debug for chaos_framework::__core::iter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeWhile<I, P>where
I: Debug,
impl<I, P> Debug for rayon::iter::filter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for rayon::iter::filter_map::FilterMap<I, P>where
I: Debug,
impl<I, P> Debug for rayon::iter::positions::Positions<I, P>where
I: Debug,
impl<I, P> Debug for SkipAnyWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeAnyWhile<I, P>where
I: Debug,
impl<I, St, F> Debug for Scan<I, St, F>
impl<I, T> Debug for TupleCombinations<I, T>
impl<I, T> Debug for CircularTupleWindows<I, T>
impl<I, T> Debug for TupleWindows<I, T>
impl<I, T> Debug for Tuples<I, T>where
I: Debug + Iterator<Item = <T as TupleCollect>::Item>,
T: Debug + HomogeneousTuple,
<T as TupleCollect>::Buffer: Debug,
impl<I, T, E> Debug for FlattenOk<I, T, E>where
I: Iterator<Item = Result<T, E>> + Debug,
T: IntoIterator,
<T as IntoIterator>::IntoIter: Debug,
impl<I, T, F> Debug for MapWith<I, T, F>
impl<I, U> Debug for chaos_framework::__core::iter::Flatten<I>
impl<I, U, F> Debug for chaos_framework::__core::iter::FlatMap<I, U, F>
impl<I, U, F> Debug for FoldWith<I, U, F>
impl<I, U, F> Debug for FoldChunksWith<I, U, F>
impl<I, U, F> Debug for TryFoldWith<I, U, F>
impl<I, V, F> Debug for UniqueBy<I, V, F>
impl<I, const N: usize> Debug for ArrayChunks<I, N>
impl<Idx> Debug for Clamp<Idx>where
Idx: Debug,
impl<Idx> Debug for chaos_framework::__core::ops::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for chaos_framework::__core::ops::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for chaos_framework::__core::ops::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for chaos_framework::__core::ops::RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for chaos_framework::__core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for chaos_framework::__core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for chaos_framework::__core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for chaos_framework::__core::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<Inner, Value> Debug for Recursive<Inner, Value>
impl<Iter> Debug for IterBridge<Iter>where
Iter: Debug,
impl<K> Debug for alloc::collections::btree::set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Drain<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::IntoIter<K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K> Debug for DirectoryOffset<K>
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, F> Debug for std::collections::hash::set::ExtractIf<'_, K, F>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 std::collections::hash::map::ExtractIf<'_, K, V, F>
impl<K, V, R, F, A> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S> Debug for HashMap<K, V, S>
impl<K, V, S> Debug for AHashMap<K, V, S>
impl<L> Debug for ImageWithAttributesReader<L>where
L: Debug,
impl<L, R> Debug for Either<L, R>
impl<L, R> Debug for IterEither<L, R>
impl<Label, Data, Format> Debug for VerticalSlider<Label, Data, Format>
impl<Label, Format> Debug for AngleSlider<Label, Format>
impl<Layers> Debug for exr::image::Image<Layers>where
Layers: Debug,
impl<O> Debug for F32<O>where
O: ByteOrder,
impl<O> Debug for F64<O>where
O: ByteOrder,
impl<O> Debug for I16<O>where
O: ByteOrder,
impl<O> Debug for I32<O>where
O: ByteOrder,
impl<O> Debug for I64<O>where
O: ByteOrder,
impl<O> Debug for I128<O>where
O: ByteOrder,
impl<O> Debug for Isize<O>where
O: ByteOrder,
impl<O> Debug for U16<O>where
O: ByteOrder,
impl<O> Debug for U32<O>where
O: ByteOrder,
impl<O> Debug for U64<O>where
O: ByteOrder,
impl<O> Debug for U128<O>where
O: ByteOrder,
impl<O> Debug for Usize<O>where
O: ByteOrder,
impl<OnProgress, ReadLayers> Debug for ReadImage<OnProgress, ReadLayers>
impl<P> Debug for EnumeratePixels<'_, P>
impl<P> Debug for EnumeratePixelsMut<'_, P>
impl<P> Debug for EnumerateRows<'_, P>
impl<P> Debug for EnumerateRowsMut<'_, P>
impl<P> Debug for image::images::buffer::Pixels<'_, P>
impl<P> Debug for PixelsMut<'_, P>
impl<P> Debug for Rows<'_, P>
impl<P> Debug for RowsMut<'_, P>
impl<P> Debug for EnumeratePixelsMutPar<'_, P>
impl<P> Debug for EnumeratePixelsPar<'_, P>
impl<P> Debug for PixelsMutPar<'_, P>
impl<P> Debug for PixelsPar<'_, P>
impl<P, Container> Debug for ImageBuffer<P, Container>
impl<PixelStorage, SetPixel, PixelReader, Pixel> Debug for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel>
impl<Pixels, ChannelsDescription> Debug for SpecificChannels<Pixels, ChannelsDescription>
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<R> Debug for BufReader<R>
impl<R> Debug for std::io::Bytes<R>where
R: Debug,
impl<R> Debug for AllChunksReader<R>where
R: Debug,
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 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 HdrDecoder<R>where
R: Debug,
impl<R> Debug for OpenExrDecoder<R>where
R: Debug,
impl<R> Debug for ReadRng<R>where
R: Debug,
impl<R> Debug for BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for Decoder<R>
impl<R, E> Debug for BitReader<R, E>
impl<R, E> Debug for ByteReader<R, E>
impl<R, F> Debug for OnProgressChunksReader<R, F>
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>
impl<R, T> Debug for lock_api::mutex::Mutex<R, T>
impl<R, T> Debug for lock_api::rwlock::RwLock<R, T>
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>
impl<ReadChannels, Sample> Debug for ReadOptionalChannel<ReadChannels, Sample>
impl<ReadChannels, Sample> Debug for ReadRequiredChannel<ReadChannels, Sample>
impl<ReadSamples> Debug for ReadAnyChannels<ReadSamples>where
ReadSamples: Debug,
impl<RecursiveChannels, RecursivePixel> Debug for SpecificChannelsBuilder<RecursiveChannels, RecursivePixel>
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<Sample> Debug for SampleReader<Sample>where
Sample: Debug,
impl<Sample> Debug for SampleWriter<Sample>where
Sample: Debug,
impl<Samples> Debug for Levels<Samples>where
Samples: Debug,
impl<Samples> Debug for AnyChannel<Samples>where
Samples: Debug,
impl<Samples> Debug for AnyChannels<Samples>where
Samples: Debug,
impl<Samples> Debug for RipMaps<Samples>where
Samples: Debug,
impl<SamplesReader> Debug for AnyChannelReader<SamplesReader>where
SamplesReader: Debug,
impl<SamplesReader> Debug for AnyChannelsReader<SamplesReader>where
SamplesReader: Debug,
impl<SamplesReader> Debug for AllLevelsReader<SamplesReader>where
SamplesReader: Debug,
impl<SamplesWriter> Debug for AnyChannelsWriter<SamplesWriter>where
SamplesWriter: Debug,
impl<SamplesWriter> Debug for LevelsWriter<SamplesWriter>where
SamplesWriter: Debug,
impl<Src, Dst> Debug for AlignmentError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for SizeError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for ValidityError<Src, Dst>where
Dst: TryFromBytes + ?Sized,
impl<St, F> Debug for Iterate<St, F>where
St: Debug,
impl<St, F> Debug for Unfold<St, F>where
St: Debug,
impl<Storage> Debug for __BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<T> Debug for TreeNodeId<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 SendTimeoutError<T>
impl<T> Debug for TrySendError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for Steal<T>
impl<T> Debug for FoldWhile<T>where
T: Debug,
impl<T> Debug for MinMaxResult<T>where
T: Debug,
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.
impl<T> Debug for DragDropPayloadPod<T>
impl<T> Debug for CollapsingHeader<T>where
T: Debug,
impl<T> Debug for GlfwReceiver<T>where
T: Debug,
impl<T> Debug for ListBox<T>where
T: Debug,
impl<T> Debug for ProgressBar<T>where
T: Debug,
impl<T> Debug for Textures<T>where
T: Debug,
impl<T> Debug for Cell<T>
impl<T> Debug for chaos_framework::__core::cell::OnceCell<T>where
T: Debug,
impl<T> Debug for chaos_framework::__core::cell::Ref<'_, T>
impl<T> Debug for RefCell<T>
impl<T> Debug for RefMut<'_, T>
impl<T> Debug for SyncUnsafeCell<T>where
T: ?Sized,
impl<T> Debug for UnsafeCell<T>where
T: ?Sized,
impl<T> Debug for Reverse<T>where
T: Debug,
impl<T> Debug for Pending<T>
impl<T> Debug for Ready<T>where
T: Debug,
impl<T> Debug for chaos_framework::__core::iter::Empty<T>
impl<T> Debug for chaos_framework::__core::iter::Once<T>where
T: Debug,
impl<T> Debug for chaos_framework::__core::iter::Rev<T>where
T: Debug,
impl<T> Debug for PhantomContravariant<T>where
T: ?Sized,
impl<T> Debug for PhantomCovariant<T>where
T: ?Sized,
impl<T> Debug for PhantomData<T>where
T: ?Sized,
impl<T> Debug for PhantomInvariant<T>where
T: ?Sized,
impl<T> Debug for Discriminant<T>
impl<T> Debug for ManuallyDrop<T>
impl<T> Debug for NonZero<T>where
T: ZeroablePrimitive + Debug,
impl<T> Debug for Saturating<T>where
T: Debug,
impl<T> Debug for Wrapping<T>where
T: Debug,
impl<T> Debug for Yeet<T>where
T: Debug,
impl<T> Debug for AssertUnwindSafe<T>where
T: Debug,
impl<T> Debug for UnsafePinned<T>where
T: ?Sized,
impl<T> Debug for NonNull<T>where
T: ?Sized,
impl<T> Debug for chaos_framework::__core::result::IntoIter<T>where
T: Debug,
impl<T> Debug for chaos_framework::__core::slice::Iter<'_, T>where
T: Debug,
impl<T> Debug for chaos_framework::__core::slice::IterMut<'_, T>where
T: Debug,
impl<T> Debug for AtomicPtr<T>
target_has_atomic_load_store=ptr only.