Trait grafix_toolbox::uses::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
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 (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
sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");Implementors
impl Debug for Button
impl Debug for grafix_toolbox::events::Event
impl Debug for EventReply
impl Debug for grafix_toolbox::events::Key
impl Debug for grafix_toolbox::uses::FS::Archive::Resource
impl Debug for grafix_toolbox::uses::FS::File::Resource
impl Debug for grafix_toolbox::uses::FS::Text::Resource
impl Debug for grafix_toolbox::uses::asyn::Ordering
impl Debug for ErrorKind
impl Debug for SeekFrom
impl Debug for grafix_toolbox::uses::cmp::Ordering
impl Debug for grafix_toolbox::uses::fmt::Alignment
impl Debug for TryReserveErrorKind
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 BacktraceStatus
impl Debug for VarError
impl Debug for Shutdown
impl Debug for IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for std::net::socket_addr::SocketAddr
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 flume::RecvError
impl Debug for flume::RecvTimeoutError
impl Debug for flume::TryRecvError
impl Debug for SelectError
impl Debug for Action
impl Debug for ClientApiHint
impl Debug for ContextCreationApi
impl Debug for ContextReleaseBehavior
impl Debug for ContextRobustnessHint
impl Debug for CursorMode
impl Debug for glfw::Error
impl Debug for GamepadAxis
impl Debug for GamepadButton
impl Debug for InitError
impl Debug for InitHint
impl Debug for JoystickEvent
impl Debug for JoystickId
impl Debug for MonitorEvent
impl Debug for MouseButton
impl Debug for OpenGlProfileHint
impl Debug for StandardCursor
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 hashbrown::TryReserveError
impl Debug for ColorType
impl Debug for ExtendedColorType
impl Debug for DynamicImage
impl Debug for ImageError
impl Debug for ImageFormatHint
impl Debug for LimitErrorKind
impl Debug for ParameterErrorKind
impl Debug for UnsupportedErrorKind
impl Debug for image::flat::Error
impl Debug for NormalForm
impl Debug for ImageFormat
impl Debug for ImageOutputFormat
impl Debug for FilterType
impl Debug for Level
impl Debug for LevelFilter
impl Debug for TAffine
impl Debug for TGeneral
impl Debug for TProjective
impl Debug for FloatErrorKind
impl Debug for Always
impl Debug for InterfaceIndexOrAddress
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 f16
impl Debug for Mod
impl Debug for Glyph
impl Debug for Model
impl Debug for Environment
impl Debug for Attribute
impl Debug for Index
impl Debug for Fence
impl Debug for GL_TEXTURE_1D
impl Debug for GL_TEXTURE_1D_ARRAY
impl Debug for GL_TEXTURE_2D
impl Debug for GL_TEXTURE_2D_ARRAY
impl Debug for GL_TEXTURE_2D_MULTISAMPLE
impl Debug for GL_TEXTURE_2D_MULTISAMPLE_ARRAY
impl Debug for GL_TEXTURE_3D
impl Debug for GL_TEXTURE_BUFFER
impl Debug for GL_TEXTURE_CUBE_MAP
impl Debug for GL_TEXTURE_CUBE_MAP_ARRAY
impl Debug for RED
impl Debug for RG
impl Debug for RGB
impl Debug for RGBA
impl Debug for TexParam
impl Debug for grafix_toolbox::uses::asyn::io::Empty
impl Debug for grafix_toolbox::uses::asyn::io::Error
impl Debug for grafix_toolbox::uses::asyn::io::Repeat
impl Debug for grafix_toolbox::uses::asyn::io::Sink
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 grafix_toolbox::uses::asyn::Barrier
impl Debug for grafix_toolbox::uses::asyn::Once
impl Debug for CharTryFromError
impl Debug for DecodeUtf16Error
impl Debug for grafix_toolbox::uses::char::EscapeDebug
impl Debug for grafix_toolbox::uses::char::EscapeDefault
impl Debug for grafix_toolbox::uses::char::EscapeUnicode
impl Debug for ParseCharError
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for Arguments<'_>
impl Debug for grafix_toolbox::uses::fmt::Error
impl Debug for SipHasher
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 alloc::string::Drain<'_>
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 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 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 ParseBoolError
impl Debug for Utf8Error
impl Debug for Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for Utf8Chunks<'_>
impl Debug for Context<'_>
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for DefaultHasher
impl Debug for std::collections::hash::map::RandomState
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 OsStr
impl Debug for OsString
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for IntoIncoming
impl Debug for std::net::tcp::TcpListener
impl Debug for std::net::tcp::TcpStream
impl Debug for std::net::udp::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 std::os::unix::net::datagram::UnixDatagram
impl Debug for std::os::unix::net::listener::UnixListener
impl Debug for std::os::unix::net::stream::UnixStream
impl Debug for UCred
impl Debug for std::process::Child
impl Debug for std::process::ChildStderr
impl Debug for std::process::ChildStdin
impl Debug for std::process::ChildStdout
impl Debug for std::process::Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for Stdio
impl Debug for std::sync::barrier::BarrierWaitResult
impl Debug for Condvar
impl Debug for WaitTimeoutResult
impl Debug for std::sync::mpsc::RecvError
impl Debug for OnceState
impl Debug for SplicedStr
impl Debug for getrandom::error::Error
impl Debug for GLFWgamepadstate
impl Debug for GLFWgammaramp
impl Debug for GLFWimage
impl Debug for GLFWvidmode
impl Debug for glfw::Cursor
impl Debug for DebugAliases<MouseButton>
impl Debug for GamepadState
impl Debug for GammaRamp
impl Debug for Glfw
impl Debug for Joystick
impl Debug for JoystickHats
impl Debug for Modifiers
impl Debug for Monitor
impl Debug for PixelImage
impl Debug for RenderContext
impl Debug for Version
impl Debug for VidMode
impl Debug for Window
impl Debug for bf16
impl Debug for Delay
impl Debug for DecodingError
impl Debug for EncodingError
impl Debug for LimitError
impl Debug for ParameterError
impl Debug for UnsupportedError
impl Debug for SampleLayout
impl Debug for Progress
impl Debug for LimitSupport
impl Debug for Limits
impl Debug for Rect
impl Debug for ParseLevelError
impl Debug for SetLoggerError
impl Debug for ShapeConstraint
impl Debug for DefaultAllocator
impl Debug for Dynamic
impl Debug for EuclideanNorm
impl Debug for LpNorm
impl Debug for UniformNorm
impl Debug for Init
impl Debug for Uninit
impl Debug for ParseRatioError
impl Debug for num_traits::ParseFloatError
impl Debug for SockAddr
impl Debug for Socket
impl Debug for SockRef<'_>
impl Debug for Domain
impl Debug for Protocol
impl Debug for RecvFlags
impl Debug for TcpKeepalive
impl Debug for Type
impl Debug for ATerm
impl Debug for B0
impl Debug for B1
impl Debug for Z0
impl Debug for Equal
impl Debug for Greater
impl Debug for Less
impl Debug for UTerm
impl Debug for Assume
impl Debug for RangeFull
impl Debug for Components<'_>
impl Debug for Display<'_>
impl Debug for grafix_toolbox::uses::path::Iter<'_>
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for grafix_toolbox::uses::ptr::Alignment
impl Debug for CachedStr
impl Debug for Path
impl Debug for grafix_toolbox::uses::sync::fs::DirBuilder
impl Debug for grafix_toolbox::uses::sync::fs::DirEntry
impl Debug for grafix_toolbox::uses::sync::fs::File
impl Debug for FileTimes
impl Debug for FileType
impl Debug for grafix_toolbox::uses::sync::fs::Metadata
impl Debug for grafix_toolbox::uses::sync::fs::OpenOptions
impl Debug for Permissions
impl Debug for grafix_toolbox::uses::sync::fs::ReadDir
impl Debug for BorrowedBuf<'_>
impl Debug for grafix_toolbox::uses::sync::io::Empty
impl Debug for grafix_toolbox::uses::sync::io::Repeat
impl Debug for grafix_toolbox::uses::sync::io::Sink
impl Debug for Stderr
impl Debug for StderrLock<'_>
impl Debug for Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdout
impl Debug for StdoutLock<'_>
impl Debug for WriterPanicked
impl Debug for AccessError
impl Debug for Builder
impl Debug for Scope<'_, '_>
impl Debug for Thread
impl Debug for ThreadId
impl Debug for Duration
impl Debug for Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for TryFromFloatSecsError
impl Debug for AHasher
impl Debug for AndroidNdkHandle
impl Debug for AppKitHandle
impl Debug for AtomicWaker
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for CheckedCastError
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for Command
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for Event
impl Debug for Event
impl Debug for EventListener
impl Debug for File
impl Debug for FinderBuilder
impl Debug for HaikuHandle
impl Debug for Handle
impl Debug for Incoming<'_>
impl Debug for Incoming<'_>
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for OpenOptions
impl Debug for OrbitalHandle
impl Debug for Parker
impl Debug for Pcg64
impl Debug for PodCastError
impl Debug for Poller
impl Debug for PopError
impl Debug for Prefilter
impl Debug for RandomState
impl Debug for RawWindowHandle
impl Debug for ReadDir
impl Debug for RecvError
impl Debug for Rng
impl Debug for Runnable
impl Debug for Semaphore
impl Debug for SemaphoreGuardArc
impl Debug for SigId
impl Debug for SignalOnly
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for Timer
impl Debug for TryRecvError
impl Debug for UdpSocket
impl Debug for UiKitHandle
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for Unparker
impl Debug for WaylandHandle
impl Debug for WebHandle
impl Debug for WideBoolF32x4
impl Debug for WideBoolF32x8
impl Debug for WideBoolF64x4
impl Debug for WideF32x4
impl Debug for WideF32x8
impl Debug for WideF64x4
impl Debug for Win32Handle
impl Debug for WinRtHandle
impl Debug for WithRawSiginfo
impl Debug for WyRand
impl Debug for XcbHandle
impl Debug for XlibHandle
impl Debug for YieldNow
impl Debug for dyn Any + 'static
impl Debug for dyn Any + Send + 'static
impl Debug for dyn Any + Sync + Send + 'static
impl Debug for f32x4
impl Debug for f32x8
impl Debug for f64x2
impl Debug for f64x4
impl Debug for i8x16
impl Debug for i8x32
impl Debug for i16x8
impl Debug for i16x16
impl Debug for i32x4
impl Debug for i32x8
impl Debug for i64x2
impl Debug for i64x4
impl Debug for m128
impl Debug for m128d
impl Debug for m128i
impl Debug for m256
impl Debug for m256d
impl Debug for m256i
impl Debug for u8x16
impl Debug for u16x8
impl Debug for u32x4
impl Debug for u32x8
impl Debug for u64x2
impl Debug for u64x4
impl<'a> Debug for WindowMode<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for Demand<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for Location<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for core::str::iter::Bytes<'a>
impl<'a> Debug for 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 SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for CharSearcher<'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 CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'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 MaybeUninitSlice<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for Executor<'a>
impl<'a> Debug for LocalExecutor<'a>
impl<'a> Debug for SemaphoreGuard<'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, 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, I> Debug for image::image::Pixels<'a, I>where
I: 'a + Debug + ?Sized,
impl<'a, I> Debug for ByRefSized<'a, I>where
I: 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, K, F> Debug for std::collections::hash::set::DrainFilter<'a, K, F>where
F: FnMut(&K) -> bool,
impl<'a, K, V, F> Debug for std::collections::hash::map::DrainFilter<'a, K, V, F>where
F: FnMut(&K, &mut V) -> bool,
impl<'a, Message> Debug for FlushedMessages<'a, Message>where
Message: Debug + Send,
impl<'a, P> Debug for MatchIndices<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, P> Debug for 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 SplitTerminator<'a, P>where
P: Pattern<'a>,
<P as Pattern<'a>>::Searcher: Debug,
impl<'a, R> Debug for FillBuf<'a, R>where
R: Debug + ?Sized,
impl<'a, R> Debug for ReadExactFuture<'a, R>where
R: Debug + Unpin + ?Sized,
impl<'a, R> Debug for ReadFuture<'a, R>where
R: Debug + Unpin + ?Sized,
impl<'a, R> Debug for ReadLineFuture<'a, R>where
R: Debug + Unpin + ?Sized,
impl<'a, R> Debug for ReadToEndFuture<'a, R>where
R: Debug + Unpin + ?Sized,
impl<'a, R> Debug for ReadToStringFuture<'a, R>where
R: Debug + Unpin + ?Sized,
impl<'a, R> Debug for ReadUntilFuture<'a, R>where
R: Debug + Unpin + ?Sized,
impl<'a, R> Debug for ReadVectoredFuture<'a, R>where
R: Debug + Unpin + ?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, 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 SeekFuture<'a, S>where
S: Debug + Unpin + ?Sized,
impl<'a, S> Debug for NextFuture<'a, S>where
S: Debug + ?Sized,
impl<'a, S> Debug for NthFuture<'a, S>where
S: Debug + ?Sized,
impl<'a, S> Debug for TryNextFuture<'a, S>where
S: Debug + ?Sized,
impl<'a, S, F> Debug for FindMapFuture<'a, S, F>where
S: Debug + ?Sized,
F: Debug,
impl<'a, S, F> Debug for TryForEachFuture<'a, S, F>where
S: Debug + ?Sized,
F: Debug,
impl<'a, S, F, B> Debug for TryFoldFuture<'a, S, F, B>where
S: Debug,
F: Debug,
B: Debug,
impl<'a, S, P> Debug for AllFuture<'a, S, P>where
S: Debug + ?Sized,
P: Debug,
impl<'a, S, P> Debug for AnyFuture<'a, S, P>where
S: Debug + ?Sized,
P: Debug,
impl<'a, S, P> Debug for FindFuture<'a, S, P>where
S: Debug + ?Sized,
P: Debug,
impl<'a, S, P> Debug for PositionFuture<'a, S, P>where
S: Debug + ?Sized,
P: 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 std::sync::mpsc::Iter<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for TryIter<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for Selector<'a, T>where
T: 'a,
impl<'a, T> Debug for flume::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for Chunks<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for ChunksExact<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for ChunksExactMut<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for ChunksMut<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for RChunks<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for RChunksExact<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for RChunksExactMut<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for RChunksMut<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for Windows<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for MutexGuard<'a, T>where
T: Debug + ?Sized,
impl<'a, T> Debug for Recv<'a, T>where
T: Debug,
impl<'a, T> Debug for Send<'a, T>where
T: Debug,
impl<'a, T> Debug for SpinMutexGuard<'a, T>where
T: Debug + ?Sized,
impl<'a, T> Debug for VacantEntry<'a, T>where
T: Debug,
impl<'a, T, F, A> Debug for alloc::vec::drain_filter::DrainFilter<'a, T, F, A>where
T: Debug,
F: Debug + FnMut(&mut T) -> bool,
A: Debug + Allocator,
impl<'a, T, P> Debug for GroupBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for GroupByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, R, C, RStride, CStride> Debug for SliceStorage<'a, T, R, C, RStride, CStride>where
T: Debug,
R: Debug + Dim,
C: Debug + Dim,
RStride: Debug + Dim,
CStride: Debug + Dim,
impl<'a, T, R, C, RStride, CStride> Debug for SliceStorageMut<'a, T, R, C, RStride, CStride>where
T: Debug,
R: Debug + Dim,
C: Debug + Dim,
RStride: Debug + Dim,
CStride: Debug + Dim,
impl<'a, T, R, C, S> Debug for ColumnIter<'a, T, R, C, S>where
T: Debug,
R: Debug + Dim,
C: Debug + Dim,
S: Debug + RawStorage<T, R, C>,
impl<'a, T, R, C, S> Debug for ColumnIterMut<'a, T, R, C, S>where
T: Debug,
R: Debug + Dim,
C: Debug + Dim,
S: Debug + RawStorageMut<T, R, C>,
impl<'a, T, R, C, S> Debug for MatrixIter<'a, T, R, C, S>where
T: Debug,
R: Debug + Dim,
C: Debug + Dim,
S: 'a + Debug + RawStorage<T, R, C>,
<S as RawStorage<T, R, C>>::RStride: Debug,
<S as RawStorage<T, R, C>>::CStride: Debug,
impl<'a, T, R, C, S> Debug for MatrixIterMut<'a, T, R, C, S>where
T: Debug,
R: Debug + Dim,
C: Debug + Dim,
S: 'a + Debug + RawStorageMut<T, R, C>,
<S as RawStorage<T, R, C>>::RStride: Debug,
<S as RawStorage<T, R, C>>::CStride: Debug,
impl<'a, T, R, C, S> Debug for RowIter<'a, T, R, C, S>where
T: Debug,
R: Debug + Dim,
C: Debug + Dim,
S: Debug + RawStorage<T, R, C>,
impl<'a, T, R, C, S> Debug for RowIterMut<'a, T, R, C, S>where
T: Debug,
R: Debug + Dim,
C: Debug + Dim,
S: Debug + RawStorageMut<T, R, C>,
impl<'a, T, const N: usize> Debug for grafix_toolbox::uses::slice::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, W> Debug for CloseFuture<'a, W>where
W: Debug + Unpin + ?Sized,
impl<'a, W> Debug for FlushFuture<'a, W>where
W: Debug + Unpin + ?Sized,
impl<'a, W> Debug for WriteAllFuture<'a, W>where
W: Debug + Unpin + ?Sized,
impl<'a, W> Debug for WriteFuture<'a, W>where
W: Debug + Unpin + ?Sized,
impl<'a, W> Debug for WriteVectoredFuture<'a, W>where
W: Debug + Unpin + ?Sized,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'f> Debug for VaListImpl<'f>
impl<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'n> Debug for Finder<'n>
impl<'n> Debug for FinderRev<'n>
impl<'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<'scope, T> Debug for ScopedJoinHandle<'scope, T>
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for ExtendedGcd<A>where
A: Debug,
impl<A> Debug for grafix_toolbox::uses::iter::Repeat<A>where
A: Debug,
impl<A, B> Debug for grafix_toolbox::uses::iter::Chain<A, B>where
A: Debug,
B: Debug,
impl<A, B> Debug for grafix_toolbox::uses::iter::Zip<A, B>where
A: Debug,
B: Debug,
impl<A, B> Debug for Zip<A, B>where
A: Debug + Stream,
B: Debug,
<A as Stream>::Item: Debug,
impl<B> Debug for Cow<'_, B>where
B: Debug + ToOwned + ?Sized,
<B as ToOwned>::Owned: Debug,
impl<B> Debug for grafix_toolbox::uses::sync::io::Lines<B>where
B: Debug,
impl<B> Debug for grafix_toolbox::uses::sync::io::Split<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>where
B: Debug,
C: Debug,
impl<Buffer> Debug for 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<D> Debug for PermutationSequence<D>where
D: Debug + Dim,
DefaultAllocator: Allocator<(usize, usize), D, Const<1>>,
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for Report<E>where
Report<E>: Display,
impl<E> Debug for ParseComplexError<E>where
E: Debug,
impl<E> Debug for Pending<E>where
E: Debug + Exfiltrator,
impl<E> Debug for SignalsInfo<E>where
E: Debug + Exfiltrator,
<E as Exfiltrator>::Storage: Debug,
impl<F1, F2> Debug for Or<F1, F2>where
F1: Debug,
F2: Debug,
impl<F1, F2> Debug for Race<F1, F2>where
F1: Debug,
F2: Debug,
impl<F1, F2> Debug for TryZip<F1, F2>where
F1: Debug + Future,
F2: Debug + Future,
<F1 as Future>::Output: Debug,
<F2 as Future>::Output: Debug,
impl<F1, F2> Debug for Zip<F1, F2>where
F1: Debug + Future,
F2: Debug + Future,
<F1 as Future>::Output: Debug,
<F2 as Future>::Output: Debug,
impl<F> Debug for core::future::poll_fn::PollFn<F>
impl<F> Debug for CharPredicateSearcher<'_, F>where
F: FnMut(char) -> bool,
impl<F> Debug for FromFn<F>
impl<F> Debug for OnceWith<F>where
F: Debug,
impl<F> Debug for grafix_toolbox::uses::iter::RepeatWith<F>where
F: Debug,
impl<F> Debug for CatchUnwind<F>where
F: Debug,
impl<F> Debug for PollFn<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for PollOnce<F>
impl<F> Debug for RepeatWith<F>where
F: Debug,
impl<Fn, UserData> Debug for Callback<Fn, UserData>where
Fn: Debug,
UserData: Debug,
impl<H> Debug for BuildHasherDefault<H>
impl<I> Debug for DecodeUtf16<I>where
I: Debug + Iterator<Item = u16>,
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for grafix_toolbox::uses::iter::Cloned<I>where
I: Debug,
impl<I> Debug for grafix_toolbox::uses::iter::Copied<I>where
I: Debug,
impl<I> Debug for grafix_toolbox::uses::iter::Cycle<I>where
I: Debug,
impl<I> Debug for grafix_toolbox::uses::iter::Enumerate<I>where
I: Debug,
impl<I> Debug for grafix_toolbox::uses::iter::Fuse<I>where
I: Debug,
impl<I> Debug for Intersperse<I>where
I: Debug + Iterator,
<I as Iterator>::Item: Clone + Debug,
impl<I> Debug for Peekable<I>where
I: Debug + Iterator,
<I as Iterator>::Item: Debug,
impl<I> Debug for grafix_toolbox::uses::iter::Skip<I>where
I: Debug,
impl<I> Debug for grafix_toolbox::uses::iter::StepBy<I>where
I: Debug,
impl<I> Debug for grafix_toolbox::uses::iter::Take<I>where
I: Debug,
impl<I> Debug for Iter<I>where
I: Debug,
impl<I, F> Debug for grafix_toolbox::uses::iter::FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for grafix_toolbox::uses::iter::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for grafix_toolbox::uses::iter::Map<I, F>where
I: Debug,
impl<I, G> Debug for IntersperseWith<I, G>where
I: Iterator + Debug,
<I as Iterator>::Item: Debug,
G: Debug,
impl<I, P> Debug for grafix_toolbox::uses::iter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for grafix_toolbox::uses::iter::SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for grafix_toolbox::uses::iter::TakeWhile<I, P>where
I: Debug,
impl<I, St, F> Debug for grafix_toolbox::uses::iter::Scan<I, St, F>where
I: Debug,
St: Debug,
impl<I, U> Debug for grafix_toolbox::uses::iter::Flatten<I>where
I: Debug + Iterator,
<I as Iterator>::Item: IntoIterator<IntoIter = U, Item = <U as Iterator>::Item>,
U: Debug + Iterator,
impl<I, U, F> Debug for grafix_toolbox::uses::iter::FlatMap<I, U, F>where
I: Debug,
U: IntoIterator,
<U as IntoIterator>::IntoIter: Debug,
impl<I, const N: usize> Debug for grafix_toolbox::uses::iter::ArrayChunks<I, N>where
I: Debug + Iterator,
<I as Iterator>::Item: Debug,
impl<Idx> Debug for grafix_toolbox::uses::ops::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeToInclusive<Idx>where
Idx: Debug,
impl<K> Debug for 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 hashbrown::set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for hashbrown::set::Drain<'_, K, A>where
K: Debug,
A: Allocator + Clone,
impl<K, A> Debug for hashbrown::set::IntoIter<K, A>where
K: Debug,
A: Allocator + Clone,
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<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::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 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 hashbrown::map::Iter<'_, K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for hashbrown::map::IterMut<'_, K, V>where
K: Debug,
V: Debug,
impl<K, V> Debug for hashbrown::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for hashbrown::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashbrown::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V, A> Debug for 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 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 hashbrown::map::Drain<'_, K, V, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for hashbrown::map::IntoIter<K, V, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for hashbrown::map::IntoKeys<K, V, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for hashbrown::map::IntoValues<K, V, A>where
V: Debug,
A: Allocator + Clone,
impl<K, V, A> Debug for BTreeMap<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: 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::HashMap<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 hashbrown::map::Entry<'_, K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for hashbrown::map::RawEntryMut<'_, K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for hashbrown::map::OccupiedEntry<'_, K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for hashbrown::map::OccupiedError<'_, K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for hashbrown::map::RawEntryBuilder<'_, K, V, S, A>where
A: Allocator + Clone,
impl<K, V, S, A> Debug for hashbrown::map::RawEntryBuilderMut<'_, K, V, S, A>where
A: Allocator + Clone,
impl<K, V, S, A> Debug for hashbrown::map::RawOccupiedEntryMut<'_, K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for hashbrown::map::RawVacantEntryMut<'_, K, V, S, A>where
A: Allocator + Clone,
impl<K, V, S, A> Debug for hashbrown::map::VacantEntry<'_, K, V, S, A>where
K: Debug,
A: Allocator + Clone,
impl<K, V, S, A> Debug for grafix_toolbox::uses::HashMap<K, V, S, A>where
K: Debug,
V: Debug,
A: Allocator + Clone,
impl<N> Debug for AutoBoolSimd<N>where
N: Debug,
impl<N> Debug for AutoSimd<N>where
N: Debug,
impl<P> Debug for Pin<P>where
P: Debug,
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 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<P, Container> Debug for ImageBuffer<P, Container>where
P: Debug + Pixel,
Container: Debug,
impl<R1, R2> Debug for grafix_toolbox::uses::asyn::io::Chain<R1, R2>where
R1: Debug,
R2: Debug,
impl<R> Debug for grafix_toolbox::uses::asyn::io::BufReader<R>where
R: AsyncRead + Debug,
impl<R> Debug for grafix_toolbox::uses::asyn::io::Bytes<R>where
R: Debug,
impl<R> Debug for grafix_toolbox::uses::asyn::io::Lines<R>where
R: Debug,
impl<R> Debug for grafix_toolbox::uses::asyn::io::Split<R>where
R: Debug,
impl<R> Debug for grafix_toolbox::uses::asyn::io::Take<R>where
R: Debug,
impl<R> Debug for grafix_toolbox::uses::sync::io::BufReader<R>where
R: Debug,
impl<R> Debug for grafix_toolbox::uses::sync::io::Bytes<R>where
R: Debug,
impl<R, E> Debug for SignalDelivery<R, E>where
R: Debug,
E: Debug + Exfiltrator,
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<Ret, T> Debug for fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C-unwind" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C-unwind" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C-unwind" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C-unwind" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<S1, S2> Debug for Or<S1, S2>where
S1: Debug,
S2: Debug,
impl<S1, S2> Debug for Race<S1, S2>where
S1: Debug,
S2: Debug,
impl<S> Debug for BlockOn<S>where
S: Debug,
impl<S> Debug for Cloned<S>where
S: Debug,
impl<S> Debug for Copied<S>where
S: Debug,
impl<S> Debug for CountFuture<S>where
S: Debug + ?Sized,
impl<S> Debug for Cycle<S>where
S: Debug,
impl<S> Debug for Enumerate<S>where
S: Debug,
impl<S> Debug for Flatten<S>where
S: Debug + Stream,
<S as Stream>::Item: Debug,
impl<S> Debug for Fuse<S>where
S: Debug,
impl<S> Debug for LastFuture<S>where
S: Debug + Stream,
<S as Stream>::Item: Debug,
impl<S> Debug for Skip<S>where
S: Debug,
impl<S> Debug for StepBy<S>where
S: Debug,
impl<S> Debug for Take<S>where
S: Debug,
impl<S, C> Debug for CollectFuture<S, C>where
S: Debug,
C: Debug,
impl<S, C> Debug for TryCollectFuture<S, C>where
S: Debug,
C: Debug,
impl<S, F> Debug for FilterMap<S, F>where
S: Debug,
F: Debug,
impl<S, F> Debug for ForEachFuture<S, F>where
S: Debug,
F: Debug,
impl<S, F> Debug for Inspect<S, F>where
S: Debug,
F: Debug,
impl<S, F> Debug for Map<S, F>where
S: Debug,
F: Debug,
impl<S, F, Fut> Debug for Then<S, F, Fut>where
S: Debug,
F: Debug,
Fut: Debug,
impl<S, F, T> Debug for FoldFuture<S, F, T>where
S: Debug,
F: Debug,
T: Debug,
impl<S, FromA, FromB> Debug for UnzipFuture<S, FromA, FromB>where
S: Debug,
FromA: Debug,
FromB: Debug,
impl<S, P> Debug for Filter<S, P>where
S: Debug,
P: Debug,
impl<S, P> Debug for SkipWhile<S, P>where
S: Debug,
P: Debug,
impl<S, P> Debug for TakeWhile<S, P>where
S: Debug,
P: Debug,
impl<S, P, B> Debug for PartitionFuture<S, P, B>where
S: Debug,
P: Debug,
B: Debug,
impl<S, St, F> Debug for Scan<S, St, F>where
S: Debug,
St: Debug,
F: Debug,
impl<S, U> Debug for Chain<S, U>where
S: Debug,
U: Debug,
impl<S, U, F> Debug for FlatMap<S, U, F>where
S: Debug,
U: Debug,
F: Debug,
impl<S: Debug, F: Debug> Debug for VTex2d<S, F>
impl<S: Debug, F: Debug> Debug for Image<S, F>
impl<S: Debug, F: Debug, T: Debug + TexType> Debug for Tex<S, F, T>
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 SendTimeoutError<T>
impl<T> Debug for flume::TrySendError<T>
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &Twhere
T: Debug + ?Sized,
impl<T> Debug for &mut Twhere
T: Debug + ?Sized,
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug + ?Sized,
This trait is implemented for tuples up to twelve items long.