devela::text::fmt

Trait Debug

1.0.0 · Source
pub trait Debug {
    // Required method
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> ;
}
Expand description

core ? formatting.

Re-exported from core::fmt:: .


? 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 · Source

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§

Source§

impl Debug for devela::_core::ascii::Char

Source§

impl Debug for DebugAsHex

Source§

impl Debug for devela::_core::fmt::Sign

1.7.0 · Source§

impl Debug for IpAddr

Source§

impl Debug for Ipv6MulticastScope

1.0.0 · Source§

impl Debug for devela::_core::net::SocketAddr

Source§

impl Debug for GetManyMutError

Source§

impl Debug for SearchStep

Source§

impl Debug for TryReserveErrorKind

1.0.0 · Source§

impl Debug for VarError

1.0.0 · Source§

impl Debug for devela::_dep::_std::io::SeekFrom

1.0.0 · Source§

impl Debug for devela::_dep::_std::net::Shutdown

Source§

impl Debug for AncillaryError

Source§

impl Debug for BacktraceStyle

1.12.0 · Source§

impl Debug for RecvTimeoutError

1.0.0 · Source§

impl Debug for TryRecvError

§

impl Debug for devela::_dep::bumpalo::collections::CollectionAllocErr

§

impl Debug for CheckedCastError

§

impl Debug for PodCastError

§

impl Debug for devela::_dep::crossterm::event::Event

§

impl Debug for devela::_dep::crossterm::event::KeyCode

§

impl Debug for KeyEventKind

§

impl Debug for MediaKeyCode

§

impl Debug for ModifierKeyCode

§

impl Debug for devela::_dep::crossterm::event::MouseButton

§

impl Debug for MouseEventKind

§

impl Debug for Attribute

§

impl Debug for Color

§

impl Debug for Colored

§

impl Debug for ClearType

§

impl Debug for devela::_dep::hashbrown::TryReserveError

§

impl Debug for Era

§

impl Debug for devela::_dep::jiff::civil::Weekday

§

impl Debug for RoundMode

§

impl Debug for Unit

§

impl Debug for Designator

§

impl Debug for devela::_dep::jiff::fmt::friendly::Direction

§

impl Debug for FractionalUnit

§

impl Debug for Spacing

§

impl Debug for Meridiem

§

impl Debug for PiecesOffset

§

impl Debug for AmbiguousOffset

§

impl Debug for Disambiguation

§

impl Debug for Dst

§

impl Debug for OffsetConflict

§

impl Debug for devela::_dep::kira::backend::cpal::Error

§

impl Debug for ClockSpeed

§

impl Debug for DistortionKind

§

impl Debug for EqFilterKind

§

impl Debug for devela::_dep::kira::effect::filter::FilterMode

§

impl Debug for Easing

§

impl Debug for StartTime

§

impl Debug for WhenToStart

§

impl Debug for Waveform

§

impl Debug for EndPosition

§

impl Debug for FromFileError

§

impl Debug for PlaybackPosition

§

impl Debug for PlaybackState

§

impl Debug for TrackPlaybackState

Source§

impl Debug for devela::_dep::log::Level

Source§

impl Debug for devela::_dep::log::LevelFilter

§

impl Debug for PrefilterConfig

§

impl Debug for ConnectErrorKind

§

impl Debug for Ignore

§

impl Debug for PortInfoError

§

impl Debug for devela::_dep::midir::SendError

§

impl Debug for AppleGfxApi

§

impl Debug for LinuxBackend

§

impl Debug for LinuxX11Gl

§

impl Debug for WebGLVersion

§

impl Debug for Backend

§

impl Debug for BlendFactor

§

impl Debug for BlendValue

§

impl Debug for BufferType

§

impl Debug for BufferUsage

§

impl Debug for CompareFunc

§

impl Debug for Comparison

§

impl Debug for CullFace

§

impl Debug for CursorIcon

§

impl Debug for Equation

§

impl Debug for devela::_dep::miniquad::FilterMode

§

impl Debug for FrontFaceOrder

§

impl Debug for devela::_dep::miniquad::KeyCode

§

impl Debug for MipmapFilterMode

§

impl Debug for devela::_dep::miniquad::MouseButton

§

impl Debug for PrimitiveType

§

impl Debug for RawId

§

impl Debug for ShaderError

§

impl Debug for ShaderType

§

impl Debug for StencilOp

§

impl Debug for TextureAccess

§

impl Debug for TextureFormat

§

impl Debug for TextureKind

§

impl Debug for TextureWrap

§

impl Debug for TouchPhase

§

impl Debug for UniformType

§

impl Debug for VertexFormat

§

impl Debug for VertexStep

§

impl Debug for devela::_dep::miniquad::fs::Error

§

impl Debug for IOURING_OP

§

impl Debug for perf_event_sample_format_t

§

impl Debug for ElementType

§

impl Debug for PyGILState_STATE

§

impl Debug for PySendResult

§

impl Debug for _PyStatus_TYPE

§

impl Debug for CompareOp

§

impl Debug for Associativity

§

impl Debug for CacheInfoType

§

impl Debug for CacheType

§

impl Debug for DatType

§

impl Debug for ExtendedRegisterStateLocation

§

impl Debug for ExtendedRegisterType

§

impl Debug for Hypervisor

§

impl Debug for SgxSectionInfo

§

impl Debug for TopologyType

§

impl Debug for Yield

§

impl Debug for Panic

§

impl Debug for ArchivedIpAddr

§

impl Debug for ArchivedSocketAddr

§

impl Debug for BufferSize

§

impl Debug for BuildStreamError

§

impl Debug for DefaultStreamConfigError

§

impl Debug for DeviceNameError

§

impl Debug for HostId

§

impl Debug for PauseStreamError

§

impl Debug for PlayStreamError

§

impl Debug for devela::_dep::rodio::cpal::SampleFormat

§

impl Debug for devela::_dep::rodio::cpal::StreamError

§

impl Debug for SupportedBufferSize

§

impl Debug for SupportedStreamConfigsError

§

impl Debug for DecoderError

§

impl Debug for Mp4Type

§

impl Debug for devela::_dep::rodio::decoder::symphonia::SeekError

§

impl Debug for DevicesError

§

impl Debug for PlayError

§

impl Debug for devela::_dep::rodio::StreamError

§

impl Debug for devela::_dep::rodio::source::Function

§

impl Debug for devela::_dep::rodio::source::SeekError

§

impl Debug for devela::_dep::rustix::fs::Advice

§

impl Debug for devela::_dep::rustix::fs::FileType

§

impl Debug for FlockOperation

§

impl Debug for devela::_dep::rustix::fs::SeekFrom

§

impl Debug for IoringMsgringCmds

§

impl Debug for IoringOp

§

impl Debug for IoringRegisterOp

§

impl Debug for IoringRestrictionOp

§

impl Debug for devela::_dep::rustix::ioctl::Direction

§

impl Debug for devela::_dep::rustix::mm::Advice

§

impl Debug for devela::_dep::rustix::net::Shutdown

§

impl Debug for SocketAddrAny

§

impl Debug for Timeout

§

impl Debug for DumpableBehavior

§

impl Debug for EndianMode

§

impl Debug for FloatingPointMode

§

impl Debug for MachineCheckMemoryCorruptionKillPolicy

§

impl Debug for MembarrierCommand

§

impl Debug for PTracer

§

impl Debug for Resource

§

impl Debug for devela::_dep::rustix::process::Signal

§

impl Debug for SpeculationFeature

§

impl Debug for TimeStampCounterReadability

§

impl Debug for TimingMethod

§

impl Debug for VirtualMemoryMapAddress

§

impl Debug for RebootCommand

§

impl Debug for Action

§

impl Debug for OptionalActions

§

impl Debug for QueueSelector

§

impl Debug for Capability

§

impl Debug for devela::_dep::rustix::thread::ClockId

§

impl Debug for CoreSchedulingScope

§

impl Debug for FutexOperation

§

impl Debug for LinkNameSpaceType

§

impl Debug for NanosleepRelativeResult

§

impl Debug for SecureComputingMode

§

impl Debug for SysCallUserDispatchFastSwitch

§

impl Debug for WakeOp

§

impl Debug for WakeOpCmp

§

impl Debug for TimerfdClockId

§

impl Debug for devela::_dep::symphonia::core::audio::Layout

§

impl Debug for VerificationCheck

§

impl Debug for devela::_dep::symphonia::core::errors::Error

§

impl Debug for SeekErrorKind

§

impl Debug for SeekMode

§

impl Debug for SeekSearchResult

§

impl Debug for ColorMode

§

impl Debug for devela::_dep::symphonia::core::meta::Limit

§

impl Debug for StandardTagKey

§

impl Debug for StandardVisualKey

§

impl Debug for devela::_dep::symphonia::core::meta::Value

§

impl Debug for devela::_dep::symphonia::core::sample::SampleFormat

§

impl Debug for DiskKind

§

impl Debug for ProcessStatus

§

impl Debug for devela::_dep::sysinfo::Signal

§

impl Debug for ThreadKind

§

impl Debug for UpdateKind

§

impl Debug for GraphemeIncomplete

§

impl Debug for Endianness

§

impl Debug for devela::_dep::winnow::error::ErrorKind

§

impl Debug for Needed

§

impl Debug for StrContext

§

impl Debug for StrContextValue

§

impl Debug for CompareResult

Source§

impl Debug for ExampleEnumIntU8

Available on doc only.
Source§

impl Debug for AngleDirection

Available on crate feature geom only.
Source§

impl Debug for AngleKind

Available on crate feature geom only.
Source§

impl Debug for AudioError

Available on crate feature audio only.
1.65.0 · Source§

impl Debug for BacktraceStatus

Source§

impl Debug for ColorError

Available on crate feature color only.
Source§

impl Debug for CompressionMode

Source§

impl Debug for DrawError

Available on crate feature draw only.
Source§

impl Debug for EncodingMode

1.28.0 · Source§

impl Debug for devela::all::FmtAlignment

Source§

impl Debug for FontError

Available on crate feature font only.
Source§

impl Debug for ImageError

Available on crate feature image only.
1.0.0 · Source§

impl Debug for devela::all::IoErrorKind

Source§

impl Debug for MediaError

Available on media·· only.
Source§

impl Debug for MidiError

Available on crate feature midi only.
Source§

impl Debug for NotAvailable

Source§

impl Debug for WaveletUnitRole

Available on crate feature wave only.
1.34.0 · Source§

impl Debug for Infallible

Source§

impl Debug for DataNotEnough

Source§

impl Debug for MismatchedBounds

Source§

impl Debug for PartialSpace

1.16.0 · Source§

impl Debug for c_void

1.0.0 · Source§

impl Debug for FpCategory

Source§

impl Debug for NumError

1.0.0 · Source§

impl Debug for devela::num::Ordering

Source§

impl Debug for devela::num::Sign

Source§

impl Debug for UnitBi

Available on crate feature unit only.
Source§

impl Debug for UnitSi

Available on crate feature unit only.
Source§

impl Debug for Month

Source§

impl Debug for devela::phys::Weekday

Source§

impl Debug for devela::ui::LayoutError

Available on crate feature layout only.
Source§

impl Debug for UiError

Available on ui·· only.
1.0.0 · Source§

impl Debug for devela::work::AtomicOrdering

Source§

impl Debug for devela::text::AsciiChar

Source§

impl Debug for InvalidText

1.55.0 · Source§

impl Debug for IntErrorKind

Source§

impl Debug for _Unwind_Reason_Code

Source§

impl Debug for EulerRot

Source§

impl Debug for Always

1.0.0 · Source§

impl Debug for bool

1.0.0 · Source§

impl Debug for char

1.0.0 · Source§

impl Debug for f16

1.0.0 · Source§

impl Debug for f32

1.0.0 · Source§

impl Debug for f64

1.0.0 · Source§

impl Debug for f128

1.0.0 · Source§

impl Debug for i8

1.0.0 · Source§

impl Debug for i16

1.0.0 · Source§

impl Debug for i32

1.0.0 · Source§

impl Debug for i64

1.0.0 · Source§

impl Debug for i128

1.0.0 · Source§

impl Debug for isize

Source§

impl Debug for !

1.0.0 · Source§

impl Debug for str

1.0.0 · Source§

impl Debug for u8

1.0.0 · Source§

impl Debug for u16

1.0.0 · Source§

impl Debug for u32

1.0.0 · Source§

impl Debug for u64

1.0.0 · Source§

impl Debug for u128

1.0.0 · Source§

impl Debug for ()

1.0.0 · Source§

impl Debug for usize

Source§

impl Debug for AllocError

1.27.0 · Source§

impl Debug for CpuidResult

1.27.0 · Source§

impl Debug for __m128

Source§

impl Debug for __m128bh

1.27.0 · Source§

impl Debug for __m128d

Source§

impl Debug for __m128h

1.27.0 · Source§

impl Debug for __m128i

1.27.0 · Source§

impl Debug for __m256

Source§

impl Debug for __m256bh

1.27.0 · Source§

impl Debug for __m256d

Source§

impl Debug for __m256h

1.27.0 · Source§

impl Debug for __m256i

1.72.0 · Source§

impl Debug for __m512

Source§

impl Debug for __m512bh

1.72.0 · Source§

impl Debug for __m512d

Source§

impl Debug for __m512h

1.72.0 · Source§

impl Debug for __m512i

Source§

impl Debug for bf16

1.34.0 · Source§

impl Debug for TryFromSliceError

1.16.0 · Source§

impl Debug for devela::_core::ascii::EscapeDefault

1.13.0 · Source§

impl Debug for BorrowError

1.13.0 · Source§

impl Debug for BorrowMutError

1.34.0 · Source§

impl Debug for CharTryFromError

1.9.0 · Source§

impl Debug for DecodeUtf16Error

1.20.0 · Source§

impl Debug for devela::_core::char::EscapeDebug

1.0.0 · Source§

impl Debug for devela::_core::char::EscapeDefault

1.0.0 · Source§

impl Debug for devela::_core::char::EscapeUnicode

1.20.0 · Source§

impl Debug for ParseCharError

1.0.0 · Source§

impl Debug for ToLowercase

1.0.0 · Source§

impl Debug for ToUppercase

1.59.0 · Source§

impl Debug for TryFromCharError

1.69.0 · Source§

impl Debug for FromBytesUntilNulError

1.64.0 · Source§

impl Debug for FromBytesWithNulError

Source§

impl Debug for FormattingOptions

1.0.0 · Source§

impl Debug for SipHasher

Source§

impl Debug for BorrowedBuf<'_>

Source§

impl Debug for Assume

1.0.0 · Source§

impl Debug for AddrParseError

1.0.0 · Source§

impl Debug for Ipv4Addr

1.0.0 · Source§

impl Debug for Ipv6Addr

1.0.0 · Source§

impl Debug for SocketAddrV4

1.0.0 · Source§

impl Debug for SocketAddrV6

1.81.0 · Source§

impl Debug for PanicMessage<'_>

Source§

impl Debug for devela::_core::ptr::Alignment

1.17.0 · Source§

impl Debug for devela::_core::str::EncodeUtf16<'_>

1.0.0 · Source§

impl Debug for ParseBoolError

1.79.0 · Source§

impl Debug for Utf8Chunks<'_>

1.0.0 · Source§

impl Debug for devela::_core::str::Utf8Error

1.3.0 · Source§

impl Debug for devela::_core::sync::atomic::AtomicBool

1.34.0 · Source§

impl Debug for devela::_core::sync::atomic::AtomicI8

1.34.0 · Source§

impl Debug for devela::_core::sync::atomic::AtomicI16

1.34.0 · Source§

impl Debug for devela::_core::sync::atomic::AtomicI32

1.34.0 · Source§

impl Debug for devela::_core::sync::atomic::AtomicI64

1.3.0 · Source§

impl Debug for devela::_core::sync::atomic::AtomicIsize

1.34.0 · Source§

impl Debug for devela::_core::sync::atomic::AtomicU8

1.34.0 · Source§

impl Debug for devela::_core::sync::atomic::AtomicU16

1.34.0 · Source§

impl Debug for devela::_core::sync::atomic::AtomicU32

1.34.0 · Source§

impl Debug for devela::_core::sync::atomic::AtomicU64

1.3.0 · Source§

impl Debug for devela::_core::sync::atomic::AtomicUsize

Source§

impl Debug for LocalWaker

Source§

impl Debug for devela::_dep::_alloc::alloc::Global

Source§

impl Debug for UnorderedKeyError

1.57.0 · Source§

impl Debug for devela::_dep::_alloc::collections::TryReserveError

1.64.0 · Source§

impl Debug for FromVecWithNulError

1.64.0 · Source§

impl Debug for IntoStringError

1.64.0 · Source§

impl Debug for NulError

1.17.0 · Source§

impl Debug for devela::_dep::_alloc::string::Drain<'_>

1.0.0 · Source§

impl Debug for devela::_dep::_alloc::string::FromUtf8Error

1.0.0 · Source§

impl Debug for devela::_dep::_alloc::string::FromUtf16Error

Source§

impl Debug for IntoChars

1.28.0 · Source§

impl Debug for devela::_dep::_std::alloc::System

Source§

impl Debug for BacktraceFrame

1.16.0 · Source§

impl Debug for Args

1.16.0 · Source§

impl Debug for ArgsOs

1.0.0 · Source§

impl Debug for JoinPathsError

1.16.0 · Source§

impl Debug for SplitPaths<'_>

1.16.0 · Source§

impl Debug for Vars

1.16.0 · Source§

impl Debug for VarsOs

Source§

impl Debug for devela::_dep::_std::ffi::os_str::Display<'_>

1.6.0 · Source§

impl Debug for DirBuilder

1.13.0 · Source§

impl Debug for devela::_dep::_std::fs::DirEntry

1.0.0 · Source§

impl Debug for File

1.75.0 · Source§

impl Debug for FileTimes

1.16.0 · Source§

impl Debug for devela::_dep::_std::fs::FileType

1.16.0 · Source§

impl Debug for devela::_dep::_std::fs::Metadata

1.0.0 · Source§

impl Debug for OpenOptions

1.0.0 · Source§

impl Debug for Permissions

1.0.0 · Source§

impl Debug for ReadDir

1.7.0 · Source§

impl Debug for DefaultHasher

1.0.0 · Source§

impl Debug for devela::_dep::_std::io::Empty

1.16.0 · Source§

impl Debug for devela::_dep::_std::io::Repeat

1.16.0 · Source§

impl Debug for devela::_dep::_std::io::Stderr

1.16.0 · Source§

impl Debug for StderrLock<'_>

1.16.0 · Source§

impl Debug for devela::_dep::_std::io::Stdin

1.16.0 · Source§

impl Debug for StdinLock<'_>

1.16.0 · Source§

impl Debug for devela::_dep::_std::io::Stdout

1.16.0 · Source§

impl Debug for StdoutLock<'_>

1.56.0 · Source§

impl Debug for WriterPanicked

Source§

impl Debug for IntoIncoming

1.0.0 · Source§

impl Debug for devela::_dep::_std::net::TcpListener

1.0.0 · Source§

impl Debug for devela::_dep::_std::net::TcpStream

1.0.0 · Source§

impl Debug for devela::_dep::_std::net::UdpSocket

Source§

impl Debug for PidFd

1.10.0 · Source§

impl Debug for devela::_dep::_std::os::unix::net::SocketAddr

Source§

impl Debug for devela::_dep::_std::os::unix::net::UCred

1.10.0 · Source§

impl Debug for devela::_dep::_std::os::unix::net::UnixDatagram

1.10.0 · Source§

impl Debug for devela::_dep::_std::os::unix::net::UnixListener

1.10.0 · Source§

impl Debug for devela::_dep::_std::os::unix::net::UnixStream

Source§

impl Debug for PipeReader

Source§

impl Debug for PipeWriter

1.16.0 · Source§

impl Debug for Child

1.16.0 · Source§

impl Debug for ChildStderr

1.16.0 · Source§

impl Debug for ChildStdin

1.16.0 · Source§

impl Debug for ChildStdout

1.0.0 · Source§

impl Debug for Command

1.61.0 · Source§

impl Debug for ExitCode

1.0.0 · Source§

impl Debug for ExitStatus

Source§

impl Debug for ExitStatusError

1.7.0 · Source§

impl Debug for devela::_dep::_std::process::Output

1.16.0 · Source§

impl Debug for Stdio

Source§

impl Debug for DefaultRandomSource

1.0.0 · Source§

impl Debug for RecvError

1.8.0 · Source§

impl Debug for devela::_dep::_std::time::SystemTimeError

§

impl Debug for devela::_dep::bumpalo::collections::string::FromUtf16Error

§

impl Debug for AllocErr

§

impl Debug for Bump

§

impl Debug for DisableBlinking

§

impl Debug for EnableBlinking

§

impl Debug for Hide

§

impl Debug for MoveDown

§

impl Debug for MoveLeft

§

impl Debug for MoveRight

§

impl Debug for MoveTo

§

impl Debug for MoveToColumn

§

impl Debug for MoveToNextLine

§

impl Debug for MoveToPreviousLine

§

impl Debug for MoveToRow

§

impl Debug for MoveUp

§

impl Debug for RestorePosition

§

impl Debug for SavePosition

§

impl Debug for Show

§

impl Debug for DisableBracketedPaste

§

impl Debug for DisableFocusChange

§

impl Debug for DisableMouseCapture

§

impl Debug for EnableBracketedPaste

§

impl Debug for EnableFocusChange

§

impl Debug for EnableMouseCapture

§

impl Debug for KeyEvent

§

impl Debug for KeyEventState

§

impl Debug for KeyModifiers

§

impl Debug for KeyboardEnhancementFlags

§

impl Debug for MouseEvent

§

impl Debug for PopKeyboardEnhancementFlags

§

impl Debug for PushKeyboardEnhancementFlags

§

impl Debug for devela::_dep::crossterm::style::Attributes

§

impl Debug for Colors

§

impl Debug for ContentStyle

§

impl Debug for ResetColor

§

impl Debug for SetAttribute

§

impl Debug for SetAttributes

§

impl Debug for SetBackgroundColor

§

impl Debug for SetColors

§

impl Debug for SetForegroundColor

§

impl Debug for SetStyle

§

impl Debug for SetUnderlineColor

§

impl Debug for BeginSynchronizedUpdate

§

impl Debug for Clear

§

impl Debug for DisableLineWrap

§

impl Debug for EnableLineWrap

§

impl Debug for EndSynchronizedUpdate

§

impl Debug for EnterAlternateScreen

§

impl Debug for LeaveAlternateScreen

§

impl Debug for ScrollDown

§

impl Debug for ScrollUp

§

impl Debug for SetSize

§

impl Debug for WindowSize

§

impl Debug for devela::_dep::jiff::civil::Date

§

impl Debug for DateArithmetic

§

impl Debug for DateDifference

§

impl Debug for DateSeries

§

impl Debug for DateTime

Converts a DateTime into a human readable datetime string.

(This Debug representation currently emits the same string as the Display representation, but this is not a guarantee.)

Options currently supported:

§Example

use jiff::civil::date;

let dt = date(2024, 6, 15).at(7, 0, 0, 123_000_000);
assert_eq!(format!("{dt:.6?}"), "2024-06-15T07:00:00.123000");
// Precision values greater than 9 are clamped to 9.
assert_eq!(format!("{dt:.300?}"), "2024-06-15T07:00:00.123000000");
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(format!("{dt:.0?}"), "2024-06-15T07:00:00");
§

impl Debug for DateTimeArithmetic

§

impl Debug for DateTimeDifference

§

impl Debug for DateTimeRound

§

impl Debug for DateTimeSeries

§

impl Debug for DateTimeWith

§

impl Debug for DateWith

§

impl Debug for ISOWeekDate

§

impl Debug for devela::_dep::jiff::civil::Time

Converts a Time into a human readable time string.

(This Debug representation currently emits the same string as the Display representation, but this is not a guarantee.)

Options currently supported:

§Example

use jiff::civil::time;

let t = time(7, 0, 0, 123_000_000);
assert_eq!(format!("{t:.6?}"), "07:00:00.123000");
// Precision values greater than 9 are clamped to 9.
assert_eq!(format!("{t:.300?}"), "07:00:00.123000000");
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(format!("{t:.0?}"), "07:00:00");
§

impl Debug for TimeArithmetic

§

impl Debug for TimeDifference

§

impl Debug for TimeRound

§

impl Debug for TimeSeries

§

impl Debug for TimeWith

§

impl Debug for WeekdaysForward

§

impl Debug for WeekdaysReverse

§

impl Debug for devela::_dep::jiff::fmt::friendly::SpanParser

§

impl Debug for devela::_dep::jiff::fmt::friendly::SpanPrinter

§

impl Debug for devela::_dep::jiff::fmt::rfc2822::DateTimeParser

§

impl Debug for devela::_dep::jiff::fmt::rfc2822::DateTimePrinter

§

impl Debug for BrokenDownTime

§

impl Debug for devela::_dep::jiff::fmt::temporal::DateTimeParser

§

impl Debug for devela::_dep::jiff::fmt::temporal::DateTimePrinter

§

impl Debug for PiecesNumericOffset

§

impl Debug for devela::_dep::jiff::fmt::temporal::SpanParser

§

impl Debug for devela::_dep::jiff::fmt::temporal::SpanPrinter

§

impl Debug for devela::_dep::jiff::Error

§

impl Debug for SignedDuration

§

impl Debug for SignedDurationRound

§

impl Debug for devela::_dep::jiff::Span

§

impl Debug for Timestamp

Converts a Timestamp datetime into a human readable datetime string.

(This Debug representation currently emits the same string as the Display representation, but this is not a guarantee.)

Options currently supported:

§Example

use jiff::Timestamp;

let ts = Timestamp::new(1_123_456_789, 123_000_000)?;
assert_eq!(
    format!("{ts:.6?}"),
    "2005-08-07T23:19:49.123000Z",
);
// Precision values greater than 9 are clamped to 9.
assert_eq!(
    format!("{ts:.300?}"),
    "2005-08-07T23:19:49.123000000Z",
);
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(
    format!("{ts:.0?}"),
    "2005-08-07T23:19:49Z",
);
§

impl Debug for TimestampArithmetic

§

impl Debug for TimestampDifference

§

impl Debug for TimestampDisplayWithOffset

§

impl Debug for TimestampRound

§

impl Debug for TimestampSeries

§

impl Debug for Zoned

Converts a Zoned datetime into a human readable datetime string.

(This Debug representation currently emits the same string as the Display representation, but this is not a guarantee.)

Options currently supported:

§Example

use jiff::civil::date;

let zdt = date(2024, 6, 15).at(7, 0, 0, 123_000_000).intz("US/Eastern")?;
assert_eq!(
    format!("{zdt:.6?}"),
    "2024-06-15T07:00:00.123000-04:00[US/Eastern]",
);
// Precision values greater than 9 are clamped to 9.
assert_eq!(
    format!("{zdt:.300?}"),
    "2024-06-15T07:00:00.123000000-04:00[US/Eastern]",
);
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(
    format!("{zdt:.0?}"),
    "2024-06-15T07:00:00-04:00[US/Eastern]",
);
§

impl Debug for ZonedArithmetic

§

impl Debug for ZonedRound

§

impl Debug for ZonedWith

§

impl Debug for AmbiguousTimestamp

§

impl Debug for AmbiguousZoned

§

impl Debug for Offset

§

impl Debug for OffsetArithmetic

§

impl Debug for TimeZone

§

impl Debug for TimeZoneDatabase

§

impl Debug for TimeZoneNameIter

Source§

impl Debug for Collator

Source§

impl Debug for DateTimeFormat

Source§

impl Debug for NumberFormat

Source§

impl Debug for PluralRules

Source§

impl Debug for RelativeTimeFormat

Source§

impl Debug for CompileError

Source§

impl Debug for Exception

Source§

impl Debug for devela::_dep::js_sys::WebAssembly::Global

Source§

impl Debug for Instance

Source§

impl Debug for LinkError

Source§

impl Debug for Memory

Source§

impl Debug for Module

Source§

impl Debug for RuntimeError

Source§

impl Debug for Table

Source§

impl Debug for devela::_dep::js_sys::WebAssembly::Tag

Source§

impl Debug for devela::_dep::js_sys::Array

Source§

impl Debug for ArrayBuffer

Source§

impl Debug for ArrayIntoIter

Source§

impl Debug for AsyncIterator

Source§

impl Debug for BigInt64Array

Source§

impl Debug for BigInt

Source§

impl Debug for BigUint64Array

Source§

impl Debug for Boolean

Source§

impl Debug for DataView

Source§

impl Debug for devela::_dep::js_sys::Date

Source§

impl Debug for devela::_dep::js_sys::Error

Source§

impl Debug for EvalError

Source§

impl Debug for Float32Array

Source§

impl Debug for Float64Array

Source§

impl Debug for devela::_dep::js_sys::Function

Source§

impl Debug for Generator

Source§

impl Debug for Int8Array

Source§

impl Debug for Int16Array

Source§

impl Debug for Int32Array

Source§

impl Debug for Iterator

Source§

impl Debug for IteratorNext

Source§

impl Debug for JsString

Source§

impl Debug for devela::_dep::js_sys::Map

Source§

impl Debug for Number

Source§

impl Debug for Object

Source§

impl Debug for Promise

Source§

impl Debug for Proxy

Source§

impl Debug for RangeError

Source§

impl Debug for ReferenceError

Source§

impl Debug for RegExp

Source§

impl Debug for Set

Source§

impl Debug for SharedArrayBuffer

Source§

impl Debug for Symbol

Source§

impl Debug for SyntaxError

Source§

impl Debug for devela::_dep::js_sys::TryFromIntError

Source§

impl Debug for TypeError

Source§

impl Debug for Uint8Array

Source§

impl Debug for Uint8ClampedArray

Source§

impl Debug for Uint16Array

Source§

impl Debug for Uint32Array

Source§

impl Debug for UriError

Source§

impl Debug for WeakMap

Source§

impl Debug for WeakSet

§

impl Debug for MockBackendSettings

§

impl Debug for ClockHandle

§

impl Debug for devela::_dep::kira::clock::ClockId

§

impl Debug for ClockTime

§

impl Debug for CompressorHandle

§

impl Debug for DelayHandle

§

impl Debug for DistortionBuilder

§

impl Debug for DistortionHandle

§

impl Debug for EqFilterHandle

§

impl Debug for FilterBuilder

§

impl Debug for FilterHandle

§

impl Debug for PanningControlBuilder

§

impl Debug for PanningControlHandle

§

impl Debug for ReverbBuilder

§

impl Debug for ReverbHandle

§

impl Debug for VolumeControlBuilder

§

impl Debug for VolumeControlHandle

§

impl Debug for ClockInfo

§

impl Debug for ListenerInfo

§

impl Debug for ListenerHandle

§

impl Debug for ListenerId

§

impl Debug for LfoHandle

§

impl Debug for ModulatorId

§

impl Debug for TweenerHandle

§

impl Debug for StaticSoundData

§

impl Debug for StaticSoundHandle

§

impl Debug for StaticSoundSettings

§

impl Debug for StreamingSoundSettings

§

impl Debug for Region

§

impl Debug for Capacities

§

impl Debug for Decibels

§

impl Debug for Frame

§

impl Debug for Mix

§

impl Debug for Panning

§

impl Debug for PlaybackRate

§

impl Debug for ResourceLimitReached

§

impl Debug for Semitones

§

impl Debug for Tween

§

impl Debug for MainTrackHandle

§

impl Debug for NonexistentRoute

§

impl Debug for SendTrackHandle

§

impl Debug for SendTrackId

§

impl Debug for SpatialTrackDistances

§

impl Debug for SpatialTrackHandle

§

impl Debug for TrackHandle

Source§

impl Debug for devela::_dep::log::ParseLevelError

Source§

impl Debug for SetLoggerError

§

impl Debug for devela::_dep::memchr::arch::all::memchr::One

§

impl Debug for devela::_dep::memchr::arch::all::memchr::Three

§

impl Debug for devela::_dep::memchr::arch::all::memchr::Two

§

impl Debug for devela::_dep::memchr::arch::all::packedpair::Finder

§

impl Debug for Pair

§

impl Debug for devela::_dep::memchr::arch::all::rabinkarp::Finder

§

impl Debug for devela::_dep::memchr::arch::all::rabinkarp::FinderRev

§

impl Debug for devela::_dep::memchr::arch::all::shiftor::Finder

§

impl Debug for devela::_dep::memchr::arch::all::twoway::Finder

§

impl Debug for devela::_dep::memchr::arch::all::twoway::FinderRev

§

impl Debug for devela::_dep::memchr::arch::x86_64::avx2::memchr::One

§

impl Debug for devela::_dep::memchr::arch::x86_64::avx2::memchr::Three

§

impl Debug for devela::_dep::memchr::arch::x86_64::avx2::memchr::Two

§

impl Debug for devela::_dep::memchr::arch::x86_64::avx2::packedpair::Finder

§

impl Debug for devela::_dep::memchr::arch::x86_64::sse2::memchr::One

§

impl Debug for devela::_dep::memchr::arch::x86_64::sse2::memchr::Three

§

impl Debug for devela::_dep::memchr::arch::x86_64::sse2::memchr::Two

§

impl Debug for devela::_dep::memchr::arch::x86_64::sse2::packedpair::Finder

§

impl Debug for FinderBuilder

§

impl Debug for InitError

§

impl Debug for Conf

§

impl Debug for Icon

§

impl Debug for Platform

§

impl Debug for Bindings

§

impl Debug for BlendState

§

impl Debug for BufferId

§

impl Debug for BufferLayout

§

impl Debug for ContextInfo

§

impl Debug for Features

§

impl Debug for GlslSupport

§

impl Debug for KeyMods

§

impl Debug for Pipeline

§

impl Debug for PipelineLayout

§

impl Debug for PipelineParams

§

impl Debug for RenderPass

§

impl Debug for ShaderId

§

impl Debug for StencilFaceState

§

impl Debug for StencilState

§

impl Debug for TextureId

§

impl Debug for TextureParams

§

impl Debug for Touch

§

impl Debug for UniformBlockLayout

§

impl Debug for UniformDesc

§

impl Debug for VertexAttribute

§

impl Debug for devela::_dep::nc::c_str::CStr

§

impl Debug for devela::_dep::nc::c_str::CString

§

impl Debug for devela::_dep::nc::__kernel_fsid_t

§

impl Debug for aio_sigset_t

§

impl Debug for blk_io_trace_remap_t

§

impl Debug for blk_user_trace_setup_t

§

impl Debug for bpf_cgroup_storage_key_t

§

impl Debug for bpf_insn_t

§

impl Debug for bpf_lpm_trie_key_t

§

impl Debug for cachestat_range_t

§

impl Debug for cachestat_t

§

impl Debug for cap_user_data_t

§

impl Debug for cap_user_header_t

§

impl Debug for clone_args_t

§

impl Debug for cmsghdr_t

§

impl Debug for compat_statfs64_t

§

impl Debug for cpu_set_t

§

impl Debug for epoll_event_t

§

impl Debug for f_owner_ex_t

§

impl Debug for fd_set_t

§

impl Debug for fiemap_extent_t

§

impl Debug for fiemap_t

§

impl Debug for file_clone_range_t

§

impl Debug for file_dedupe_range_info_t

§

impl Debug for file_dedupe_range_t

§

impl Debug for file_handle_t

§

impl Debug for files_stat_struct_t

§

impl Debug for flock64_t

§

impl Debug for flock_t

§

impl Debug for fscrypt_policy_t

§

impl Debug for fsid_t

§

impl Debug for fstrim_range_t

§

impl Debug for fsxattr_t

§

impl Debug for futex_waitv_t

§

impl Debug for getcpu_cache_t

§

impl Debug for group_filter_t

§

impl Debug for group_req_t

§

impl Debug for group_source_req_t

§

impl Debug for if_dqblk_t

§

impl Debug for if_dqinfo_t

§

impl Debug for if_nextdqblk_t

§

impl Debug for in6_addr_t

§

impl Debug for in6_flowlabel_req_t

§

impl Debug for in_addr_t

§

impl Debug for in_pktinfo_t

§

impl Debug for devela::_dep::nc::inodes_stat_t

§

impl Debug for inotify_event_t

§

impl Debug for io_cqring_offsets_t

§

impl Debug for io_event_t

§

impl Debug for io_file_t

§

impl Debug for io_sqring_offsets_t

§

impl Debug for io_uring_cqe_t

§

impl Debug for io_uring_files_update_t

§

impl Debug for io_uring_params_t

§

impl Debug for io_uring_probe_op_t

§

impl Debug for io_uring_probe_t

§

impl Debug for io_uring_sqe_buf_t

§

impl Debug for io_uring_sqe_t

§

impl Debug for iocb_t

§

impl Debug for iovec_t

§

impl Debug for ip_mreq_source_t

§

impl Debug for ip_mreq_t

§

impl Debug for ip_mreqn_t

§

impl Debug for ip_msfilter_t

§

impl Debug for ipc64_perm_t

§

impl Debug for ipc_perm_t

§

impl Debug for ipv6_mreq_t

§

impl Debug for itimerspec64_t

§

impl Debug for itimerspec_t

§

impl Debug for itimerval_t

§

impl Debug for kcmp_epoll_slot_t

§

impl Debug for kernel_itimerspec_t

§

impl Debug for kernel_sock_timeval_t

§

impl Debug for kernel_sockaddr_storage_t

§

impl Debug for kernel_timespec_t

§

impl Debug for kernel_timex_t

§

impl Debug for kernel_timex_timeval_t

§

impl Debug for kernle_old_timeval_t

§

impl Debug for kexec_segment_t

§

impl Debug for ktermios_t

§

impl Debug for linger_t

§

impl Debug for linux_dirent64_t

§

impl Debug for linux_dirent_t

§

impl Debug for mmsghdr_t

§

impl Debug for mnt_id_req_t

§

impl Debug for mount_attr_t

§

impl Debug for mq_attr_t

§

impl Debug for msgbuf_t

§

impl Debug for msghdr_t

§

impl Debug for msginfo_t

§

impl Debug for msqid64_ds_t

§

impl Debug for msqid_ds_t

§

impl Debug for new_utsname_t

§

impl Debug for open_how_t

§

impl Debug for pollfd_t

§

impl Debug for prctl_mm_map_t

§

impl Debug for pthread_barrierattr_t

§

impl Debug for pthread_condattr_t

§

impl Debug for pthread_mutexattr_t

§

impl Debug for pthread_rwlockattr_t

§

impl Debug for ptrace_peeksiginfo_args_t

§

impl Debug for ptrace_syscall_info_seccomp_entry_t

§

impl Debug for ptrace_syscall_info_seccomp_exit_t

§

impl Debug for ptrace_syscall_info_seccomp_seccomp_t

§

impl Debug for rlimit64_t

§

impl Debug for rlimit_t

§

impl Debug for robust_list_head_t

§

impl Debug for robust_list_t

§

impl Debug for rseq_cs_ptr_t

§

impl Debug for rseq_cs_t

§

impl Debug for rusage_t

§

impl Debug for sched_attr_t

§

impl Debug for sched_param_t

§

impl Debug for scm_timestamping_internal_t

§

impl Debug for seccomp_data_t

§

impl Debug for seccomp_metadata_t

§

impl Debug for seccomp_notif_resp_t

§

impl Debug for seccomp_notif_sizes_t

§

impl Debug for seccomp_notif_t

§

impl Debug for sembuf_t

§

impl Debug for semid_ds_t

§

impl Debug for seminfo_t

§

impl Debug for serial_icounter_struct_t

§

impl Debug for serial_iso7816_t

§

impl Debug for serial_multiport_struct_t

§

impl Debug for serial_rs485_t

§

impl Debug for serial_struct_t

§

impl Debug for shm_info_t

§

impl Debug for shmid64_ds_t

§

impl Debug for shmid_ds_t

§

impl Debug for shminfo64_t

§

impl Debug for shminfo_t

§

impl Debug for si_kill_t

§

impl Debug for si_rt_t

§

impl Debug for si_sigchld_t

§

impl Debug for si_sigpoll_t

§

impl Debug for si_sigsys_t

§

impl Debug for si_timer_t

§

impl Debug for sigaction_t

§

impl Debug for sigaltstack_t

§

impl Debug for sigev_thread_t

§

impl Debug for sigevent_t

§

impl Debug for sigset_t

§

impl Debug for sockaddr_in6_t

§

impl Debug for sockaddr_in_t

§

impl Debug for sockaddr_t

§

impl Debug for stat_t

§

impl Debug for statfs64_t

§

impl Debug for statfs_t

§

impl Debug for statmount_t

§

impl Debug for statx_t

§

impl Debug for statx_timestamp_t

§

impl Debug for sysctl_args_t

§

impl Debug for sysinfo_t

§

impl Debug for termio_t

§

impl Debug for termios2_t

§

impl Debug for termios_t

§

impl Debug for timespec64_t

§

impl Debug for timespec_t

§

impl Debug for timeval_t

§

impl Debug for timex_t

§

impl Debug for timezone_t

§

impl Debug for tms_t

§

impl Debug for ucred_t

§

impl Debug for user_desc_t

§

impl Debug for ustat_t

§

impl Debug for utimbuf_t

§

impl Debug for winsize_t

§

impl Debug for PyBaseExceptionObject

§

impl Debug for PyDateTime_CAPI

§

impl Debug for PyDateTime_Date

§

impl Debug for PyDateTime_DateTime

§

impl Debug for PyDateTime_Delta

§

impl Debug for PyDateTime_Time

§

impl Debug for PyDictObject

§

impl Debug for PyGetSetDef

§

impl Debug for PyImportErrorObject

§

impl Debug for PyOSErrorObject

§

impl Debug for PyObject

§

impl Debug for PySetObject

§

impl Debug for PyStopIterationObject

§

impl Debug for PySyntaxErrorObject

§

impl Debug for PySystemExitObject

§

impl Debug for PyTypeObject

§

impl Debug for PyUnicodeErrorObject

§

impl Debug for PyVarObject

§

impl Debug for _PyDateTime_BaseDateTime

§

impl Debug for _PyDateTime_BaseTime

§

impl Debug for setentry

§

impl Debug for PyBackedBytes

§

impl Debug for PyBackedStr

§

impl Debug for PyBorrowError

§

impl Debug for PyBorrowMutError

§

impl Debug for PyErr

§

impl Debug for PySliceIndices

Source§

impl Debug for devela::_dep::rand_core::Error

Source§

impl Debug for OsRng

§

impl Debug for ApmInfo

§

impl Debug for CacheInfo

§

impl Debug for CacheInfoIter

§

impl Debug for CacheParameter

§

impl Debug for CpuIdResult

§

impl Debug for DatInfo

§

impl Debug for DirectCacheAccessInfo

§

impl Debug for EpcSection

§

impl Debug for ExtendedFeatures

§

impl Debug for ExtendedProcessorFeatureIdentifiers

§

impl Debug for ExtendedState

§

impl Debug for ExtendedTopologyLevel

§

impl Debug for FeatureInfo

§

impl Debug for L1CacheTlbInfo

§

impl Debug for L2And3CacheTlbInfo

§

impl Debug for L2CatInfo

§

impl Debug for L3CatInfo

§

impl Debug for L3MonitoringInfo

§

impl Debug for MemBwAllocationInfo

§

impl Debug for MemoryEncryptionInfo

§

impl Debug for MonitorMwaitInfo

§

impl Debug for PerformanceMonitoringInfo

§

impl Debug for PerformanceOptimizationInfo

§

impl Debug for ProcessorBrandString

§

impl Debug for ProcessorCapacityAndFeatureInfo

§

impl Debug for ProcessorFrequencyInfo

§

impl Debug for ProcessorSerial

§

impl Debug for ProcessorTopologyInfo

§

impl Debug for ProcessorTraceInfo

§

impl Debug for SoCVendorBrand

§

impl Debug for SvmFeatures

§

impl Debug for ThermalPowerInfo

§

impl Debug for Tlb1gbPageInfo

§

impl Debug for TscInfo

§

impl Debug for VendorInfo

§

impl Debug for FnContext

§

impl Debug for ThreadBuilder

§

impl Debug for ThreadPool

§

impl Debug for ThreadPoolBuildError

§

impl Debug for CaptureLocations

§

impl Debug for devela::_dep::regex_lite::Error

§

impl Debug for Regex

§

impl Debug for RegexBuilder

§

impl Debug for BoxedError

§

impl Debug for devela::_dep::rkyv::bytecheck::rancor::Error

§

impl Debug for Failure

§

impl Debug for NamedEnumVariantCheckContext

§

impl Debug for StructCheckContext

§

impl Debug for TupleStructCheckContext

§

impl Debug for UnnamedEnumVariantCheckContext

§

impl Debug for IteratorLengthMismatch

§

impl Debug for ErasedPtr

§

impl Debug for Pool

§

impl Debug for Unpool

§

impl Debug for ArchivedCString

§

impl Debug for ArchivedIpv4Addr

§

impl Debug for ArchivedIpv6Addr

§

impl Debug for ArchivedSocketAddrV4

§

impl Debug for ArchivedSocketAddrV6

§

impl Debug for ArchivedOptionNonZeroI8

§

impl Debug for ArchivedOptionNonZeroI16

§

impl Debug for ArchivedOptionNonZeroI32

§

impl Debug for ArchivedOptionNonZeroI64

§

impl Debug for ArchivedOptionNonZeroI128

§

impl Debug for ArchivedOptionNonZeroU8

§

impl Debug for ArchivedOptionNonZeroU16

§

impl Debug for ArchivedOptionNonZeroU32

§

impl Debug for ArchivedOptionNonZeroU64

§

impl Debug for ArchivedOptionNonZeroU128

§

impl Debug for ArchivedRangeFull

§

impl Debug for AtomicI16_be

§

impl Debug for AtomicI16_le

§

impl Debug for AtomicI32_be

§

impl Debug for AtomicI32_le

§

impl Debug for AtomicI64_be

§

impl Debug for AtomicI64_le

§

impl Debug for AtomicU16_be

§

impl Debug for AtomicU16_le

§

impl Debug for AtomicU32_be

§

impl Debug for AtomicU32_le

§

impl Debug for AtomicU64_be

§

impl Debug for AtomicU64_le

§

impl Debug for NonZeroI16_be

§

impl Debug for NonZeroI16_le

§

impl Debug for NonZeroI32_be

§

impl Debug for NonZeroI32_le

§

impl Debug for NonZeroI64_be

§

impl Debug for NonZeroI64_le

§

impl Debug for NonZeroI128_be

§

impl Debug for NonZeroI128_le

§

impl Debug for NonZeroU16_be

§

impl Debug for NonZeroU16_le

§

impl Debug for NonZeroU32_be

§

impl Debug for NonZeroU32_le

§

impl Debug for NonZeroU64_be

§

impl Debug for NonZeroU64_le

§

impl Debug for NonZeroU128_be

§

impl Debug for NonZeroU128_le

§

impl Debug for char_be

§

impl Debug for char_le

§

impl Debug for f32_be

§

impl Debug for f32_le

§

impl Debug for f64_be

§

impl Debug for f64_le

§

impl Debug for i16_be

§

impl Debug for i16_le

§

impl Debug for i32_be

§

impl Debug for i32_le

§

impl Debug for i64_be

§

impl Debug for i64_le

§

impl Debug for i128_be

§

impl Debug for i128_le

§

impl Debug for u16_be

§

impl Debug for u16_le

§

impl Debug for u32_be

§

impl Debug for u32_le

§

impl Debug for u64_be

§

impl Debug for u64_le

§

impl Debug for u128_be

§

impl Debug for u128_le

§

impl Debug for NonZeroI16_ube

§

impl Debug for NonZeroI16_ule

§

impl Debug for NonZeroI32_ube

§

impl Debug for NonZeroI32_ule

§

impl Debug for NonZeroI64_ube

§

impl Debug for NonZeroI64_ule

§

impl Debug for NonZeroI128_ube

§

impl Debug for NonZeroI128_ule

§

impl Debug for NonZeroU16_ube

§

impl Debug for NonZeroU16_ule

§

impl Debug for NonZeroU32_ube

§

impl Debug for NonZeroU32_ule

§

impl Debug for NonZeroU64_ube

§

impl Debug for NonZeroU64_ule

§

impl Debug for NonZeroU128_ube

§

impl Debug for NonZeroU128_ule

§

impl Debug for char_ube

§

impl Debug for char_ule

§

impl Debug for f32_ube

§

impl Debug for f32_ule

§

impl Debug for f64_ube

§

impl Debug for f64_ule

§

impl Debug for i16_ube

§

impl Debug for i16_ule

§

impl Debug for i32_ube

§

impl Debug for i32_ule

§

impl Debug for i64_ube

§

impl Debug for i64_ule

§

impl Debug for i128_ube

§

impl Debug for i128_ule

§

impl Debug for u16_ube

§

impl Debug for u16_ule

§

impl Debug for u32_ube

§

impl Debug for u32_ule

§

impl Debug for u64_ube

§

impl Debug for u64_ule

§

impl Debug for u128_ube

§

impl Debug for u128_ule

§

impl Debug for AllocationStats

§

impl Debug for Share

§

impl Debug for devela::_dep::rkyv::ser::sharing::Unshare

§

impl Debug for ArchivedString

§

impl Debug for ArchivedDuration

§

impl Debug for SharedValidator

§

impl Debug for AsBox

§

impl Debug for AsOwned

§

impl Debug for AsString

§

impl Debug for AsUnixTime

§

impl Debug for AsVec

§

impl Debug for Identity

§

impl Debug for Inline

§

impl Debug for InlineAsBox

§

impl Debug for Lock

§

impl Debug for Niche

§

impl Debug for devela::_dep::rkyv::with::Skip

§

impl Debug for Unsafe

§

impl Debug for devela::_dep::rkyv::with::Unshare

§

impl Debug for Host

§

impl Debug for BackendSpecificError

§

impl Debug for Data

§

impl Debug for HostUnavailable

§

impl Debug for I24

§

impl Debug for I48

§

impl Debug for InputCallbackInfo

§

impl Debug for InputStreamTimestamp

§

impl Debug for OutputCallbackInfo

§

impl Debug for OutputStreamTimestamp

§

impl Debug for SampleRate

§

impl Debug for StreamConfig

§

impl Debug for StreamInstant

§

impl Debug for SupportedStreamConfigRange

§

impl Debug for U24

§

impl Debug for U48

§

impl Debug for Chirp

§

impl Debug for SignalGenerator

§

impl Debug for SineWave

§

impl Debug for SupportedStreamConfig

§

impl Debug for devela::_dep::rustix::event::epoll::CreateFlags

§

impl Debug for EventfdFlags

§

impl Debug for PollFlags

1.63.0 · Source§

impl Debug for BorrowedFd<'_>

1.63.0 · Source§

impl Debug for OwnedFd

§

impl Debug for devela::_dep::rustix::fs::inotify::CreateFlags

§

impl Debug for ReadFlags

§

impl Debug for WatchFlags

§

impl Debug for devela::_dep::rustix::fs::Access

§

impl Debug for AtFlags

§

impl Debug for Dir

§

impl Debug for devela::_dep::rustix::fs::DirEntry

§

impl Debug for FallocateFlags

§

impl Debug for FdFlags

§

impl Debug for devela::_dep::rustix::fs::Gid

§

impl Debug for MemfdFlags

§

impl Debug for Mode

§

impl Debug for MountFlags

§

impl Debug for MountPropagationFlags

§

impl Debug for OFlags

§

impl Debug for RenameFlags

§

impl Debug for ResolveFlags

§

impl Debug for SealFlags

§

impl Debug for StatVfsMountFlags

§

impl Debug for StatxFlags

§

impl Debug for Timestamps

§

impl Debug for devela::_dep::rustix::fs::Uid

§

impl Debug for UnmountFlags

§

impl Debug for XattrFlags

§

impl Debug for DupFlags

§

impl Debug for Errno

§

impl Debug for ReadWriteFlags

§

impl Debug for EventFlags

§

impl Debug for IoringAcceptFlags

§

impl Debug for IoringAsyncCancelFlags

§

impl Debug for IoringCqFlags

§

impl Debug for IoringCqeFlags

§

impl Debug for IoringEnterFlags

§

impl Debug for IoringFeatureFlags

§

impl Debug for IoringFsyncFlags

§

impl Debug for IoringMsgringFlags

§

impl Debug for IoringOpFlags

§

impl Debug for IoringPollFlags

§

impl Debug for IoringRecvFlags

§

impl Debug for IoringRegisterFlags

§

impl Debug for IoringRsrcFlags

§

impl Debug for IoringSendFlags

§

impl Debug for IoringSetupFlags

§

impl Debug for IoringSqFlags

§

impl Debug for IoringSqeFlags

§

impl Debug for IoringTimeoutFlags

§

impl Debug for RecvFlags

§

impl Debug for RecvmsgOutFlags

§

impl Debug for SendFlags

§

impl Debug for SocketFlags

§

impl Debug for devela::_dep::rustix::io_uring::SpliceFlags

§

impl Debug for buf_ring_bufs_struct

§

impl Debug for buf_ring_tail_struct

§

impl Debug for devela::_dep::rustix::io_uring::io_cqring_offsets

§

impl Debug for devela::_dep::rustix::io_uring::io_sqring_offsets

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_buf

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_buf_reg

§

impl Debug for io_uring_buf_ring

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_cqe

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_files_update

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_getevents_arg

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_params

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_probe

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_probe_op

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_recvmsg_out

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_rsrc_register

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_rsrc_update2

§

impl Debug for devela::_dep::rustix::io_uring::io_uring_rsrc_update

§

impl Debug for devela::_dep::rustix::io_uring::iovec

§

impl Debug for msghdr

§

impl Debug for devela::_dep::rustix::io_uring::open_how

§

impl Debug for tail_or_bufs_struct

§

impl Debug for Opcode

§

impl Debug for MapFlags

§

impl Debug for MlockAllFlags

§

impl Debug for MlockFlags

§

impl Debug for MprotectFlags

§

impl Debug for MremapFlags

§

impl Debug for MsyncFlags

§

impl Debug for ProtFlags

§

impl Debug for UserfaultfdFlags

§

impl Debug for FsMountFlags

§

impl Debug for FsOpenFlags

§

impl Debug for FsPickFlags

§

impl Debug for MountAttrFlags

§

impl Debug for MoveMountFlags

§

impl Debug for OpenTreeFlags

§

impl Debug for AddressFamily

§

impl Debug for Protocol

§

impl Debug for SocketAddrUnix

§

impl Debug for SocketType

§

impl Debug for devela::_dep::rustix::net::UCred

§

impl Debug for SockaddrXdpFlags

§

impl Debug for SocketAddrXdp

§

impl Debug for XdpDesc

§

impl Debug for XdpDescOptions

§

impl Debug for XdpMmapOffsets

§

impl Debug for XdpOptions

§

impl Debug for XdpOptionsFlags

§

impl Debug for XdpRingFlags

§

impl Debug for XdpRingOffset

§

impl Debug for XdpStatistics

§

impl Debug for XdpUmemReg

§

impl Debug for XdpUmemRegFlags

§

impl Debug for DecInt

§

impl Debug for PipeFlags

§

impl Debug for devela::_dep::rustix::pipe::SpliceFlags

§

impl Debug for CpuSet

§

impl Debug for Cpuid

§

impl Debug for FloatingPointEmulationControl

§

impl Debug for FloatingPointExceptionMode

§

impl Debug for MembarrierQuery

§

impl Debug for devela::_dep::rustix::process::Pid

§

impl Debug for PidfdFlags

§

impl Debug for PidfdGetfdFlags

§

impl Debug for PrctlMmMap

§

impl Debug for Rlimit

§

impl Debug for SpeculationFeatureControl

§

impl Debug for SpeculationFeatureState

§

impl Debug for UnalignedAccessControl

§

impl Debug for WaitOptions

§

impl Debug for WaitStatus

§

impl Debug for WaitidOptions

§

impl Debug for OpenptFlags

§

impl Debug for GetRandomFlags

§

impl Debug for ShmOFlags

§

impl Debug for Uname

§

impl Debug for ControlModes

§

impl Debug for InputModes

§

impl Debug for LocalModes

§

impl Debug for OutputModes

§

impl Debug for SpecialCodeIndex

§

impl Debug for SpecialCodes

§

impl Debug for Termios

§

impl Debug for CapabilitiesSecureBits

§

impl Debug for CapabilityFlags

§

impl Debug for CapabilitySets

§

impl Debug for devela::_dep::rustix::thread::FutexFlags

§

impl Debug for SVEVectorLengthConfig

§

impl Debug for TaggedAddressMode

§

impl Debug for ThreadNameSpaceType

§

impl Debug for UnshareFlags

§

impl Debug for TimerfdFlags

§

impl Debug for TimerfdTimerFlags

Source§

impl Debug for IgnoredAny

Source§

impl Debug for devela::_dep::serde::de::value::Error

§

impl Debug for Channels

§

impl Debug for SignalSpec

§

impl Debug for CodecParameters

§

impl Debug for CodecType

§

impl Debug for DecoderOptions

§

impl Debug for FinalizeResult

§

impl Debug for RandomNoise

§

impl Debug for Complex

§

impl Debug for Cue

§

impl Debug for CuePoint

§

impl Debug for FormatOptions

§

impl Debug for SeekedTo

§

impl Debug for Track

§

impl Debug for SeekPoint

§

impl Debug for devela::_dep::symphonia::core::meta::MetadataBuilder

§

impl Debug for MetadataLog

§

impl Debug for MetadataOptions

§

impl Debug for MetadataRevision

§

impl Debug for Size

§

impl Debug for devela::_dep::symphonia::core::meta::Tag

§

impl Debug for VendorData

§

impl Debug for Visual

§

impl Debug for devela::_dep::symphonia::core::probe::Hint

§

impl Debug for i24

§

impl Debug for u24

§

impl Debug for devela::_dep::symphonia::core::units::Time

§

impl Debug for TimeBase

§

impl Debug for CGroupLimits

§

impl Debug for devela::_dep::sysinfo::Component

§

impl Debug for devela::_dep::sysinfo::Components

§

impl Debug for Cpu

§

impl Debug for CpuRefreshKind

§

impl Debug for Disk

§

impl Debug for DiskRefreshKind

§

impl Debug for DiskUsage

§

impl Debug for Disks

§

impl Debug for devela::_dep::sysinfo::Gid

§

impl Debug for Group

§

impl Debug for IpNetwork

§

impl Debug for LoadAvg

§

impl Debug for MacAddr

§

impl Debug for MemoryRefreshKind

§

impl Debug for NetworkData

§

impl Debug for Networks

§

impl Debug for devela::_dep::sysinfo::Pid

§

impl Debug for Process

§

impl Debug for ProcessRefreshKind

§

impl Debug for RefreshKind

§

impl Debug for devela::_dep::sysinfo::System

§

impl Debug for devela::_dep::sysinfo::Uid

§

impl Debug for User

§

impl Debug for Users

§

impl Debug for DuplexStream

§

impl Debug for devela::_dep::tokio::io::Empty

§

impl Debug for ReadBuf<'_>

§

impl Debug for devela::_dep::tokio::io::Repeat

§

impl Debug for SimplexStream

§

impl Debug for devela::_dep::tokio::io::Sink

§

impl Debug for devela::_dep::tokio::io::Stderr

§

impl Debug for devela::_dep::tokio::io::Stdin

§

impl Debug for devela::_dep::tokio::io::Stdout

§

impl Debug for DefaultCallsite

§

impl Debug for Identifier

§

impl Debug for DefaultGuard

§

impl Debug for SetGlobalDefaultError

§

impl Debug for WeakDispatch

§

impl Debug for devela::_dep::tracing::field::Empty

§

impl Debug for Field

§

impl Debug for FieldSet

§

impl Debug for devela::_dep::tracing::field::Iter

§

impl Debug for devela::_dep::tracing::level_filters::LevelFilter

§

impl Debug for ParseLevelFilterError

§

impl Debug for Kind

§

impl Debug for devela::_dep::tracing::metadata::ParseLevelError

§

impl Debug for EnteredSpan

§

impl Debug for Dispatch

§

impl Debug for Id

§

impl Debug for devela::_dep::tracing::Level

§

impl Debug for devela::_dep::tracing::Span

§

impl Debug for devela::_dep::tracing::subscriber::Interest

§

impl Debug for NoSubscriber

§

impl Debug for GraphemeCursor

Source§

impl Debug for JsError

Source§

impl Debug for JsValue

§

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 u8x16

§

impl Debug for u16x8

§

impl Debug for u16x16

§

impl Debug for u32x4

§

impl Debug for u32x8

§

impl Debug for u64x2

§

impl Debug for u64x4

§

impl Debug for devela::_dep::winnow::stream::Range

§

impl Debug for BStr

§

impl Debug for devela::_dep::winnow::Bytes

Source§

impl Debug for ExampleBitfield

Available on crate feature _bit_u8 and doc only.
Source§

impl Debug for ExampleBitfieldCustom

Available on crate feature _bit_u8 and doc only.
Source§

impl Debug for ExampleBitfieldExtra

Available on crate feature _bit_u8 and doc only.
Source§

impl Debug for ExampleEnumSet

Available on doc only.
Source§

impl Debug for ExampleIdSeqUsize

Available on doc only.
1.65.0 · Source§

impl Debug for Backtrace

Source§

impl Debug for FailedErrorConversion

Source§

impl Debug for False

Source§

impl Debug for FatPtr

1.0.0 · Source§

impl Debug for Arguments<'_>

1.0.0 · Source§

impl Debug for devela::all::FmtError

1.0.0 · Source§

impl Debug for devela::all::IoError

1.0.0 · Source§

impl Debug for devela::all::IoSink

1.13.0 · Source§

impl Debug for devela::all::IterPath<'_>

1.13.0 · Source§

impl Debug for devela::all::IterPathComponents<'_>

1.28.0 · Source§

impl Debug for devela::all::Layout

1.50.0 · Source§

impl Debug for devela::all::LayoutError

Source§

impl Debug for Lgc16

Available on crate feature rand only.
Source§

impl Debug for LinuxSigaction

Available on crate feature linux only.
Source§

impl Debug for LinuxSigset

Available on crate feature linux only.
Source§

impl Debug for LinuxTerminal

Available on crate features unsafe_syscall and linux only.
Source§

impl Debug for LinuxTerminalSize

Available on crate feature linux only.
Source§

impl Debug for LinuxTermios

Available on crate feature linux only.
Source§

impl Debug for LinuxTimespec

Available on crate feature linux only.
Source§

impl Debug for NotImplemented

Source§

impl Debug for NotSupported

1.0.0 · Source§

impl Debug for Path

1.0.0 · Source§

impl Debug for PathBuf

1.0.0 · Source§

impl Debug for devela::all::PathDisplay<'_>

1.7.0 · Source§

impl Debug for StripPrefixError

1.33.0 · Source§

impl Debug for PhantomPinned

1.16.0 · Source§

impl Debug for devela::all::RandomState

1.0.0 · Source§

impl Debug for RangeFull

1.0.0 · Source§

impl Debug for devela::all::String

Source§

impl Debug for True

1.34.0 · Source§

impl Debug for devela::all::TryFromIntError

Source§

impl Debug for Xabc

Available on crate feature rand only.
Source§

impl Debug for XorShift8

Available on crate feature rand only.
Source§

impl Debug for XorShift16

Available on crate feature rand only.
Source§

impl Debug for XorShift32

Available on crate feature rand only.
Source§

impl Debug for XorShift64

Available on crate feature rand only.
Source§

impl Debug for XorShift128

Available on crate feature rand only.
Source§

impl Debug for XorShift128p

Available on crate feature rand only.
Source§

impl Debug for Xoroshiro128pp

Available on crate feature rand only.
Source§

impl Debug for Xyza8a

Available on crate feature rand only.
Source§

impl Debug for Xyza8b

Available on crate feature rand only.
§

impl Debug for m128

§

impl Debug for m128d

§

impl Debug for m128i

§

impl Debug for m256

§

impl Debug for m256d

§

impl Debug for m256i

1.0.0 · Source§

impl Debug for TypeId

Source§

impl Debug for DataOverflow

Source§

impl Debug for ElementNotFound

Source§

impl Debug for IdPinBox

Source§

impl Debug for IndexOutOfBounds

Source§

impl Debug for InvalidAxisLength

Source§

impl Debug for KeyAlreadyExists

Source§

impl Debug for MismatchedCapacity

Source§

impl Debug for MismatchedDimensions

Source§

impl Debug for MismatchedIndices

Source§

impl Debug for NodeEmpty

Source§

impl Debug for NodeLinkNotSet

Source§

impl Debug for NodeLinkNotUnique

Source§

impl Debug for NotEnoughElements

Source§

impl Debug for NotEnoughSpace

Source§

impl Debug for PartiallyAdded

1.3.0 · Source§

impl Debug for devela::lang::CStr

1.0.0 · Source§

impl Debug for devela::lang::CString

1.0.0 · Source§

impl Debug for OsStr

1.0.0 · Source§

impl Debug for OsString

Source§

impl Debug for Divisor<i8>

Source§

impl Debug for Divisor<i16>

Source§

impl Debug for Divisor<i32>

Source§

impl Debug for Divisor<i64>

Source§

impl Debug for Divisor<i128>

Source§

impl Debug for Divisor<isize>

Source§

impl Debug for Divisor<u8>

Source§

impl Debug for Divisor<u16>

Source§

impl Debug for Divisor<u32>

Source§

impl Debug for Divisor<u64>

Source§

impl Debug for Divisor<u128>

Source§

impl Debug for Divisor<usize>

1.27.0 · Source§

impl Debug for Duration

1.66.0 · Source§

impl Debug for TryFromFloatSecsError

1.8.0 · Source§

impl Debug for Instant

1.8.0 · Source§

impl Debug for SystemTime

Source§

impl Debug for devela::phys::SystemTimeError

Source§

impl Debug for UnixTimeI64

Source§

impl Debug for UnixTimeU32

§

impl Debug for devela::work::AtomicBool

§

impl Debug for AtomicF32

§

impl Debug for AtomicF64

§

impl Debug for devela::work::AtomicI8

§

impl Debug for devela::work::AtomicI16

§

impl Debug for devela::work::AtomicI32

§

impl Debug for devela::work::AtomicI64

§

impl Debug for AtomicI128

§

impl Debug for devela::work::AtomicIsize

§

impl Debug for devela::work::AtomicU8

§

impl Debug for devela::work::AtomicU16

§

impl Debug for devela::work::AtomicU32

§

impl Debug for devela::work::AtomicU64

§

impl Debug for AtomicU128

§

impl Debug for devela::work::AtomicUsize

1.16.0 · Source§

impl Debug for Barrier

1.16.0 · Source§

impl Debug for BarrierWaitResult

1.16.0 · Source§

impl Debug for devela::work::Condvar

1.16.0 · Source§

impl Debug for devela::work::Once

1.16.0 · Source§

impl Debug for devela::work::OnceState

1.36.0 · Source§

impl Debug for Context<'_>

1.36.0 · Source§

impl Debug for RawWaker

1.36.0 · Source§

impl Debug for RawWakerVTable

1.36.0 · Source§

impl Debug for devela::work::TaskWaker

1.0.0 · Source§

impl Debug for Thread

1.26.0 · Source§

impl Debug for AccessError

1.0.0 · Source§

impl Debug for Builder

1.19.0 · Source§

impl Debug for ThreadId

1.63.0 · Source§

impl Debug for devela::work::ThreadScope<'_, '_>

1.5.0 · Source§

impl Debug for devela::work::WaitTimeoutResult

Source§

impl Debug for GraphemeString

Source§

impl Debug for InvalidChar

Source§

impl Debug for InvalidUtf8

1.38.0 · Source§

impl Debug for devela::text::IterChars<'_>

1.0.0 · Source§

impl Debug for ParseFloatError

1.0.0 · Source§

impl Debug for ParseIntError

Source§

impl Debug for char7

Source§

impl Debug for char8

Source§

impl Debug for char16

Source§

impl Debug for getrandom::error::Error

Source§

impl Debug for BVec2

Source§

impl Debug for BVec3

Source§

impl Debug for BVec4

Source§

impl Debug for BVec3A

Source§

impl Debug for BVec4A

Source§

impl Debug for Affine2

Source§

impl Debug for Affine3A

Source§

impl Debug for Mat3

Source§

impl Debug for Mat2

Source§

impl Debug for Mat3A

Source§

impl Debug for Mat4

Source§

impl Debug for Quat

Source§

impl Debug for Vec3A

Source§

impl Debug for Vec4

Source§

impl Debug for Vec2

Source§

impl Debug for Vec3

Source§

impl Debug for DAffine2

Source§

impl Debug for DAffine3

Source§

impl Debug for DMat2

Source§

impl Debug for DMat3

Source§

impl Debug for DMat4

Source§

impl Debug for DQuat

Source§

impl Debug for DVec2

Source§

impl Debug for DVec3

Source§

impl Debug for DVec4

Source§

impl Debug for I8Vec2

Source§

impl Debug for I8Vec3

Source§

impl Debug for I8Vec4

Source§

impl Debug for I16Vec2

Source§

impl Debug for I16Vec3

Source§

impl Debug for I16Vec4

Source§

impl Debug for IVec2

Source§

impl Debug for IVec3

Source§

impl Debug for IVec4

Source§

impl Debug for I64Vec2

Source§

impl Debug for I64Vec3

Source§

impl Debug for I64Vec4

Source§

impl Debug for U8Vec2

Source§

impl Debug for U8Vec3

Source§

impl Debug for U8Vec4

Source§

impl Debug for U16Vec2

Source§

impl Debug for U16Vec3

Source§

impl Debug for U16Vec4

Source§

impl Debug for UVec2

Source§

impl Debug for UVec3

Source§

impl Debug for UVec4

Source§

impl Debug for U64Vec2

Source§

impl Debug for U64Vec3

Source§

impl Debug for U64Vec4

§

impl Debug for epoll_data_t

§

impl Debug for in6_un_t

§

impl Debug for io_uring_sqe_buf_addr_t

§

impl Debug for io_uring_sqe_buf_group_t

§

impl Debug for io_uring_sqe_file_off_t

§

impl Debug for io_uring_sqe_opt_buf_t

§

impl Debug for io_uring_sqe_other_flags_t

§

impl Debug for sigev_un_t

§

impl Debug for sigval_t

§

impl Debug for devela::_dep::rkyv::de::Metadata

§

impl Debug for io_uring_user_data

§

impl Debug for Access

§

impl Debug for Addr

§

impl Debug for ArenaFull

§

impl Debug for AudioTstampType

§

impl Debug for Backoff

§

impl Debug for Bytes

§

impl Debug for BytesMut

§

impl Debug for Capture

§

impl Debug for Card

§

impl Debug for ChmapPosition

§

impl Debug for ChmapType

§

impl Debug for ChunkError

§

impl Debug for ClientInfo

§

impl Debug for CoderResult

§

impl Debug for CollectionAllocErr

§

impl Debug for Collector

§

impl Debug for Condvar

§

impl Debug for Configuration

§

impl Debug for Connect

§

impl Debug for Control

§

impl Debug for Controller

§

impl Debug for Current

§

impl Debug for DecoderResult

§

impl Debug for Direction

§

impl Debug for ElemId

§

impl Debug for ElemIface

§

impl Debug for ElemType

§

impl Debug for ElemValue

§

impl Debug for EncoderResult

§

impl Debug for Encoding

§

impl Debug for Error

§

impl Debug for EvCtrl

§

impl Debug for EvNote

§

impl Debug for EvResult

§

impl Debug for Event

When the alternate flag is enabled this will print platform specific details, for example the fields of the kevent structure on platforms that use kqueue(2). Note however that the output of this implementation is not consider a part of the stable API.

§

impl Debug for EventType

§

impl Debug for Events

§

impl Debug for ExtraXYZ

§

impl Debug for ExtraZXZ

§

impl Debug for ExtraZYX

§

impl Debug for FilterOp

§

impl Debug for FixedState

§

impl Debug for FixedState

§

impl Debug for Flags

§

impl Debug for Format

§

impl Debug for Guard

§

impl Debug for Handle

§

impl Debug for Hint

§

impl Debug for I11

§

impl Debug for I20

§

impl Debug for InsertWithKeyError

§

impl Debug for Interest

§

impl Debug for IntraXYZ

§

impl Debug for IntraZXZ

§

impl Debug for IntraZYX

§

impl Debug for Key

§

impl Debug for Latin1Bidi

§

impl Debug for LocalHandle

§

impl Debug for MilliBel

§

impl Debug for Mixer

§

impl Debug for Once

§

impl Debug for OnceBool

§

impl Debug for OnceNonZeroUsize

§

impl Debug for OnceState

§

impl Debug for Output

§

impl Debug for ParkResult

§

impl Debug for ParkToken

§

impl Debug for Parker

§

impl Debug for ParseError

§

impl Debug for PeekError

§

impl Debug for Playback

§

impl Debug for Poll

§

impl Debug for PopError

§

impl Debug for PortCap

§

impl Debug for PortInfo

§

impl Debug for PortType

§

impl Debug for RandomState

§

impl Debug for RandomState

§

impl Debug for Receiver

§

impl Debug for Registry

§

impl Debug for Remove

§

impl Debug for RequeueOp

§

impl Debug for Round

§

impl Debug for Scope<'_>

§

impl Debug for SelemChannelId

§

impl Debug for Sender

§

impl Debug for SigId

§

impl Debug for SignalOnly

§

impl Debug for State

§

impl Debug for Status

§

impl Debug for TcpListener

§

impl Debug for TcpStream

§

impl Debug for Token

§

impl Debug for TstampType

§

impl Debug for U11

§

impl Debug for U20

§

impl Debug for UdpSocket

§

impl Debug for UninitSlice

§

impl Debug for UnixDatagram

§

impl Debug for UnixListener

§

impl Debug for UnixStream

§

impl Debug for UnparkResult

§

impl Debug for UnparkToken

§

impl Debug for Unparker

§

impl Debug for Utf8Error

§

impl Debug for Utf8Error

§

impl Debug for ValueOr

§

impl Debug for WaitGroup

§

impl Debug for WaitTimeoutResult

§

impl Debug for Waker

§

impl Debug for WithRawSiginfo

§

impl Debug for __kernel_fd_set

§

impl Debug for __kernel_fsid_t

§

impl Debug for __kernel_itimerspec

§

impl Debug for __kernel_itimerspec

§

impl Debug for __kernel_old_itimerval

§

impl Debug for __kernel_old_itimerval

§

impl Debug for __kernel_old_timespec

§

impl Debug for __kernel_old_timespec

§

impl Debug for __kernel_old_timeval

§

impl Debug for __kernel_old_timeval

§

impl Debug for __kernel_sock_timeval

§

impl Debug for __kernel_sock_timeval

§

impl Debug for __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1

§

impl Debug for __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1

§

impl Debug for __kernel_timespec

§

impl Debug for __kernel_timespec

§

impl Debug for __old_kernel_stat

§

impl Debug for __sifields__bindgen_ty_1

§

impl Debug for __sifields__bindgen_ty_4

§

impl Debug for __sifields__bindgen_ty_6

§

impl Debug for __sifields__bindgen_ty_7

§

impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1

§

impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2

§

impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3

§

impl Debug for __user_cap_data_struct

§

impl Debug for __user_cap_header_struct

§

impl Debug for __va_list_tag

§

impl Debug for _bindgen_ty_1

§

impl Debug for _bindgen_ty_1

§

impl Debug for _bindgen_ty_1

§

impl Debug for _bindgen_ty_2

§

impl Debug for _bindgen_ty_2

§

impl Debug for _bindgen_ty_2

§

impl Debug for _bindgen_ty_3

§

impl Debug for _bindgen_ty_3

§

impl Debug for _bindgen_ty_3

§

impl Debug for _bindgen_ty_4

§

impl Debug for _bindgen_ty_4

§

impl Debug for _bindgen_ty_4

§

impl Debug for _bindgen_ty_5

§

impl Debug for _bindgen_ty_5

§

impl Debug for _bindgen_ty_5

§

impl Debug for _bindgen_ty_6

§

impl Debug for _bindgen_ty_6

§

impl Debug for _bindgen_ty_6

§

impl Debug for _bindgen_ty_7

§

impl Debug for _bindgen_ty_7

§

impl Debug for _bindgen_ty_8

§

impl Debug for _bindgen_ty_8

§

impl Debug for _bindgen_ty_9

§

impl Debug for _bindgen_ty_9

§

impl Debug for _bindgen_ty_10

§

impl Debug for _bindgen_ty_11

§

impl Debug for _bindgen_ty_12

§

impl Debug for _bindgen_ty_13

§

impl Debug for _bindgen_ty_14

§

impl Debug for _bindgen_ty_15

§

impl Debug for _bindgen_ty_16

§

impl Debug for _bindgen_ty_17

§

impl Debug for _bindgen_ty_18

§

impl Debug for _bindgen_ty_19

§

impl Debug for _bindgen_ty_20

§

impl Debug for _bindgen_ty_21

§

impl Debug for _bindgen_ty_22

§

impl Debug for _bindgen_ty_23

§

impl Debug for _bindgen_ty_24

§

impl Debug for _bindgen_ty_25

§

impl Debug for _bindgen_ty_26

§

impl Debug for _bindgen_ty_27

§

impl Debug for _bindgen_ty_28

§

impl Debug for _bindgen_ty_29

§

impl Debug for _bindgen_ty_30

§

impl Debug for _bindgen_ty_31

§

impl Debug for _bindgen_ty_32

§

impl Debug for _bindgen_ty_33

§

impl Debug for _bindgen_ty_34

§

impl Debug for _bindgen_ty_35

§

impl Debug for _bindgen_ty_36

§

impl Debug for _bindgen_ty_37

§

impl Debug for _bindgen_ty_38

§

impl Debug for _bindgen_ty_39

§

impl Debug for _bindgen_ty_40

§

impl Debug for _bindgen_ty_41

§

impl Debug for _bindgen_ty_42

§

impl Debug for _bindgen_ty_43

§

impl Debug for _bindgen_ty_44

§

impl Debug for _bindgen_ty_45

§

impl Debug for _bindgen_ty_46

§

impl Debug for _bindgen_ty_47

§

impl Debug for _bindgen_ty_48

§

impl Debug for _bindgen_ty_49

§

impl Debug for _bindgen_ty_50

§

impl Debug for _bindgen_ty_51

§

impl Debug for _bindgen_ty_52

§

impl Debug for _bindgen_ty_53

§

impl Debug for _bindgen_ty_54

§

impl Debug for _bindgen_ty_55

§

impl Debug for _bindgen_ty_56

§

impl Debug for _bindgen_ty_57

§

impl Debug for _bindgen_ty_58

§

impl Debug for _bindgen_ty_59

§

impl Debug for _bindgen_ty_60

§

impl Debug for _bindgen_ty_61

§

impl Debug for _bindgen_ty_62

§

impl Debug for _bindgen_ty_63

§

impl Debug for _bindgen_ty_64

§

impl Debug for _bindgen_ty_65

§

impl Debug for _bindgen_ty_66

§

impl Debug for _snd_async_handler

§

impl Debug for _snd_config

§

impl Debug for _snd_config_iterator

§

impl Debug for _snd_config_update

§

impl Debug for _snd_ctl

§

impl Debug for _snd_ctl_card_info

§

impl Debug for _snd_ctl_elem_id

§

impl Debug for _snd_ctl_elem_info

§

impl Debug for _snd_ctl_elem_list

§

impl Debug for _snd_ctl_elem_value

§

impl Debug for _snd_ctl_event

§

impl Debug for _snd_hctl

§

impl Debug for _snd_hctl_elem

§

impl Debug for _snd_hwdep

§

impl Debug for _snd_hwdep_dsp_image

§

impl Debug for _snd_hwdep_dsp_status

§

impl Debug for _snd_hwdep_info

§

impl Debug for _snd_input

§

impl Debug for _snd_mixer

§

impl Debug for _snd_mixer_class

§

impl Debug for _snd_mixer_elem

§

impl Debug for _snd_mixer_selem_id

§

impl Debug for _snd_output

§

impl Debug for _snd_pcm

§

impl Debug for _snd_pcm_access_mask

§

impl Debug for _snd_pcm_audio_tstamp_config

§

impl Debug for _snd_pcm_audio_tstamp_report

§

impl Debug for _snd_pcm_channel_area

§

impl Debug for _snd_pcm_format_mask

§

impl Debug for _snd_pcm_hook

§

impl Debug for _snd_pcm_hw_params

§

impl Debug for _snd_pcm_info

§

impl Debug for _snd_pcm_scope

§

impl Debug for _snd_pcm_scope_ops

§

impl Debug for _snd_pcm_status

§

impl Debug for _snd_pcm_subformat_mask

§

impl Debug for _snd_pcm_sw_params

§

impl Debug for _snd_rawmidi

§

impl Debug for _snd_rawmidi_info

§

impl Debug for _snd_rawmidi_params

§

impl Debug for _snd_rawmidi_status

§

impl Debug for _snd_sctl

§

impl Debug for _snd_seq

§

impl Debug for _snd_seq_client_info

§

impl Debug for _snd_seq_client_pool

§

impl Debug for _snd_seq_port_info

§

impl Debug for _snd_seq_port_subscribe

§

impl Debug for _snd_seq_query_subscribe

§

impl Debug for _snd_seq_queue_info

§

impl Debug for _snd_seq_queue_status

§

impl Debug for _snd_seq_queue_tempo

§

impl Debug for _snd_seq_queue_timer

§

impl Debug for _snd_seq_remove_events

§

impl Debug for _snd_seq_system_info

§

impl Debug for _snd_timer

§

impl Debug for _snd_timer_ginfo

§

impl Debug for _snd_timer_gparams

§

impl Debug for _snd_timer_gstatus

§

impl Debug for _snd_timer_id

§

impl Debug for _snd_timer_info

§

impl Debug for _snd_timer_params

§

impl Debug for _snd_timer_query

§

impl Debug for _snd_timer_read

§

impl Debug for _snd_timer_status

§

impl Debug for _xt_align

§

impl Debug for cisco_proto

§

impl Debug for clone_args

§

impl Debug for cmsghdr

§

impl Debug for compat_statfs64

§

impl Debug for dyn Value

1.0.0 · Source§

impl Debug for dyn Any

1.0.0 · Source§

impl Debug for dyn Any + Send

1.28.0 · Source§

impl Debug for dyn Any + Send + Sync

§

impl Debug for epoll_event

§

impl Debug for ethhdr

§

impl Debug for f_owner_ex

§

impl Debug for file_clone_range

§

impl Debug for file_clone_range

§

impl Debug for file_dedupe_range

§

impl Debug for file_dedupe_range

§

impl Debug for file_dedupe_range_info

§

impl Debug for file_dedupe_range_info

§

impl Debug for files_stat_struct

§

impl Debug for files_stat_struct

§

impl Debug for flock

§

impl Debug for flock64

§

impl Debug for fr_proto

§

impl Debug for fr_proto_pvc

§

impl Debug for fr_proto_pvc_info

§

impl Debug for fsconfig_command

§

impl Debug for fsconfig_command

§

impl Debug for fscrypt_key

§

impl Debug for fscrypt_key

§

impl Debug for fscrypt_policy_v1

§

impl Debug for fscrypt_policy_v1

§

impl Debug for fscrypt_policy_v2

§

impl Debug for fscrypt_policy_v2

§

impl Debug for fscrypt_provisioning_key_payload

§

impl Debug for fscrypt_provisioning_key_payload

§

impl Debug for fstrim_range

§

impl Debug for fstrim_range

§

impl Debug for fsxattr

§

impl Debug for fsxattr

§

impl Debug for futex_waitv

§

impl Debug for if_stats_msg

§

impl Debug for ifa_cacheinfo

§

impl Debug for ifaddrmsg

§

impl Debug for ifinfomsg

§

impl Debug for ifla_bridge_id

§

impl Debug for ifla_cacheinfo

§

impl Debug for ifla_geneve_df

§

impl Debug for ifla_gtp_role

§

impl Debug for ifla_port_vsi

§

impl Debug for ifla_rmnet_flags

§

impl Debug for ifla_vf_broadcast

§

impl Debug for ifla_vf_guid

§

impl Debug for ifla_vf_mac

§

impl Debug for ifla_vf_rate

§

impl Debug for ifla_vf_rss_query_en

§

impl Debug for ifla_vf_spoofchk

§

impl Debug for ifla_vf_trust

§

impl Debug for ifla_vf_tx_rate

§

impl Debug for ifla_vf_vlan

§

impl Debug for ifla_vf_vlan_info

§

impl Debug for ifla_vlan_flags

§

impl Debug for ifla_vlan_qos_mapping

§

impl Debug for ifla_vxlan_df

§

impl Debug for ifla_vxlan_port_range

§

impl Debug for ifmap

§

impl Debug for in6_addr_gen_mode

§

impl Debug for in_addr

§

impl Debug for in_pktinfo

§

impl Debug for inodes_stat_t

§

impl Debug for inodes_stat_t

§

impl Debug for inotify_event

§

impl Debug for io_cqring_offsets

§

impl Debug for io_sqring_offsets

§

impl Debug for io_uring_buf

§

impl Debug for io_uring_buf_reg

§

impl Debug for io_uring_buf_ring__bindgen_ty_1__bindgen_ty_1

§

impl Debug for io_uring_buf_ring__bindgen_ty_1__bindgen_ty_2

§

impl Debug for io_uring_buf_ring__bindgen_ty_1__bindgen_ty_2__bindgen_ty_1

§

impl Debug for io_uring_cqe

§

impl Debug for io_uring_file_index_range

§

impl Debug for io_uring_files_update

§

impl Debug for io_uring_getevents_arg

§

impl Debug for io_uring_notification_register

§

impl Debug for io_uring_notification_slot

§

impl Debug for io_uring_op

§

impl Debug for io_uring_params

§

impl Debug for io_uring_probe

§

impl Debug for io_uring_probe_op

§

impl Debug for io_uring_recvmsg_out

§

impl Debug for io_uring_rsrc_register

§

impl Debug for io_uring_rsrc_update

§

impl Debug for io_uring_rsrc_update2

§

impl Debug for io_uring_sqe__bindgen_ty_1__bindgen_ty_1

§

impl Debug for io_uring_sqe__bindgen_ty_5__bindgen_ty_1

§

impl Debug for io_uring_sqe__bindgen_ty_6__bindgen_ty_1

§

impl Debug for io_uring_sync_cancel_reg

§

impl Debug for iovec

§

impl Debug for iovec

§

impl Debug for ip6t_getinfo

§

impl Debug for ip6t_icmp

§

impl Debug for ip_auth_hdr

§

impl Debug for ip_beet_phdr

§

impl Debug for ip_comp_hdr

§

impl Debug for ip_esp_hdr

§

impl Debug for ip_mreq

§

impl Debug for ip_mreq_source

§

impl Debug for ip_mreqn

§

impl Debug for ip_msfilter__bindgen_ty_1__bindgen_ty_1

§

impl Debug for ip_msfilter__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1

§

impl Debug for iphdr__bindgen_ty_1__bindgen_ty_1

§

impl Debug for iphdr__bindgen_ty_1__bindgen_ty_2

§

impl Debug for ipv6_opt_hdr

§

impl Debug for ipv6_rt_hdr

§

impl Debug for ipvlan_mode

§

impl Debug for itimerspec

§

impl Debug for itimerval

§

impl Debug for kernel_sigaction

§

impl Debug for kernel_sigset_t

§

impl Debug for ktermios

§

impl Debug for linger

§

impl Debug for linux_dirent64

§

impl Debug for macsec_offload

§

impl Debug for macsec_validation_type

§

impl Debug for macvlan_macaddr_mode

§

impl Debug for macvlan_mode

§

impl Debug for membarrier_cmd

§

impl Debug for membarrier_cmd_flag

§

impl Debug for mmsghdr

§

impl Debug for mount_attr

§

impl Debug for mount_attr

§

impl Debug for nda_cacheinfo

§

impl Debug for ndmsg

§

impl Debug for ndt_config

§

impl Debug for ndt_stats

§

impl Debug for ndtmsg

§

impl Debug for nduseroptmsg

§

impl Debug for net_device_flags

§

impl Debug for new_utsname

§

impl Debug for nf_dev_hooks

§

impl Debug for nf_inet_hooks

§

impl Debug for nf_ip6_hook_priorities

§

impl Debug for nf_ip_hook_priorities

§

impl Debug for nl_mmap_hdr

§

impl Debug for nl_mmap_req

§

impl Debug for nl_mmap_status

§

impl Debug for nl_pktinfo

§

impl Debug for nla_bitfield32

§

impl Debug for nlattr

§

impl Debug for nlmsgerr

§

impl Debug for nlmsgerr_attrs

§

impl Debug for nlmsghdr

§

impl Debug for old_utsname

§

impl Debug for oldold_utsname

§

impl Debug for open_how

§

impl Debug for pollfd

§

impl Debug for prctl_mm_map

§

impl Debug for prefix_cacheinfo

§

impl Debug for prefixmsg

§

impl Debug for rand_pool_info

§

impl Debug for raw_hdlc_proto

§

impl Debug for rlimit

§

impl Debug for rlimit64

§

impl Debug for robust_list

§

impl Debug for robust_list_head

§

impl Debug for rt_class_t

§

impl Debug for rt_scope_t

§

impl Debug for rta_cacheinfo

§

impl Debug for rta_mfc_stats

§

impl Debug for rta_session__bindgen_ty_1__bindgen_ty_1

§

impl Debug for rta_session__bindgen_ty_1__bindgen_ty_2

§

impl Debug for rtattr

§

impl Debug for rtattr_type_t

§

impl Debug for rtgenmsg

§

impl Debug for rtmsg

§

impl Debug for rtnexthop

§

impl Debug for rtnl_hw_stats64

§

impl Debug for rtvia

§

impl Debug for rusage

§

impl Debug for sigaction

§

impl Debug for sigaltstack

§

impl Debug for sigevent__bindgen_ty_1__bindgen_ty_1

§

impl Debug for snd_devname

§

impl Debug for snd_midi_event

§

impl Debug for snd_mixer_selem_regopt

§

impl Debug for snd_pcm_chmap

§

impl Debug for snd_pcm_chmap_query

§

impl Debug for snd_seq_addr

§

impl Debug for snd_seq_connect

§

impl Debug for snd_seq_ev_ctrl

§

impl Debug for snd_seq_ev_ext

§

impl Debug for snd_seq_ev_note

§

impl Debug for snd_seq_ev_raw8

§

impl Debug for snd_seq_ev_raw32

§

impl Debug for snd_seq_queue_skew

§

impl Debug for snd_seq_real_time

§

impl Debug for snd_seq_result

§

impl Debug for snd_shm_area

§

impl Debug for sockaddr_in

§

impl Debug for sockaddr_nl

§

impl Debug for sockaddr_un

§

impl Debug for sockaddr_xdp

§

impl Debug for socket_state

§

impl Debug for stat

§

impl Debug for statfs

§

impl Debug for statfs64

§

impl Debug for statx

§

impl Debug for statx_timestamp

§

impl Debug for sync_serial_settings

§

impl Debug for sysinfo

§

impl Debug for tcamsg

§

impl Debug for tcmsg

§

impl Debug for tcp_ca_state

§

impl Debug for tcp_diag_md5sig

§

impl Debug for tcp_fastopen_client_fail

§

impl Debug for tcp_info

§

impl Debug for tcp_repair_opt

§

impl Debug for tcp_repair_window

§

impl Debug for tcp_zerocopy_receive

§

impl Debug for tcphdr

§

impl Debug for te1_settings

§

impl Debug for termio

§

impl Debug for termios

§

impl Debug for termios2

§

impl Debug for timespec

§

impl Debug for timeval

§

impl Debug for timezone

§

impl Debug for tunnel_msg

§

impl Debug for ucred

§

impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_2

§

impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_3

§

impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_4

§

impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_5

§

impl Debug for uffdio_api

§

impl Debug for uffdio_continue

§

impl Debug for uffdio_copy

§

impl Debug for uffdio_range

§

impl Debug for uffdio_register

§

impl Debug for uffdio_writeprotect

§

impl Debug for uffdio_zeropage

§

impl Debug for user_desc

§

impl Debug for vfs_cap_data

§

impl Debug for vfs_cap_data__bindgen_ty_1

§

impl Debug for vfs_ns_cap_data

§

impl Debug for vfs_ns_cap_data__bindgen_ty_1

§

impl Debug for winsize

§

impl Debug for x25_hdlc_proto

§

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 xt_counters

§

impl Debug for xt_counters_info

§

impl Debug for xt_entry_match__bindgen_ty_1__bindgen_ty_1

§

impl Debug for xt_entry_match__bindgen_ty_1__bindgen_ty_2

§

impl Debug for xt_entry_target__bindgen_ty_1__bindgen_ty_1

§

impl Debug for xt_entry_target__bindgen_ty_1__bindgen_ty_2

§

impl Debug for xt_get_revision

§

impl Debug for xt_match

§

impl Debug for xt_target

§

impl Debug for xt_tcp

§

impl Debug for xt_udp

Source§

impl<'a> Debug for Utf8Pattern<'a>

§

impl<'a> Debug for ShaderSource<'a>

§

impl<'a> Debug for PyStringData<'a>

§

impl<'a> Debug for WaitId<'a>

§

impl<'a> Debug for DynamicClockId<'a>

Source§

impl<'a> Debug for Unexpected<'a>

§

impl<'a> Debug for ProcessesToUpdate<'a>

1.0.0 · Source§

impl<'a> Debug for devela::all::PathComponent<'a>

1.0.0 · Source§

impl<'a> Debug for Prefix<'a>

Source§

impl<'a> Debug for Request<'a>

Source§

impl<'a> Debug for Source<'a>

Source§

impl<'a> Debug for devela::_core::ffi::c_str::Bytes<'a>

Source§

impl<'a> Debug for BorrowedCursor<'a>

1.60.0 · Source§

impl<'a> Debug for EscapeAscii<'a>

Source§

impl<'a> Debug for CharSearcher<'a>

1.0.0 · Source§

impl<'a> Debug for devela::_core::str::Bytes<'a>

1.0.0 · Source§

impl<'a> Debug for devela::_core::str::CharIndices<'a>

1.34.0 · Source§

impl<'a> Debug for devela::_core::str::EscapeDebug<'a>

1.34.0 · Source§

impl<'a> Debug for devela::_core::str::EscapeDefault<'a>

1.34.0 · Source§

impl<'a> Debug for devela::_core::str::EscapeUnicode<'a>

1.0.0 · Source§

impl<'a> Debug for devela::_core::str::Lines<'a>

1.0.0 · Source§

impl<'a> Debug for LinesAny<'a>

1.34.0 · Source§

impl<'a> Debug for devela::_core::str::SplitAsciiWhitespace<'a>

1.1.0 · Source§

impl<'a> Debug for devela::_core::str::SplitWhitespace<'a>

1.79.0 · Source§

impl<'a> Debug for Utf8Chunk<'a>

Source§

impl<'a> Debug for ContextBuilder<'a>

1.0.0 · Source§

impl<'a> Debug for devela::_dep::_std::net::Incoming<'a>

1.10.0 · Source§

impl<'a> Debug for devela::_dep::_std::os::unix::net::Incoming<'a>

Source§

impl<'a> Debug for SocketAncillary<'a>

1.81.0 · Source§

impl<'a> Debug for PanicHookInfo<'a>

1.57.0 · Source§

impl<'a> Debug for CommandArgs<'a>

1.57.0 · Source§

impl<'a> Debug for CommandEnvs<'a>

§

impl<'a> Debug for ChunkIter<'a>

§

impl<'a> Debug for ChunkRawIter<'a>

§

impl<'a> Debug for SpanArithmetic<'a>

§

impl<'a> Debug for SpanCompare<'a>

§

impl<'a> Debug for SpanRelativeTo<'a>

§

impl<'a> Debug for SpanRound<'a>

§

impl<'a> Debug for SpanTotal<'a>

§

impl<'a> Debug for ZonedDifference<'a>

Source§

impl<'a> Debug for ArrayIter<'a>

Source§

impl<'a> Debug for devela::_dep::log::Metadata<'a>

Source§

impl<'a> Debug for devela::_dep::log::MetadataBuilder<'a>

Source§

impl<'a> Debug for devela::_dep::log::Record<'a>

Source§

impl<'a> Debug for RecordBuilder<'a>

§

impl<'a> Debug for PythonVersionInfo<'a>

§

impl<'a> Debug for devela::_dep::rayon::string::Drain<'a>

§

impl<'a> Debug for BroadcastContext<'a>

§

impl<'a> Debug for SubAllocator<'a>

§

impl<'a> Debug for Buffer<'a>

§

impl<'a> Debug for ArchiveValidator<'a>

§

impl<'a> Debug for InotifyEvent<'a>

§

impl<'a> Debug for RawDirEntry<'a>

§

impl<'a> Debug for devela::_dep::symphonia::core::meta::Metadata<'a>

§

impl<'a> Debug for ValueSet<'a>

§

impl<'a> Debug for devela::_dep::tracing::span::Attributes<'a>

§

impl<'a> Debug for Entered<'a>

§

impl<'a> Debug for devela::_dep::tracing::span::Record<'a>

§

impl<'a> Debug for devela::_dep::tracing::Event<'a>

§

impl<'a> Debug for devela::_dep::tracing::Metadata<'a>

§

impl<'a> Debug for GraphemeIndices<'a>

§

impl<'a> Debug for Graphemes<'a>

§

impl<'a> Debug for USentenceBoundIndices<'a>

§

impl<'a> Debug for USentenceBounds<'a>

§

impl<'a> Debug for UWordBoundIndices<'a>

§

impl<'a> Debug for UWordBounds<'a>

§

impl<'a> Debug for UnicodeSentences<'a>

§

impl<'a> Debug for UnicodeWordIndices<'a>

§

impl<'a> Debug for UnicodeWords<'a>

1.36.0 · Source§

impl<'a> Debug for IoSlice<'a>

1.36.0 · Source§

impl<'a> Debug for IoSliceMut<'a>

1.28.0 · Source§

impl<'a> Debug for Ancestors<'a>

1.10.0 · Source§

impl<'a> Debug for PanicInfo<'a>

1.10.0 · Source§

impl<'a> Debug for Location<'a>

1.0.0 · Source§

impl<'a> Debug for PrefixComponent<'a>

Source§

impl<'a> Debug for IdPin<'a>

§

impl<'a> Debug for Elem<'a>

§

impl<'a> Debug for Event<'a>

§

impl<'a> Debug for HwParams<'a>

§

impl<'a> Debug for Iter<'a>

§

impl<'a> Debug for SourceFd<'a>

§

impl<'a> Debug for SwParams<'a>

Source§

impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>

Source§

impl<'a, 'b> Debug for StrSearcher<'a, 'b>

Source§

impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'bump> Debug for devela::_dep::bumpalo::collections::string::Drain<'a, 'bump>

§

impl<'a, 'bump, I> Debug for devela::_dep::bumpalo::collections::vec::Splice<'a, 'bump, I>
where I: Debug + Iterator + 'a + 'bump, <I as Iterator>::Item: Debug,

§

impl<'a, 'bump, T> Debug for devela::_dep::bumpalo::collections::vec::Drain<'a, 'bump, T>
where T: 'a + 'bump + Debug,

§

impl<'a, 'bump, T, F> Debug for DrainFilter<'a, 'bump, T, F>
where 'bump: 'a, T: Debug + 'a + 'bump, F: Debug + FnMut(&mut T) -> bool,

Source§

impl<'a, 'f> Debug for VaList<'a, 'f>
where 'f: 'a,

§

impl<'a, 'h> Debug for devela::_dep::memchr::arch::all::memchr::OneIter<'a, 'h>

§

impl<'a, 'h> Debug for devela::_dep::memchr::arch::all::memchr::ThreeIter<'a, 'h>

§

impl<'a, 'h> Debug for devela::_dep::memchr::arch::all::memchr::TwoIter<'a, 'h>

§

impl<'a, 'h> Debug for devela::_dep::memchr::arch::x86_64::avx2::memchr::OneIter<'a, 'h>

§

impl<'a, 'h> Debug for devela::_dep::memchr::arch::x86_64::avx2::memchr::ThreeIter<'a, 'h>

§

impl<'a, 'h> Debug for devela::_dep::memchr::arch::x86_64::avx2::memchr::TwoIter<'a, 'h>

§

impl<'a, 'h> Debug for devela::_dep::memchr::arch::x86_64::sse2::memchr::OneIter<'a, 'h>

§

impl<'a, 'h> Debug for devela::_dep::memchr::arch::x86_64::sse2::memchr::ThreeIter<'a, 'h>

§

impl<'a, 'h> Debug for devela::_dep::memchr::arch::x86_64::sse2::memchr::TwoIter<'a, 'h>

§

impl<'a, 'py> Debug for DowncastError<'a, 'py>

1.0.0 · Source§

impl<'a, A> Debug for devela::_core::option::Iter<'a, A>
where A: Debug + 'a,

1.0.0 · Source§

impl<'a, A> Debug for devela::_core::option::IterMut<'a, A>
where A: Debug + 'a,

Source§

impl<'a, E> Debug for BytesDeserializer<'a, E>

Source§

impl<'a, E> Debug for CowStrDeserializer<'a, E>

Source§

impl<'a, E> Debug for StrDeserializer<'a, E>

Source§

impl<'a, I> Debug for ByRefSized<'a, I>
where I: Debug,

1.21.0 · Source§

impl<'a, I, A> Debug for devela::_dep::_alloc::vec::Splice<'a, I, A>
where I: Debug + Iterator + 'a, A: Debug + Allocator + 'a, <I as Iterator>::Item: Debug,

Source§

impl<'a, K, F> Debug for devela::_dep::_std::collections::hash_set::ExtractIf<'a, K, F>
where F: FnMut(&K) -> bool,

§

impl<'a, K, V> Debug for devela::_dep::rayon::collections::btree_map::Iter<'a, K, V>
where K: Debug + Ord + Sync, V: Debug + Sync,

§

impl<'a, K, V> Debug for devela::_dep::rayon::collections::btree_map::IterMut<'a, K, V>
where K: Debug + Ord + Sync, V: Debug + Send,

§

impl<'a, K, V> Debug for devela::_dep::rayon::collections::hash_map::Drain<'a, K, V>
where K: Debug + Hash + Eq + Send, V: Debug + Send,

§

impl<'a, K, V> Debug for devela::_dep::rayon::collections::hash_map::Iter<'a, K, V>
where K: Debug + Hash + Eq + Sync, V: Debug + Sync,

§

impl<'a, K, V> Debug for devela::_dep::rayon::collections::hash_map::IterMut<'a, K, V>
where K: Debug + Hash + Eq + Sync, V: Debug + Send,

Source§

impl<'a, K, V, F> Debug for devela::_dep::_std::collections::hash_map::ExtractIf<'a, K, V, F>
where F: FnMut(&K, &mut V) -> bool,

1.5.0 · Source§

impl<'a, P> Debug for devela::_core::str::MatchIndices<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.2.0 · Source§

impl<'a, P> Debug for devela::_core::str::Matches<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.5.0 · Source§

impl<'a, P> Debug for RMatchIndices<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.2.0 · Source§

impl<'a, P> Debug for RMatches<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for devela::_core::str::RSplit<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for devela::_core::str::RSplitN<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for RSplitTerminator<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for devela::_core::str::Split<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.51.0 · Source§

impl<'a, P> Debug for devela::_core::str::SplitInclusive<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for devela::_core::str::SplitN<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 · Source§

impl<'a, P> Debug for devela::_core::str::SplitTerminator<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

§

impl<'a, R> Debug for ReplacerRef<'a, R>
where R: Debug + ?Sized,

§

impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T>
where R: RawMutex + 'a, G: GetThreadId + 'a, T: Debug + 'a + ?Sized,

§

impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T>
where R: RawMutex + 'a, G: GetThreadId + 'a, T: Debug + 'a + ?Sized,

§

impl<'a, R, T> Debug for MappedMutexGuard<'a, R, T>
where R: RawMutex + 'a, T: Debug + 'a + ?Sized,

§

impl<'a, R, T> Debug for MappedRwLockReadGuard<'a, R, T>
where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,

§

impl<'a, R, T> Debug for MappedRwLockWriteGuard<'a, R, T>
where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,

§

impl<'a, R, T> Debug for MutexGuard<'a, R, T>
where R: RawMutex + 'a, T: Debug + 'a + ?Sized,

§

impl<'a, R, T> Debug for RwLockReadGuard<'a, R, T>
where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,

§

impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
where R: RawRwLockUpgrade + 'a, T: Debug + 'a + ?Sized,

§

impl<'a, R, T> Debug for RwLockWriteGuard<'a, R, T>
where R: RawRwLock + 'a, T: Debug + 'a + ?Sized,

1.0.0 · Source§

impl<'a, T> Debug for devela::_core::result::Iter<'a, T>
where T: Debug + 'a,

1.0.0 · Source§

impl<'a, T> Debug for devela::_core::result::IterMut<'a, T>
where T: Debug + 'a,

1.0.0 · Source§

impl<'a, T> Debug for devela::_core::slice::Chunks<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for devela::_core::slice::ChunksExact<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for devela::_core::slice::ChunksExactMut<'a, T>
where T: Debug + 'a,

1.0.0 · Source§

impl<'a, T> Debug for devela::_core::slice::ChunksMut<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for devela::_core::slice::RChunks<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for devela::_core::slice::RChunksExact<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for devela::_core::slice::RChunksExactMut<'a, T>
where T: Debug + 'a,

1.31.0 · Source§

impl<'a, T> Debug for devela::_core::slice::RChunksMut<'a, T>
where T: Debug + 'a,

1.0.0 · Source§

impl<'a, T> Debug for devela::_core::slice::Windows<'a, T>
where T: Debug + 'a,

1.17.0 · Source§

impl<'a, T> Debug for devela::_dep::_alloc::collections::btree_set::Range<'a, T>
where T: Debug + 'a,

Source§

impl<'a, T> Debug for devela::_dep::_std::sync::mpmc::Iter<'a, T>
where T: Debug + 'a,

Source§

impl<'a, T> Debug for devela::_dep::_std::sync::mpmc::TryIter<'a, T>
where T: Debug + 'a,

1.0.0 · Source§

impl<'a, T> Debug for devela::_dep::_std::sync::mpsc::Iter<'a, T>
where T: Debug + 'a,

1.15.0 · Source§

impl<'a, T> Debug for devela::_dep::_std::sync::mpsc::TryIter<'a, T>
where T: Debug + 'a,

§

impl<'a, T> Debug for devela::_dep::bumpalo::boxed::Box<'a, T>
where T: Debug + ?Sized,

§

impl<'a, T> Debug for devela::_dep::rayon::collections::binary_heap::Drain<'a, T>
where T: Debug + Ord + Send,

§

impl<'a, T> Debug for devela::_dep::rayon::collections::binary_heap::Iter<'a, T>
where T: Debug + Ord + Sync,

§

impl<'a, T> Debug for devela::_dep::rayon::collections::btree_set::Iter<'a, T>
where T: Debug + Ord + Sync,

§

impl<'a, T> Debug for devela::_dep::rayon::collections::hash_set::Drain<'a, T>
where T: Debug + Hash + Eq + Send,

§

impl<'a, T> Debug for devela::_dep::rayon::collections::hash_set::Iter<'a, T>
where T: Debug + Hash + Eq + Sync,

§

impl<'a, T> Debug for devela::_dep::rayon::collections::linked_list::Iter<'a, T>
where T: Debug + Sync,

§

impl<'a, T> Debug for devela::_dep::rayon::collections::linked_list::IterMut<'a, T>
where T: Debug + Send,

§

impl<'a, T> Debug for devela::_dep::rayon::collections::vec_deque::Drain<'a, T>
where T: Debug + Send,

§

impl<'a, T> Debug for devela::_dep::rayon::collections::vec_deque::Iter<'a, T>
where T: Debug + Sync,

§

impl<'a, T> Debug for devela::_dep::rayon::collections::vec_deque::IterMut<'a, T>
where T: Debug + Send,

§

impl<'a, T> Debug for devela::_dep::rayon::option::Iter<'a, T>
where T: Debug + Sync,

§

impl<'a, T> Debug for devela::_dep::rayon::option::IterMut<'a, T>
where T: Debug + Send,

§

impl<'a, T> Debug for devela::_dep::rayon::result::Iter<'a, T>
where T: Debug + Sync,

§

impl<'a, T> Debug for devela::_dep::rayon::result::IterMut<'a, T>
where T: Debug + Send,

§

impl<'a, T> Debug for Drain<'a, T>
where T: 'a + Array, <T as Array>::Item: Debug,

§

impl<'a, T> Debug for OnceRef<'a, T>

§

impl<'a, T> Debug for ReadChunk<'a, T>
where T: Debug,

§

impl<'a, T> Debug for ReadChunkIntoIter<'a, T>
where T: Debug,

§

impl<'a, T> Debug for WriteChunk<'a, T>
where T: Debug,

§

impl<'a, T> Debug for WriteChunkUninit<'a, T>
where T: Debug,

1.6.0 · Source§

impl<'a, T, A> Debug for devela::_dep::_alloc::collections::binary_heap::Drain<'a, T, A>
where T: Debug + 'a, A: Debug + Allocator,

Source§

impl<'a, T, A> Debug for DrainSorted<'a, T, A>
where T: Debug + Ord, A: Debug + Allocator,

Source§

impl<'a, T, F, A> Debug for devela::_dep::_alloc::vec::ExtractIf<'a, T, F, A>
where T: Debug, F: Debug, A: Debug + Allocator,

1.77.0 · Source§

impl<'a, T, P> Debug for devela::_core::slice::ChunkBy<'a, T, P>
where T: 'a + Debug,

1.77.0 · Source§

impl<'a, T, P> Debug for devela::_core::slice::ChunkByMut<'a, T, P>
where T: 'a + Debug,

Source§

impl<'a, T, const N: usize> Debug for devela::_core::slice::ArrayChunks<'a, T, N>
where T: Debug + 'a,

Source§

impl<'a, T, const N: usize> Debug for ArrayChunksMut<'a, T, N>
where T: Debug + 'a,

Source§

impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>
where T: Debug + 'a,

Source§

impl<'a, T: Debug + 'a> Debug for ConstList<'a, T>

Source§

impl<'a, T: Debug> Debug for ConstListIterator<'a, T>

Source§

impl<'a, _0: Debug, _1: Debug, _2: Debug, _3: Debug, _4: Debug, _5: Debug, _6: Debug, _7: Debug, _8: Debug, _9: Debug, _10: Debug, _11: Debug> Debug for TupleElementMut<'a, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11>

Available on crate feature _tuple only.
Source§

impl<'a, _0: Debug, _1: Debug, _2: Debug, _3: Debug, _4: Debug, _5: Debug, _6: Debug, _7: Debug, _8: Debug, _9: Debug, _10: Debug, _11: Debug> Debug for TupleElementRef<'a, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11>

Available on crate feature _tuple only.
Source§

impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>

§

impl<'bump> Debug for devela::_dep::bumpalo::collections::string::FromUtf8Error<'bump>

§

impl<'bump> Debug for devela::_dep::bumpalo::collections::String<'bump>

§

impl<'bump, T> Debug for devela::_dep::bumpalo::collections::Vec<'bump, T>
where T: 'bump + Debug,

§

impl<'bump, T> Debug for devela::_dep::bumpalo::collections::vec::IntoIter<'bump, T>
where T: Debug,

§

impl<'c, 'h> Debug for SubCaptureMatches<'c, 'h>

§

impl<'ch> Debug for devela::_dep::rayon::str::Bytes<'ch>

§

impl<'ch> Debug for devela::_dep::rayon::str::CharIndices<'ch>

§

impl<'ch> Debug for devela::_dep::rayon::str::Chars<'ch>

§

impl<'ch> Debug for devela::_dep::rayon::str::EncodeUtf16<'ch>

§

impl<'ch> Debug for devela::_dep::rayon::str::Lines<'ch>

§

impl<'ch> Debug for devela::_dep::rayon::str::SplitAsciiWhitespace<'ch>

§

impl<'ch> Debug for devela::_dep::rayon::str::SplitWhitespace<'ch>

§

impl<'ch, P> Debug for devela::_dep::rayon::str::MatchIndices<'ch, P>
where P: Debug + Pattern,

§

impl<'ch, P> Debug for devela::_dep::rayon::str::Matches<'ch, P>
where P: Debug + Pattern,

§

impl<'ch, P> Debug for devela::_dep::rayon::str::Split<'ch, P>
where P: Debug + Pattern,

§

impl<'ch, P> Debug for devela::_dep::rayon::str::SplitInclusive<'ch, P>
where P: Debug + Pattern,

§

impl<'ch, P> Debug for devela::_dep::rayon::str::SplitTerminator<'ch, P>
where P: Debug + Pattern,

§

impl<'data, T> Debug for devela::_dep::rayon::slice::Chunks<'data, T>
where T: Debug + Sync,

§

impl<'data, T> Debug for devela::_dep::rayon::slice::ChunksExact<'data, T>
where T: Debug + Sync,

§

impl<'data, T> Debug for devela::_dep::rayon::slice::ChunksExactMut<'data, T>
where T: Debug + Send,

§

impl<'data, T> Debug for devela::_dep::rayon::slice::ChunksMut<'data, T>
where T: Debug + Send,

§

impl<'data, T> Debug for devela::_dep::rayon::slice::Iter<'data, T>
where T: Debug + Sync,

§

impl<'data, T> Debug for devela::_dep::rayon::slice::IterMut<'data, T>
where T: Debug + Send,

§

impl<'data, T> Debug for devela::_dep::rayon::slice::RChunks<'data, T>
where T: Debug + Sync,

§

impl<'data, T> Debug for devela::_dep::rayon::slice::RChunksExact<'data, T>
where T: Debug + Sync,

§

impl<'data, T> Debug for devela::_dep::rayon::slice::RChunksExactMut<'data, T>
where T: Debug + Send,

§

impl<'data, T> Debug for devela::_dep::rayon::slice::RChunksMut<'data, T>
where T: Debug + Send,

§

impl<'data, T> Debug for devela::_dep::rayon::slice::Windows<'data, T>
where T: Debug + Sync,

§

impl<'data, T> Debug for devela::_dep::rayon::vec::Drain<'data, T>
where T: Debug + Send,

§

impl<'data, T, P> Debug for devela::_dep::rayon::slice::ChunkBy<'data, T, P>
where T: Debug,

§

impl<'data, T, P> Debug for devela::_dep::rayon::slice::ChunkByMut<'data, T, P>
where T: Debug,

§

impl<'data, T, P> Debug for devela::_dep::rayon::slice::Split<'data, T, P>
where T: Debug,

§

impl<'data, T, P> Debug for devela::_dep::rayon::slice::SplitInclusive<'data, T, P>
where T: Debug,

§

impl<'data, T, P> Debug for devela::_dep::rayon::slice::SplitInclusiveMut<'data, T, P>
where T: Debug,

§

impl<'data, T, P> Debug for devela::_dep::rayon::slice::SplitMut<'data, T, P>
where T: Debug,

Source§

impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>

Source§

impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>

Source§

impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
where I: Iterator + Debug, <I as Iterator>::Item: Pair, <<I as Iterator>::Item as Pair>::Second: Debug,

Source§

impl<'f> Debug for VaListImpl<'f>

§

impl<'f> Debug for devela::_dep::jiff::fmt::strtime::Display<'f>

§

impl<'fd> Debug for PollFd<'fd>

§

impl<'h> Debug for Memchr2<'h>

§

impl<'h> Debug for Memchr3<'h>

§

impl<'h> Debug for Memchr<'h>

§

impl<'h> Debug for Captures<'h>

§

impl<'h> Debug for Match<'h>

§

impl<'h, 'n> Debug for FindIter<'h, 'n>

§

impl<'h, 'n> Debug for FindRevIter<'h, 'n>

§

impl<'n> Debug for TimeZoneAnnotationKind<'n>

§

impl<'n> Debug for Pieces<'n>

§

impl<'n> Debug for TimeZoneAnnotation<'n>

§

impl<'n> Debug for TimeZoneAnnotationName<'n>

§

impl<'n> Debug for devela::_dep::memchr::memmem::Finder<'n>

§

impl<'n> Debug for devela::_dep::memchr::memmem::FinderRev<'n>

§

impl<'py> Debug for DowncastIntoError<'py>

§

impl<'r> Debug for CaptureNames<'r>

§

impl<'r, 'h> Debug for CaptureMatches<'r, 'h>

§

impl<'r, 'h> Debug for devela::_dep::regex_lite::Matches<'r, 'h>

§

impl<'r, 'h> Debug for devela::_dep::regex_lite::Split<'r, 'h>

§

impl<'r, 'h> Debug for devela::_dep::regex_lite::SplitN<'r, 'h>

§

impl<'scope> Debug for devela::_dep::rayon::Scope<'scope>

§

impl<'scope> Debug for ScopeFifo<'scope>

§

impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env>

1.63.0 · Source§

impl<'scope, T> Debug for devela::work::ThreadScopedJoinHandle<'scope, T>

§

impl<'t> Debug for TimeZoneFollowingTransitions<'t>

§

impl<'t> Debug for TimeZonePrecedingTransitions<'t>

§

impl<'t> Debug for TimeZoneTransition<'t>

§

impl<'t> Debug for NoExpand<'t>

Source§

impl<'t, T, F, U> Debug for OptionFmtOrElse<'t, T, F>
where T: Debug, F: Fn() -> U, U: Display,

Source§

impl<'t, T, U> Debug for OptionFmtOr<'t, T, U>
where T: Debug, U: Display,

1.82.0 · Source§

impl<A> Debug for devela::_core::iter::RepeatN<A>
where A: Debug,

1.0.0 · Source§

impl<A> Debug for devela::_core::option::IntoIter<A>
where A: Debug,

Source§

impl<A> Debug for IterRange<A>
where A: Debug,

Source§

impl<A> Debug for IterRangeFrom<A>
where A: Debug,

Source§

impl<A> Debug for IterRangeInclusive<A>
where A: Debug,

Source§

impl<A> Debug for EnumAccessDeserializer<A>
where A: Debug,

Source§

impl<A> Debug for MapAccessDeserializer<A>
where A: Debug,

Source§

impl<A> Debug for SeqAccessDeserializer<A>
where A: Debug,

1.0.0 · Source§

impl<A> Debug for devela::all::IterRepeat<A>
where A: Debug,

§

impl<A> Debug for IntoIter<A>
where A: Array, <A as Array>::Item: Debug,

§

impl<A> Debug for SmallVec<A>
where A: Array, <A as Array>::Item: Debug,

§

impl<A, B> Debug for devela::_dep::rayon::iter::Chain<A, B>

§

impl<A, B> Debug for devela::_dep::rayon::iter::Zip<A, B>

§

impl<A, B> Debug for ZipEq<A, B>

1.0.0 · Source§

impl<A, B> Debug for devela::all::IterChain<A, B>
where A: Debug, B: Debug,

1.0.0 · Source§

impl<A, B> Debug for devela::all::IterZip<A, B>
where A: Debug, B: Debug,

§

impl<A, S> Debug for Validator<A, S>
where A: Debug, S: Debug,

1.0.0 · Source§

impl<B> Debug for Cow<'_, B>
where B: Debug + ToOwned + ?Sized, <B as ToOwned>::Owned: Debug,

1.0.0 · Source§

impl<B> Debug for devela::all::IoLines<B>
where B: Debug,

1.0.0 · Source§

impl<B> Debug for devela::all::IoSplit<B>
where B: Debug,

§

impl<B> Debug for Flag<B>
where B: Debug,

§

impl<B> Debug for Reader<B>
where B: Debug,

§

impl<B> Debug for Writer<B>
where B: Debug,

1.55.0 · Source§

impl<B, C> Debug for ControlFlow<B, C>
where B: Debug, C: Debug,

Source§

impl<BUF: DstBuf, DST> Debug for DstStack<DST, BUF>
where DST: Debug + ?Sized,

Available on crate feature unsafe_layout only.
Source§

impl<BUF: DstBuf, DST> Debug for DstValue<DST, BUF>
where DST: Debug + ?Sized,

Available on crate feature unsafe_layout only.
Source§

impl<BUF: DstBuf, DST: ?Sized + Debug> Debug for DstQueue<DST, BUF>

Available on crate feature unsafe_layout only.
§

impl<C> Debug for ContextError<C>
where C: Debug,

§

impl<D> Debug for PrintStyledContent<D>
where D: Debug + Display,

§

impl<D> Debug for StyledContent<D>
where D: Debug + Display,

§

impl<D, S> Debug for devela::_dep::rayon::iter::Split<D, S>
where D: Debug,

Source§

impl<Dyn> Debug for devela::_core::ptr::DynMetadata<Dyn>
where Dyn: ?Sized,

§

impl<Dyn> Debug for devela::_dep::rkyv::ptr_meta::DynMetadata<Dyn>
where Dyn: ?Sized,

§

impl<E> Debug for AllocOrInitError<E>
where E: Debug,

§

impl<E> Debug for PlaySoundError<E>
where E: Debug,

§

impl<E> Debug for ErrMode<E>
where E: Debug,

Source§

impl<E> Debug for Report<E>
where Report<E>: Display,

Source§

impl<E> Debug for BoolDeserializer<E>

Source§

impl<E> Debug for CharDeserializer<E>

Source§

impl<E> Debug for F32Deserializer<E>

Source§

impl<E> Debug for F64Deserializer<E>

Source§

impl<E> Debug for I8Deserializer<E>

Source§

impl<E> Debug for I16Deserializer<E>

Source§

impl<E> Debug for I32Deserializer<E>

Source§

impl<E> Debug for I64Deserializer<E>

Source§

impl<E> Debug for I128Deserializer<E>

Source§

impl<E> Debug for IsizeDeserializer<E>

Source§

impl<E> Debug for StringDeserializer<E>

Source§

impl<E> Debug for U8Deserializer<E>

Source§

impl<E> Debug for U16Deserializer<E>

Source§

impl<E> Debug for U32Deserializer<E>

Source§

impl<E> Debug for U64Deserializer<E>

Source§

impl<E> Debug for U128Deserializer<E>

Source§

impl<E> Debug for UnitDeserializer<E>

Source§

impl<E> Debug for UsizeDeserializer<E>

§

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<Error> Debug for StreamingSoundHandle<Error>
where Error: Debug,

Source§

impl<F> Debug for devela::_core::fmt::FromFn<F>
where F: Fn(&mut Formatter<'_>) -> Result<(), Error>,

Source§

impl<F> Debug for CharPredicateSearcher<'_, F>
where F: FnMut(char) -> bool,

1.34.0 · Source§

impl<F> Debug for devela::all::IterFromFn<F>

1.68.0 · Source§

impl<F> Debug for OnceWith<F>

1.68.0 · Source§

impl<F> Debug for RepeatWith<F>

1.64.0 · Source§

impl<F> Debug for PollFn<F>

1.4.0 · Source§

impl<F> Debug for F
where F: FnPtr,

Source§

impl<G: Debug, C: Debug> Debug for GcdReturn<G, C>

1.9.0 · Source§

impl<H> Debug for BuildHasherDefault<H>

Source§

impl<I> Debug for FromIter<I>
where I: Debug,

1.9.0 · Source§

impl<I> Debug for DecodeUtf16<I>
where I: Debug + Iterator<Item = u16>,

Source§

impl<I> Debug for devela::_core::iter::Intersperse<I>
where I: Debug + Iterator, <I as Iterator>::Item: Clone + Debug,

§

impl<I> Debug for devela::_dep::rayon::iter::Chunks<I>

§

impl<I> Debug for devela::_dep::rayon::iter::Cloned<I>

§

impl<I> Debug for devela::_dep::rayon::iter::Copied<I>

§

impl<I> Debug for devela::_dep::rayon::iter::Enumerate<I>

§

impl<I> Debug for ExponentialBlocks<I>
where I: Debug,

§

impl<I> Debug for devela::_dep::rayon::iter::Flatten<I>

§

impl<I> Debug for FlattenIter<I>

§

impl<I> Debug for devela::_dep::rayon::iter::Intersperse<I>

§

impl<I> Debug for MaxLen<I>

§

impl<I> Debug for MinLen<I>

§

impl<I> Debug for PanicFuse<I>

§

impl<I> Debug for devela::_dep::rayon::iter::Rev<I>

§

impl<I> Debug for devela::_dep::rayon::iter::Skip<I>
where I: Debug,

§

impl<I> Debug for SkipAny<I>

§

impl<I> Debug for devela::_dep::rayon::iter::StepBy<I>

§

impl<I> Debug for devela::_dep::rayon::iter::Take<I>
where I: Debug,

§

impl<I> Debug for TakeAny<I>

§

impl<I> Debug for UniformBlocks<I>
where I: Debug,

§

impl<I> Debug for WhileSome<I>

§

impl<I> Debug for Amplify<I>
where I: Debug,

§

impl<I> Debug for AutomaticGainControl<I>
where I: Debug,

§

impl<I> Debug for BltFilter<I>
where I: Debug,

§

impl<I> Debug for ChannelVolume<I>
where I: Debug + Source, <I as Iterator>::Item: Sample + Debug,

§

impl<I> Debug for Delay<I>
where I: Debug,

§

impl<I> Debug for Done<I>
where I: Debug,

§

impl<I> Debug for FadeIn<I>
where I: Debug,

§

impl<I> Debug for FadeOut<I>
where I: Debug,

§

impl<I> Debug for LinearGainRamp<I>
where I: Debug,

§

impl<I> Debug for Pausable<I>
where I: Debug,

§

impl<I> Debug for SkipDuration<I>
where I: Debug,

§

impl<I> Debug for Skippable<I>
where I: Debug,

§

impl<I> Debug for Speed<I>
where I: Debug,

§

impl<I> Debug for Stoppable<I>
where I: Debug,

§

impl<I> Debug for TakeDuration<I>
where I: Debug,

§

impl<I> Debug for TrackPosition<I>
where I: Debug,

§

impl<I> Debug for InputError<I>
where I: Debug + Clone,

§

impl<I> Debug for TreeErrorBase<I>
where I: Debug,

§

impl<I> Debug for LocatingSlice<I>
where I: Debug,

§

impl<I> Debug for Partial<I>
where I: Debug,

1.1.0 · Source§

impl<I> Debug for devela::all::IterCloned<I>
where I: Debug,

1.36.0 · Source§

impl<I> Debug for devela::all::IterCopied<I>
where I: Debug,

1.0.0 · Source§

impl<I> Debug for Cycle<I>
where I: Debug,

1.0.0 · Source§

impl<I> Debug for devela::all::IterEnumerate<I>
where I: Debug,

1.0.0 · Source§

impl<I> Debug for Fuse<I>
where I: Debug,

1.0.0 · Source§

impl<I> Debug for Peekable<I>
where I: Debug + Iterator, <I as Iterator>::Item: Debug,

1.0.0 · Source§

impl<I> Debug for devela::all::IterSkip<I>
where I: Debug,

1.28.0 · Source§

impl<I> Debug for devela::all::IterStepBy<I>
where I: Debug,

1.0.0 · Source§

impl<I> Debug for devela::all::IterTake<I>
where I: Debug,

§

impl<I, C> Debug for TreeError<I, C>
where I: Debug, C: Debug,

§

impl<I, C> Debug for TreeErrorFrame<I, C>
where I: Debug, C: Debug,

§

impl<I, C> Debug for TreeErrorContext<I, C>
where I: Debug, C: Debug,

Source§

impl<I, E> Debug for SeqDeserializer<I, E>
where I: Debug,

§

impl<I, E> Debug for devela::_dep::winnow::error::ParseError<I, E>
where I: Debug, E: Debug,

§

impl<I, F> Debug for devela::_dep::rayon::iter::FlatMap<I, F>

§

impl<I, F> Debug for FlatMapIter<I, F>

§

impl<I, F> Debug for devela::_dep::rayon::iter::Inspect<I, F>

§

impl<I, F> Debug for devela::_dep::rayon::iter::Map<I, F>

§

impl<I, F> Debug for Update<I, F>

§

impl<I, F> Debug for PeriodicAccess<I, F>
where I: Debug, F: Debug,

1.9.0 · Source§

impl<I, F> Debug for devela::all::IterFilterMap<I, F>
where I: Debug,

1.9.0 · Source§

impl<I, F> Debug for devela::all::IterInspect<I, F>
where I: Debug,

1.9.0 · Source§

impl<I, F> Debug for devela::all::IterMap<I, F>
where I: Debug,

Source§

impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
where I: Iterator + Debug,

Source§

impl<I, G> Debug for IntersperseWith<I, G>
where I: Iterator + Debug, <I as Iterator>::Item: Debug, G: Debug,

§

impl<I, ID, F> Debug for Fold<I, ID, F>

§

impl<I, ID, F> Debug for FoldChunks<I, ID, F>

§

impl<I, INIT, F> Debug for MapInit<I, INIT, F>

§

impl<I, J> Debug for Interleave<I, J>

§

impl<I, J> Debug for InterleaveShortest<I, J>

§

impl<I, P> Debug for devela::_dep::rayon::iter::Filter<I, P>

§

impl<I, P> Debug for devela::_dep::rayon::iter::FilterMap<I, P>

§

impl<I, P> Debug for Positions<I, P>

§

impl<I, P> Debug for SkipAnyWhile<I, P>

§

impl<I, P> Debug for TakeAnyWhile<I, P>

1.9.0 · Source§

impl<I, P> Debug for devela::all::IterFilter<I, P>
where I: Debug,

1.57.0 · Source§

impl<I, P> Debug for MapWhile<I, P>
where I: Debug,

1.9.0 · Source§

impl<I, P> Debug for SkipWhile<I, P>
where I: Debug,

1.9.0 · Source§

impl<I, P> Debug for TakeWhile<I, P>
where I: Debug,

§

impl<I, S> Debug for Stateful<I, S>
where I: Debug, S: Debug,

1.9.0 · Source§

impl<I, St, F> Debug for Scan<I, St, F>
where I: Debug, St: Debug,

§

impl<I, T, F> Debug for MapWith<I, T, F>
where I: ParallelIterator + Debug, T: Debug,

1.29.0 · Source§

impl<I, U> Debug for devela::all::IterFlatten<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 FoldChunksWith<I, U, F>

§

impl<I, U, F> Debug for FoldWith<I, U, F>
where I: ParallelIterator + Debug, U: Debug,

§

impl<I, U, F> Debug for TryFoldWith<I, U, F>
where I: ParallelIterator + Debug, U: Try, <U as Try>::Output: Debug,

1.9.0 · Source§

impl<I, U, F> Debug for devela::all::IterFlatMap<I, U, F>
where I: Debug, U: IntoIterator, <U as IntoIterator>::IntoIter: Debug,

Source§

impl<I, const N: usize> Debug for devela::_core::iter::ArrayChunks<I, N>
where I: Debug + Iterator, <I as Iterator>::Item: Debug,

Source§

impl<Idx> Debug for devela::_core::range::Range<Idx>
where Idx: Debug,

Source§

impl<Idx> Debug for devela::_core::range::RangeFrom<Idx>
where Idx: Debug,

Source§

impl<Idx> Debug for devela::_core::range::RangeInclusive<Idx>
where Idx: Debug,

1.0.0 · Source§

impl<Idx> Debug for devela::all::Range<Idx>
where Idx: Debug,

1.0.0 · Source§

impl<Idx> Debug for devela::all::RangeFrom<Idx>
where Idx: Debug,

1.26.0 · Source§

impl<Idx> Debug for devela::all::RangeInclusive<Idx>
where Idx: Debug,

1.0.0 · Source§

impl<Idx> Debug for RangeTo<Idx>
where Idx: Debug,

1.26.0 · Source§

impl<Idx> Debug for RangeToInclusive<Idx>
where Idx: Debug,

§

impl<Iter> Debug for IterBridge<Iter>
where Iter: Debug,

Source§

impl<K> Debug for devela::_dep::_alloc::collections::btree_set::Cursor<'_, K>
where K: Debug,

1.16.0 · Source§

impl<K> Debug for devela::_dep::_std::collections::hash_set::Drain<'_, K>
where K: Debug,

1.16.0 · Source§

impl<K> Debug for devela::_dep::_std::collections::hash_set::IntoIter<K>
where K: Debug,

1.16.0 · Source§

impl<K> Debug for devela::_dep::_std::collections::hash_set::Iter<'_, K>
where K: Debug,

§

impl<K> Debug for devela::_dep::hashbrown::hash_set::Iter<'_, K>
where K: Debug,

Source§

impl<K, A> Debug for devela::_dep::_alloc::collections::btree_set::CursorMut<'_, K, A>
where K: Debug,

Source§

impl<K, A> Debug for devela::_dep::_alloc::collections::btree_set::CursorMutKey<'_, K, A>
where K: Debug,

§

impl<K, A> Debug for devela::_dep::hashbrown::hash_set::Drain<'_, K, A>
where K: Debug, A: Allocator,

§

impl<K, A> Debug for devela::_dep::hashbrown::hash_set::IntoIter<K, A>
where K: Debug, A: Allocator,

§

impl<K, H> Debug for ArchivedHashSet<K, H>
where K: Debug,

§

impl<K, H> Debug for ArchivedIndexSet<K, H>
where K: Debug,

§

impl<K, Q, V, S, A> Debug for EntryRef<'_, '_, K, Q, V, S, A>
where K: Debug + Borrow<Q>, Q: Debug + ?Sized, V: Debug, A: Allocator,

§

impl<K, Q, V, S, A> Debug for VacantEntryRef<'_, '_, K, Q, V, S, A>
where K: Borrow<Q>, Q: Debug + ?Sized, A: Allocator,

1.12.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::Entry<'_, K, V>
where K: Debug, V: Debug,

Source§

impl<K, V> Debug for devela::_dep::_alloc::collections::btree_map::Cursor<'_, K, V>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V> Debug for devela::_dep::_alloc::collections::btree_map::Iter<'_, K, V>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V> Debug for devela::_dep::_alloc::collections::btree_map::IterMut<'_, K, V>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V> Debug for devela::_dep::_alloc::collections::btree_map::Keys<'_, K, V>
where K: Debug,

1.17.0 · Source§

impl<K, V> Debug for devela::_dep::_alloc::collections::btree_map::Range<'_, K, V>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V> Debug for RangeMut<'_, K, V>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V> Debug for devela::_dep::_alloc::collections::btree_map::Values<'_, K, V>
where V: Debug,

1.10.0 · Source§

impl<K, V> Debug for devela::_dep::_alloc::collections::btree_map::ValuesMut<'_, K, V>
where V: Debug,

1.16.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::Drain<'_, K, V>
where K: Debug, V: Debug,

1.16.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::IntoIter<K, V>
where K: Debug, V: Debug,

1.54.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::IntoKeys<K, V>
where K: Debug,

1.54.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::IntoValues<K, V>
where V: Debug,

1.16.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::Iter<'_, K, V>
where K: Debug, V: Debug,

1.16.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::IterMut<'_, K, V>
where K: Debug, V: Debug,

1.16.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::Keys<'_, K, V>
where K: Debug,

1.12.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::OccupiedEntry<'_, K, V>
where K: Debug, V: Debug,

Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::OccupiedError<'_, K, V>
where K: Debug, V: Debug,

1.12.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::VacantEntry<'_, K, V>
where K: Debug,

1.16.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::Values<'_, K, V>
where V: Debug,

1.16.0 · Source§

impl<K, V> Debug for devela::_dep::_std::collections::hash_map::ValuesMut<'_, K, V>
where V: Debug,

§

impl<K, V> Debug for devela::_dep::hashbrown::hash_map::Iter<'_, K, V>
where K: Debug, V: Debug,

§

impl<K, V> Debug for devela::_dep::hashbrown::hash_map::IterMut<'_, K, V>
where K: Debug, V: Debug,

§

impl<K, V> Debug for devela::_dep::hashbrown::hash_map::Keys<'_, K, V>
where K: Debug,

§

impl<K, V> Debug for devela::_dep::hashbrown::hash_map::Values<'_, K, V>
where V: Debug,

§

impl<K, V> Debug for devela::_dep::hashbrown::hash_map::ValuesMut<'_, K, V>
where V: Debug,

§

impl<K, V> Debug for devela::_dep::rayon::collections::btree_map::IntoIter<K, V>
where K: Debug + Ord + Send, V: Debug + Send,

§

impl<K, V> Debug for devela::_dep::rayon::collections::hash_map::IntoIter<K, V>
where K: Debug + Hash + Eq + Send, V: Debug + Send,

§

impl<K, V> Debug for devela::_dep::rkyv::collections::util::Entry<K, V>
where K: Debug, V: Debug,

1.12.0 · Source§

impl<K, V, A> Debug for devela::all::BTreeMapEntry<'_, K, V, A>
where K: Debug + Ord, V: Debug, A: Allocator + Clone,

Source§

impl<K, V, A> Debug for devela::_dep::_alloc::collections::btree_map::CursorMut<'_, K, V, A>
where K: Debug, V: Debug,

Source§

impl<K, V, A> Debug for devela::_dep::_alloc::collections::btree_map::CursorMutKey<'_, K, V, A>
where K: Debug, V: Debug,

1.17.0 · Source§

impl<K, V, A> Debug for devela::_dep::_alloc::collections::btree_map::IntoIter<K, V, A>
where K: Debug, V: Debug, A: Allocator + Clone,

1.54.0 · Source§

impl<K, V, A> Debug for devela::_dep::_alloc::collections::btree_map::IntoKeys<K, V, A>
where K: Debug, A: Allocator + Clone,

1.54.0 · Source§

impl<K, V, A> Debug for devela::_dep::_alloc::collections::btree_map::IntoValues<K, V, A>
where V: Debug, A: Allocator + Clone,

1.12.0 · Source§

impl<K, V, A> Debug for devela::_dep::_alloc::collections::btree_map::OccupiedEntry<'_, K, V, A>
where K: Debug + Ord, V: Debug, A: Allocator + Clone,

Source§

impl<K, V, A> Debug for devela::_dep::_alloc::collections::btree_map::OccupiedError<'_, K, V, A>
where K: Debug + Ord, V: Debug, A: Allocator + Clone,

1.12.0 · Source§

impl<K, V, A> Debug for devela::_dep::_alloc::collections::btree_map::VacantEntry<'_, K, V, A>
where K: Debug + Ord, A: Allocator + Clone,

§

impl<K, V, A> Debug for devela::_dep::hashbrown::hash_map::Drain<'_, K, V, A>
where K: Debug, V: Debug, A: Allocator,

§

impl<K, V, A> Debug for devela::_dep::hashbrown::hash_map::IntoIter<K, V, A>
where K: Debug, V: Debug, A: Allocator,

§

impl<K, V, A> Debug for devela::_dep::hashbrown::hash_map::IntoKeys<K, V, A>
where K: Debug, V: Debug, A: Allocator,

§

impl<K, V, A> Debug for devela::_dep::hashbrown::hash_map::IntoValues<K, V, A>
where V: Debug, A: Allocator,

1.0.0 · Source§

impl<K, V, A> Debug for BTreeMap<K, V, A>
where K: Debug, V: Debug, A: Allocator + Clone,

Source§

impl<K, V, F> Debug for devela::_dep::_alloc::collections::btree_map::ExtractIf<'_, K, V, F>
where K: Debug, V: Debug, F: FnMut(&K, &mut V) -> bool,

§

impl<K, V, H> Debug for ArchivedHashMap<K, V, H>
where K: Debug, V: Debug,

§

impl<K, V, H> Debug for ArchivedIndexMap<K, V, H>
where K: Debug, V: Debug,

Source§

impl<K, V, S> Debug for devela::_dep::_std::collections::hash_map::RawEntryMut<'_, K, V, S>
where K: Debug, V: Debug,

Source§

impl<K, V, S> Debug for devela::_dep::_std::collections::hash_map::RawEntryBuilder<'_, K, V, S>

Source§

impl<K, V, S> Debug for devela::_dep::_std::collections::hash_map::RawEntryBuilderMut<'_, K, V, S>

Source§

impl<K, V, S> Debug for devela::_dep::_std::collections::hash_map::RawOccupiedEntryMut<'_, K, V, S>
where K: Debug, V: Debug,

Source§

impl<K, V, S> Debug for devela::_dep::_std::collections::hash_map::RawVacantEntryMut<'_, K, V, S>

1.0.0 · Source§

impl<K, V, S> Debug for devela::_dep::_std::collections::HashMap<K, V, S>
where K: Debug, V: Debug,

§

impl<K, V, S, A> Debug for devela::_dep::hashbrown::hash_map::RawEntryMut<'_, K, V, S, A>
where K: Debug, V: Debug, A: Allocator,

§

impl<K, V, S, A> Debug for devela::all::HashMapEntry<'_, K, V, S, A>
where K: Debug, V: Debug, A: Allocator,

§

impl<K, V, S, A> Debug for devela::_dep::hashbrown::hash_map::OccupiedEntry<'_, K, V, S, A>
where K: Debug, V: Debug, A: Allocator,

§

impl<K, V, S, A> Debug for devela::_dep::hashbrown::hash_map::OccupiedError<'_, K, V, S, A>
where K: Debug, V: Debug, A: Allocator,

§

impl<K, V, S, A> Debug for devela::_dep::hashbrown::hash_map::RawEntryBuilder<'_, K, V, S, A>
where A: Allocator,

§

impl<K, V, S, A> Debug for devela::_dep::hashbrown::hash_map::RawEntryBuilderMut<'_, K, V, S, A>
where A: Allocator,

§

impl<K, V, S, A> Debug for devela::_dep::hashbrown::hash_map::RawOccupiedEntryMut<'_, K, V, S, A>
where K: Debug, V: Debug, A: Allocator,

§

impl<K, V, S, A> Debug for devela::_dep::hashbrown::hash_map::RawVacantEntryMut<'_, K, V, S, A>
where A: Allocator,

§

impl<K, V, S, A> Debug for devela::_dep::hashbrown::hash_map::VacantEntry<'_, K, V, S, A>
where K: Debug, A: Allocator,

§

impl<K, V, S, A> Debug for devela::all::HashMap<K, V, S, A>
where K: Debug, V: Debug, A: Allocator,

§

impl<K, V, const E: usize> Debug for ArchivedBTreeMap<K, V, E>
where K: Debug, V: Debug,

§

impl<K, const E: usize> Debug for ArchivedBTreeSet<K, E>
where K: Debug,

Source§

impl<L, R> Debug for Either<L, R>
where L: Debug, R: Debug,

Source§

impl<L, R> Debug for IterEither<L, R>
where L: Debug, R: Debug,

§

impl<N> Debug for NicheInto<N>
where N: ?Sized,

Source§

impl<N: Debug, H: Debug> Debug for Mismatch<N, H>

§

impl<O> Debug for RawRelPtr<O>
where O: Debug,

§

impl<Opcode> Debug for NoArg<Opcode>
where Opcode: CompileTimeOpcode,

§

impl<Opcode, Input> Debug for Setter<Opcode, Input>
where Opcode: CompileTimeOpcode, Input: Debug,

§

impl<Opcode, Output> Debug for Getter<Opcode, Output>
where Opcode: CompileTimeOpcode,

1.33.0 · Source§

impl<Ptr> Debug for Pin<Ptr>
where Ptr: Debug,

Source§

impl<R> Debug for BlockRng64<R>
where R: BlockRngCore + Debug,

Source§

impl<R> Debug for BlockRng<R>
where R: BlockRngCore + Debug,

§

impl<R> Debug for CacheParametersIter<R>
where R: CpuIdReader,

§

impl<R> Debug for CpuId<R>
where R: CpuIdReader,

§

impl<R> Debug for DatIter<R>
where R: CpuIdReader,

§

impl<R> Debug for ExtendedStateInfo<R>
where R: CpuIdReader,

§

impl<R> Debug for ExtendedStateIter<R>
where R: CpuIdReader,

§

impl<R> Debug for ExtendedTopologyIter<R>
where R: CpuIdReader,

§

impl<R> Debug for HypervisorInfo<R>
where R: CpuIdReader,

§

impl<R> Debug for RdtAllocationInfo<R>
where R: CpuIdReader,

§

impl<R> Debug for RdtMonitoringInfo<R>
where R: CpuIdReader,

§

impl<R> Debug for SgxInfo<R>
where R: CpuIdReader,

§

impl<R> Debug for SgxSectionIter<R>
where R: CpuIdReader,

§

impl<R> Debug for SoCVendorAttributesIter<R>
where R: CpuIdReader,

§

impl<R> Debug for SoCVendorInfo<R>
where R: CpuIdReader,

§

impl<R> Debug for devela::_dep::tokio::io::BufReader<R>
where R: Debug,

§

impl<R> Debug for devela::_dep::tokio::io::Lines<R>
where R: Debug,

§

impl<R> Debug for devela::_dep::tokio::io::Split<R>
where R: Debug,

§

impl<R> Debug for devela::_dep::tokio::io::Take<R>
where R: Debug,

1.0.0 · Source§

impl<R> Debug for devela::all::IoBufReader<R>
where R: Debug + ?Sized,

1.0.0 · Source§

impl<R> Debug for devela::all::IoBytes<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<R, W> Debug for Join<R, W>
where R: Debug, W: Debug,

§

impl<RW> Debug for BufStream<RW>
where RW: Debug,

§

impl<S> Debug for ThreadPoolBuilder<S>

§

impl<S> Debug for SamplesBuffer<S>
where S: Debug,

§

impl<S> Debug for devela::_dep::rodio::source::Empty<S>
where S: Debug,

§

impl<S> Debug for Zero<S>
where S: Debug,

§

impl<S> Debug for RawSamples<S>
where S: Debug,

§

impl<S, B> Debug for WalkTree<S, B>
where S: Debug, B: Debug,

§

impl<S, B> Debug for WalkTreePostfix<S, B>
where S: Debug, B: Debug,

§

impl<S, B> Debug for WalkTreePrefix<S, B>
where S: Debug, B: Debug,

§

impl<S, D> Debug for MmapIO<S, D>
where S: Debug, D: Debug,

Source§

impl<S: Debug, V: Debug> Debug for Own<S, V>

§

impl<SO> Debug for AtomicLoad<SO>
where SO: Debug,

§

impl<Storage> Debug for __BindgenBitfieldUnit<Storage>
where Storage: Debug,

§

impl<Storage> Debug for __BindgenBitfieldUnit<Storage>
where Storage: Debug,

§

impl<Storage, Align> Debug for __BindgenBitfieldUnit<Storage, Align>
where Storage: Debug, Align: Debug,

§

impl<T0> Debug for ArchivedTuple1<T0>
where T0: Debug,

§

impl<T0, T1> Debug for ArchivedTuple2<T0, T1>
where T0: Debug, T1: Debug,

§

impl<T0, T1, T2> Debug for ArchivedTuple3<T0, T1, T2>
where T0: Debug, T1: Debug, T2: Debug,

§

impl<T0, T1, T2, T3> Debug for ArchivedTuple4<T0, T1, T2, T3>
where T0: Debug, T1: Debug, T2: Debug, T3: Debug,

§

impl<T0, T1, T2, T3, T4> Debug for ArchivedTuple5<T0, T1, T2, T3, T4>
where T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug,

§

impl<T0, T1, T2, T3, T4, T5> Debug for ArchivedTuple6<T0, T1, T2, T3, T4, T5>
where T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug, T5: Debug,

§

impl<T0, T1, T2, T3, T4, T5, T6> Debug for ArchivedTuple7<T0, T1, T2, T3, T4, T5, T6>
where T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug, T5: Debug, T6: Debug,

§

impl<T0, T1, T2, T3, T4, T5, T6, T7> Debug for ArchivedTuple8<T0, T1, T2, T3, T4, T5, T6, T7>
where T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug, T5: Debug, T6: Debug, T7: Debug,

§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8> Debug for ArchivedTuple9<T0, T1, T2, T3, T4, T5, T6, T7, T8>
where T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug, T5: Debug, T6: Debug, T7: Debug, T8: Debug,

§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Debug for ArchivedTuple10<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>
where T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug, T5: Debug, T6: Debug, T7: Debug, T8: Debug, T9: Debug,

§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Debug for ArchivedTuple11<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>
where T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug, T5: Debug, T6: Debug, T7: Debug, T8: Debug, T9: Debug, T10: Debug,

§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Debug for ArchivedTuple12<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
where T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug, T5: Debug, T6: Debug, T7: Debug, T8: Debug, T9: Debug, T10: Debug, T11: Debug,

§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Debug for ArchivedTuple13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
where T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug, T5: Debug, T6: Debug, T7: Debug, T8: Debug, T9: Debug, T10: Debug, T11: Debug, T12: Debug,

1.0.0 · Source§

impl<T> Debug for Option<T>
where T: Debug,

Source§

impl<T> Debug for SendTimeoutError<T>

1.0.0 · Source§

impl<T> Debug for TrySendError<T>

§

impl<T> Debug for devela::_dep::kira::Value<T>
where T: Debug,

§

impl<T> Debug for ArchivedBound<T>
where T: Debug,

§

impl<T> Debug for ArchivedOption<T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for devela::all::Bound<T>
where T: Debug,

1.36.0 · Source§

impl<T> Debug for devela::work::TaskPoll<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for TryLockError<T>

1.0.0 · Source§

impl<T> Debug for *const T
where T: ?Sized,

1.0.0 · Source§

impl<T> Debug for *mut T
where T: ?Sized,

1.0.0 · Source§

impl<T> Debug for &T
where T: Debug + ?Sized,

1.0.0 · Source§

impl<T> Debug for &mut T
where T: Debug + ?Sized,

1.0.0 · Source§

impl<T> Debug for [T]
where T: Debug,

1.0.0 · Source§

impl<T> Debug for (T₁, T₂, …, Tₙ)
where T: Debug + ?Sized,

This trait is implemented for tuples up to twelve items long.

Source§

impl<T> Debug for SyncUnsafeCell<T>
where T: ?Sized,

Source§

impl<T> Debug for AsyncDropInPlace<T>
where T: ?Sized,

Source§

impl<T> Debug for Yeet<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for devela::_core::result::IntoIter<T>
where T: Debug,

1.9.0 · Source§

impl<T> Debug for devela::_core::slice::Iter<'_, T>
where T: Debug,

1.9.0 · Source§

impl<T> Debug for devela::_core::slice::IterMut<'_, T>
where T: Debug,

1.3.0 · Source§

impl<T> Debug for devela::_core::sync::atomic::AtomicPtr<T>

Source§

impl<T> Debug for Exclusive<T>
where T: ?Sized,

Source§

impl<T> Debug for ThinBox<T>
where T: Debug + ?Sized,

1.17.0 · Source§

impl<T> Debug for devela::_dep::_alloc::collections::binary_heap::Iter<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for devela::_dep::_alloc::collections::btree_set::Iter<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for devela::_dep::_alloc::collections::btree_set::SymmetricDifference<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for devela::_dep::_alloc::collections::btree_set::Union<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for devela::_dep::_alloc::collections::linked_list::Iter<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for devela::_dep::_alloc::collections::linked_list::IterMut<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for devela::_dep::_alloc::collections::vec_deque::Iter<'_, T>
where T: Debug,

1.17.0 · Source§

impl<T> Debug for devela::_dep::_alloc::collections::vec_deque::IterMut<'_, T>
where T: Debug,

Source§

impl<T> Debug for devela::_dep::_std::sync::mpmc::IntoIter<T>
where T: Debug,

Source§

impl<T> Debug for devela::_dep::_std::sync::mpmc::Receiver<T>

1.0.0 · Source§

impl<T> Debug for devela::_dep::_std::sync::mpmc::SendError<T>

Source§

impl<T> Debug for devela::_dep::_std::sync::mpmc::Sender<T>

1.1.0 · Source§

impl<T> Debug for devela::_dep::_std::sync::mpsc::IntoIter<T>
where T: Debug,

1.8.0 · Source§

impl<T> Debug for devela::_dep::_std::sync::mpsc::Receiver<T>

1.8.0 · Source§

impl<T> Debug for devela::_dep::_std::sync::mpsc::Sender<T>

1.8.0 · Source§

impl<T> Debug for SyncSender<T>

Source§

impl<T> Debug for devela::_dep::_std::sync::MappedMutexGuard<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for devela::_dep::_std::sync::MappedRwLockReadGuard<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for devela::_dep::_std::sync::MappedRwLockWriteGuard<'_, T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for ReentrantLock<T>
where T: Debug + ?Sized,

Source§

impl<T> Debug for ReentrantLockGuard<'_, T>
where T: Debug + ?Sized,

§

impl<T> Debug for Print<T>
where T: Debug + Display,

§

impl<T> Debug for SetTitle<T>
where T: Debug,

§

impl<T> Debug for devela::_dep::hashbrown::hash_table::Iter<'_, T>
where T: Debug,

§

impl<T> Debug for IterHash<'_, T>
where T: Debug,

§

impl<T> Debug for IterHashMut<'_, T>
where T: Debug,

§

impl<T> Debug for devela::_dep::hashbrown::hash_table::IterMut<'_, T>
where T: Debug,

§

impl<T> Debug for CommandReader<T>
where T: Debug + Send + Copy,

§

impl<T> Debug for CommandWriter<T>
where T: Debug + Send + Copy,

§

impl<T> Debug for ValueChangeCommand<T>
where T: Debug,

§

impl<T> Debug for Mapping<T>
where T: Debug,

§

impl<T> Debug for ConnectError<T>

§

impl<T> Debug for PyBuffer<T>

§

impl<T> Debug for Borrowed<'_, '_, T>

§

impl<T> Debug for devela::_dep::pyo3::Bound<'_, T>

§

impl<T> Debug for Py<T>

§

impl<T> Debug for PyRef<'_, T>
where T: PyClass + Debug,

§

impl<T> Debug for PyRefMut<'_, T>
where T: PyClass<Frozen = False> + Debug,

§

impl<T> Debug for devela::_dep::rayon::collections::binary_heap::IntoIter<T>
where T: Debug + Ord + Send,

§

impl<T> Debug for devela::_dep::rayon::collections::btree_set::IntoIter<T>
where T: Debug + Ord + Send,

§

impl<T> Debug for devela::_dep::rayon::collections::hash_set::IntoIter<T>
where T: Debug + Hash + Eq + Send,

§

impl<T> Debug for devela::_dep::rayon::collections::linked_list::IntoIter<T>
where T: Debug + Send,

§

impl<T> Debug for devela::_dep::rayon::collections::vec_deque::IntoIter<T>
where T: Debug + Send,

§

impl<T> Debug for devela::_dep::rayon::iter::Empty<T>
where T: Send,

§

impl<T> Debug for MultiZip<T>
where T: Debug,

§

impl<T> Debug for devela::_dep::rayon::iter::Once<T>
where T: Debug + Send,

§

impl<T> Debug for devela::_dep::rayon::iter::Repeat<T>
where T: Debug + Clone + Send,

§

impl<T> Debug for devela::_dep::rayon::iter::RepeatN<T>
where T: Debug + Clone + Send,

§

impl<T> Debug for devela::_dep::rayon::option::IntoIter<T>
where T: Debug + Send,

§

impl<T> Debug for devela::_dep::rayon::range::Iter<T>
where T: Debug,

§

impl<T> Debug for devela::_dep::rayon::range_inclusive::Iter<T>
where T: Debug,

§

impl<T> Debug for devela::_dep::rayon::result::IntoIter<T>
where T: Debug + Send,

§

impl<T> Debug for devela::_dep::rayon::vec::IntoIter<T>
where T: Debug + Send,

§

impl<T> Debug for ArchivedBox<T>

§

impl<T> Debug for InvalidEnumDiscriminantError<T>
where T: Debug,

§

impl<T> Debug for ArchivedOptionBox<T>

§

impl<T> Debug for ArchivedRange<T>
where T: Debug,

§

impl<T> Debug for ArchivedRangeFrom<T>
where T: Debug,

§

impl<T> Debug for ArchivedRangeInclusive<T>
where T: Debug,

§

impl<T> Debug for ArchivedRangeTo<T>
where T: Debug,

§

impl<T> Debug for ArchivedRangeToInclusive<T>
where T: Debug,

§

impl<T> Debug for Align<T>
where T: Debug,

§

impl<T> Debug for SerVec<T>
where T: Debug,

§

impl<T> Debug for ArchivedVec<T>
where T: Debug,

§

impl<T> Debug for ReadHalf<T>
where T: Debug,

§

impl<T> Debug for WriteHalf<T>
where T: Debug,

§

impl<T> Debug for DebugValue<T>
where T: Debug,

§

impl<T> Debug for DisplayValue<T>
where T: Display,

§

impl<T> Debug for Instrumented<T>
where T: Debug,

§

impl<T> Debug for WithDispatch<T>
where T: Debug,

Source§

impl<T> Debug for Closure<T>
where T: ?Sized,

Source§

impl<T> Debug for Clamped<T>
where T: Debug,

§

impl<T> Debug for Caseless<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for Cell<T>
where T: Copy + Debug,

1.21.0 · Source§

impl<T> Debug for Discriminant<T>

1.0.0 · Source§

impl<T> Debug for devela::all::IoCursor<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for devela::all::IoTake<T>
where T: Debug,

1.9.0 · Source§

impl<T> Debug for devela::all::IterEmpty<T>

1.2.0 · Source§

impl<T> Debug for devela::all::IterOnce<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for devela::all::IterRev<T>
where T: Debug,

1.20.0 · Source§

impl<T> Debug for ManuallyDrop<T>
where T: Debug + ?Sized,

1.28.0 · Source§

impl<T> Debug for NonZero<T>

1.70.0 · Source§

impl<T> Debug for devela::all::OnceCell<T>
where T: Debug,

Source§

impl<T> Debug for OptionFmt<'_, T>
where T: Debug,

1.16.0 · Source§

impl<T> Debug for AssertUnwindSafe<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for PhantomData<T>
where T: ?Sized,

1.25.0 · Source§

impl<T> Debug for NonNull<T>
where T: ?Sized,

1.0.0 · Source§

impl<T> Debug for Ref<'_, T>
where T: Debug + ?Sized,

1.0.0 · Source§

impl<T> Debug for RefCell<T>
where T: Debug + ?Sized,

1.0.0 · Source§

impl<T> Debug for RefMut<'_, T>
where T: Debug + ?Sized,

1.74.0 · Source§

impl<T> Debug for Saturating<T>
where T: Debug,

Source§

impl<T> Debug for TypeResource<T>

1.9.0 · Source§

impl<T> Debug for UnsafeCell<T>
where T: ?Sized,

1.0.0 · Source§

impl<T> Debug for Wrapping<T>
where T: Debug,

1.19.0 · Source§

impl<T> Debug for Reverse<T>
where T: Debug,

§

impl<T> Debug for devela::work::Atomic<T>
where T: NoUninit + Debug,

§

impl<T> Debug for devela::work::AtomicPtr<T>

1.48.0 · Source§

impl<T> Debug for devela::work::FuturePending<T>

1.48.0 · Source§

impl<T> Debug for Ready<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for devela::work::Mutex<T>
where T: Debug + ?Sized,

1.16.0 · Source§

impl<T> Debug for devela::work::MutexGuard<'_, T>
where T: Debug + ?Sized,

1.70.0 · Source§

impl<T> Debug for OnceLock<T>
where T: Debug,

1.0.0 · Source§

impl<T> Debug for PoisonError<T>

1.0.0 · Source§

impl<T> Debug for devela::work::RwLock<T>
where T: Debug + ?Sized,

1.16.0 · Source§

impl<T> Debug for devela::work::RwLockReadGuard<'_, T>
where T: Debug + ?Sized,

1.16.0 · Source§

impl<T> Debug for devela::work::RwLockWriteGuard<'_, T>
where T: Debug + ?Sized,

1.16.0 · Source§

impl<T> Debug for JoinHandle<T>

1.16.0 · Source§

impl<T> Debug for LocalKey<T>
where T: 'static,

Source§

impl<T> Debug for CapacityError<T>

1.41.0 · Source§

impl<T> Debug for MaybeUninit<T>

§

impl<T> Debug for Arena<T>
where T: Debug,

§

impl<T> Debug for Atomic<T>
where T: Pointable + ?Sized,

§

impl<T> Debug for AtomicCell<T>
where T: Copy + Debug,

§

impl<T> Debug for CachePadded<T>
where T: Debug,

§

impl<T> Debug for ColumnMatrix2<T>
where T: Debug,

§

impl<T> Debug for ColumnMatrix2x3<T>
where T: Debug,

§

impl<T> Debug for ColumnMatrix2x4<T>
where T: Debug,

§

impl<T> Debug for ColumnMatrix3<T>
where T: Debug,

§

impl<T> Debug for ColumnMatrix3x2<T>
where T: Debug,

§

impl<T> Debug for ColumnMatrix3x4<T>
where T: Debug,

§

impl<T> Debug for ColumnMatrix4<T>
where T: Debug,

§

impl<T> Debug for ColumnMatrix4x2<T>
where T: Debug,

§

impl<T> Debug for ColumnMatrix4x3<T>
where T: Debug,

§

impl<T> Debug for Consumer<T>
where T: Debug,

§

impl<T> Debug for EvQueueControl<T>
where T: Debug,

§

impl<T> Debug for Injector<T>

§

impl<T> Debug for Input<T>
where T: Debug + Send,

§

impl<T> Debug for IntoIter<T>
where T: Debug,

§

impl<T> Debug for Limit<T>
where T: Debug,

§

impl<T> Debug for OnceBox<T>

§

impl<T> Debug for OnceCell<T>
where T: Debug,

§

impl<T> Debug for OnceCell<T>
where T: Debug,

§

impl<T> Debug for Output<T>
where T: Debug + Send,

§

impl<T> Debug for Owned<T>
where T: Pointable + ?Sized,

§

impl<T> Debug for Point2<T>
where T: Debug,

§

impl<T> Debug for Point3<T>
where T: Debug,

§

impl<T> Debug for Producer<T>
where T: Debug,

§

impl<T> Debug for PushError<T>

§

impl<T> Debug for Quaternion<T>
where T: Debug,

§

impl<T> Debug for RingBuffer<T>
where T: Debug,

§

impl<T> Debug for RowMatrix2<T>
where T: Debug,

§

impl<T> Debug for RowMatrix2x3<T>
where T: Debug,

§

impl<T> Debug for RowMatrix2x4<T>
where T: Debug,

§

impl<T> Debug for RowMatrix3<T>
where T: Debug,

§

impl<T> Debug for RowMatrix3x2<T>
where T: Debug,

§

impl<T> Debug for RowMatrix3x4<T>
where T: Debug,

§

impl<T> Debug for RowMatrix4<T>
where T: Debug,

§

impl<T> Debug for RowMatrix4x2<T>
where T: Debug,

§

impl<T> Debug for RowMatrix4x3<T>
where T: Debug,

§

impl<T> Debug for ScopedJoinHandle<'_, T>

§

impl<T> Debug for ShardedLock<T>
where T: Debug + ?Sized,

§

impl<T> Debug for ShardedLockReadGuard<'_, T>
where T: Debug,

§

impl<T> Debug for ShardedLockWriteGuard<'_, T>
where T: Debug,

§

impl<T> Debug for Shared<'_, T>
where T: Pointable + ?Sized,

§

impl<T> Debug for Steal<T>

§

impl<T> Debug for Stealer<T>

§

impl<T> Debug for Take<T>
where T: Debug,

§

impl<T> Debug for TripleBuffer<T>
where T: Debug + Send,

§

impl<T> Debug for Vector2<T>
where T: Debug,

§

impl<T> Debug for Vector3<T>
where T: Debug,

§

impl<T> Debug for Vector4<T>
where T: Debug,

§

impl<T> Debug for Worker<T>

§

impl<T> Debug for __BindgenUnionField<T>

§

impl<T> Debug for __BindgenUnionField<T>

§

impl<T> Debug for __IncompleteArrayField<T>

§

impl<T> Debug for __IncompleteArrayField<T>

§

impl<T> Debug for __IncompleteArrayField<T>

§

impl<T> Debug for __IncompleteArrayField<T>

§

impl<T> Debug for __IncompleteArrayField<T>

§

impl<T> Debug for __IncompleteArrayField<T>

Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::btree_set::Entry<'_, T, A>
where T: Debug + Ord, A: Allocator + Clone,

§

impl<T, A> Debug for devela::_dep::hashbrown::hash_table::Entry<'_, T, A>
where T: Debug, A: Allocator,

1.17.0 · Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::binary_heap::IntoIter<T, A>
where T: Debug, A: Allocator,

Source§

impl<T, A> Debug for IntoIterSorted<T, A>
where T: Debug, A: Debug + Allocator,

1.17.0 · Source§

impl<T, A> Debug for PeekMut<'_, T, A>
where T: Ord + Debug, A: Allocator,

1.17.0 · Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::btree_set::Difference<'_, T, A>
where T: Debug, A: Allocator + Clone,

1.17.0 · Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::btree_set::Intersection<'_, T, A>
where T: Debug, A: Allocator + Clone,

1.0.0 · Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::btree_set::IntoIter<T, A>
where T: Debug, A: Debug + Allocator + Clone,

Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::btree_set::OccupiedEntry<'_, T, A>
where T: Debug + Ord, A: Allocator + Clone,

Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::btree_set::VacantEntry<'_, T, A>
where T: Debug + Ord, A: Allocator + Clone,

Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::linked_list::Cursor<'_, T, A>
where T: Debug, A: Allocator,

Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::linked_list::CursorMut<'_, T, A>
where T: Debug, A: Allocator,

1.17.0 · Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::linked_list::IntoIter<T, A>
where T: Debug, A: Allocator,

1.17.0 · Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::vec_deque::Drain<'_, T, A>
where T: Debug, A: Allocator,

1.17.0 · Source§

impl<T, A> Debug for devela::_dep::_alloc::collections::vec_deque::IntoIter<T, A>
where T: Debug, A: Allocator,

Source§

impl<T, A> Debug for UniqueRc<T, A>
where T: Debug + ?Sized, A: Allocator,

1.17.0 · Source§

impl<T, A> Debug for devela::_dep::_alloc::vec::Drain<'_, T, A>
where T: Debug, A: Allocator,

1.13.0 · Source§

impl<T, A> Debug for devela::_dep::_alloc::vec::IntoIter<T, A>
where T: Debug, A: Allocator,

§

impl<T, A> Debug for AbsentEntry<'_, T, A>
where T: Debug, A: Allocator,

§

impl<T, A> Debug for devela::_dep::hashbrown::hash_table::Drain<'_, T, A>
where T: Debug, A: Allocator,

§

impl<T, A> Debug for devela::_dep::hashbrown::hash_table::IntoIter<T, A>
where T: Debug, A: Allocator,

§

impl<T, A> Debug for devela::_dep::hashbrown::hash_table::OccupiedEntry<'_, T, A>
where T: Debug, A: Allocator,

§

impl<T, A> Debug for devela::_dep::hashbrown::hash_table::VacantEntry<'_, T, A>
where T: Debug, A: Allocator,

§

impl<T, A> Debug for HashTable<T, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, A> Debug for BTreeSet<T, A>
where T: Debug, A: Allocator + Clone,

1.4.0 · Source§

impl<T, A> Debug for BinaryHeap<T, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, A> Debug for devela::all::Box<T, A>
where T: Debug + ?Sized, A: Allocator,

1.0.0 · Source§

impl<T, A> Debug for LinkedList<T, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, A> Debug for Rc<T, A>
where T: Debug + ?Sized, A: Allocator,

1.4.0 · Source§

impl<T, A> Debug for devela::all::RcWeak<T, A>
where A: Allocator, T: ?Sized,

1.0.0 · Source§

impl<T, A> Debug for devela::all::Vec<T, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, A> Debug for VecDeque<T, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, A> Debug for Arc<T, A>
where T: Debug + ?Sized, A: Allocator,

1.4.0 · Source§

impl<T, A> Debug for devela::work::ArcWeak<T, A>
where A: Allocator, T: ?Sized,

§

impl<T, B> Debug for EulerAngles<T, B>
where T: Debug, B: Debug,

§

impl<T, E> Debug for ArchivedResult<T, E>
where T: Debug, E: Debug,

1.0.0 · Source§

impl<T, E> Debug for Result<T, E>
where T: Debug, E: Debug,

Source§

impl<T, F> Debug for devela::_dep::_alloc::collections::linked_list::ExtractIf<'_, T, F>
where T: Debug,

1.80.0 · Source§

impl<T, F> Debug for LazyLock<T, F>
where T: Debug,

§

impl<T, F> Debug for ArchivedRc<T, F>
where T: ArchivePointee + Debug + ?Sized,

§

impl<T, F> Debug for ArchivedRcWeak<T, F>
where T: ArchivePointee + Debug + ?Sized,

1.34.0 · Source§

impl<T, F> Debug for Successors<T, F>
where T: Debug,

1.80.0 · Source§

impl<T, F> Debug for LazyCell<T, F>
where T: Debug,

§

impl<T, F> Debug for Lazy<T, F>
where T: Debug,

§

impl<T, F> Debug for Lazy<T, F>
where T: Debug,

Source§

impl<T, F, A> Debug for devela::_dep::_alloc::collections::btree_set::ExtractIf<'_, T, F, A>
where A: Allocator + Clone, T: Debug, F: FnMut(&T) -> bool,

Source§

impl<T, F, S> Debug for ScopeGuard<T, F, S>
where T: Debug, F: FnOnce(T), S: Strategy,

§

impl<T, N> Debug for NichedOption<T, N>
where T: Debug, N: Niching<T> + ?Sized,

§

impl<T, O> Debug for RelPtr<T, O>

1.27.0 · Source§

impl<T, P> Debug for devela::_core::slice::RSplit<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.27.0 · Source§

impl<T, P> Debug for RSplitMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for devela::_core::slice::RSplitN<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for RSplitNMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for devela::_core::slice::Split<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.51.0 · Source§

impl<T, P> Debug for devela::_core::slice::SplitInclusive<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.51.0 · Source§

impl<T, P> Debug for devela::_core::slice::SplitInclusiveMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for devela::_core::slice::SplitMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for devela::_core::slice::SplitN<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 · Source§

impl<T, P> Debug for SplitNMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

§

impl<T, P> Debug for CompareExchangeError<'_, T, P>
where P: Pointer<T> + Debug,

Source§

impl<T, S> Debug for devela::_dep::_std::collections::hash_set::Entry<'_, T, S>
where T: Debug,

1.16.0 · Source§

impl<T, S> Debug for devela::_dep::_std::collections::hash_set::Difference<'_, T, S>
where T: Debug + Eq + Hash, S: BuildHasher,

1.16.0 · Source§

impl<T, S> Debug for devela::_dep::_std::collections::hash_set::Intersection<'_, T, S>
where T: Debug + Eq + Hash, S: BuildHasher,

Source§

impl<T, S> Debug for devela::_dep::_std::collections::hash_set::OccupiedEntry<'_, T, S>
where T: Debug,

1.16.0 · Source§

impl<T, S> Debug for devela::_dep::_std::collections::hash_set::SymmetricDifference<'_, T, S>
where T: Debug + Eq + Hash, S: BuildHasher,

1.16.0 · Source§

impl<T, S> Debug for devela::_dep::_std::collections::hash_set::Union<'_, T, S>
where T: Debug + Eq + Hash, S: BuildHasher,

Source§

impl<T, S> Debug for devela::_dep::_std::collections::hash_set::VacantEntry<'_, T, S>
where T: Debug,

1.0.0 · Source§

impl<T, S> Debug for devela::_dep::_std::collections::HashSet<T, S>
where T: Debug,

§

impl<T, S> Debug for Checkpoint<T, S>
where T: Debug,

§

impl<T, S, A> Debug for devela::_dep::hashbrown::hash_set::Entry<'_, T, S, A>
where T: Debug, A: Allocator,

§

impl<T, S, A> Debug for devela::_dep::hashbrown::hash_set::Difference<'_, T, S, A>
where T: Debug + Eq + Hash, S: BuildHasher, A: Allocator,

§

impl<T, S, A> Debug for devela::_dep::hashbrown::hash_set::Intersection<'_, T, S, A>
where T: Debug + Eq + Hash, S: BuildHasher, A: Allocator,

§

impl<T, S, A> Debug for devela::_dep::hashbrown::hash_set::OccupiedEntry<'_, T, S, A>
where T: Debug, A: Allocator,

§

impl<T, S, A> Debug for devela::_dep::hashbrown::hash_set::SymmetricDifference<'_, T, S, A>
where T: Debug + Eq + Hash, S: BuildHasher, A: Allocator,

§

impl<T, S, A> Debug for devela::_dep::hashbrown::hash_set::Union<'_, T, S, A>
where T: Debug + Eq + Hash, S: BuildHasher, A: Allocator,

§

impl<T, S, A> Debug for devela::_dep::hashbrown::hash_set::VacantEntry<'_, T, S, A>
where T: Debug, A: Allocator,

§

impl<T, S, A> Debug for devela::all::HashSet<T, S, A>
where T: Debug, A: Allocator,

1.0.0 · Source§

impl<T, U> Debug for devela::all::IoChain<T, U>
where T: Debug, U: Debug,

§

impl<T, U> Debug for Chain<T, U>
where T: Debug, U: Debug,

Source§

impl<T, const CAP: usize> Debug for ArrayVec<T, CAP>
where T: Debug,

Source§

impl<T, const CAP: usize> Debug for arrayvec::arrayvec::IntoIter<T, CAP>
where T: Debug,

1.0.0 · Source§

impl<T, const N: usize> Debug for [T; N]
where T: Debug,

Source§

impl<T, const N: usize> Debug for Mask<T, N>

Source§

impl<T, const N: usize> Debug for Simd<T, N>

§

impl<T, const N: usize> Debug for devela::_dep::rayon::array::IntoIter<T, N>
where T: Debug + Send,

§

impl<T, const N: usize> Debug for InlineVec<T, N>
where T: Debug,

1.40.0 · Source§

impl<T, const N: usize> Debug for devela::all::ArrayIntoIter<T, N>
where T: Debug,

Source§

impl<T: Debug> Debug for Angle<T>

Available on crate feature geom only.
Source§

impl<T: Debug> Debug for BareBox<T>

Source§

impl<T: Debug> Debug for CacheAlign<T>

Source§

impl<T: Debug> Debug for HasherFnv<T>

Source§

impl<T: Debug> Debug for HasherFx<T>

Source§

impl<T: Debug> Debug for VecVector<T>

Available on crate feature alg only.
Source§

impl<T: Debug> Debug for Bitwise<T>

Source§

impl<T: Debug> Debug for Cast<T>

Available on prim··· only.
Source§

impl<T: Debug> Debug for Compare<T>

Source§

impl<T: Debug> Debug for Float<T>

Source§

impl<T: Debug> Debug for Frac<T>

Source§

impl<T: Debug> Debug for Int<T>

Source§

impl<T: Debug> Debug for Interval<T>

Source§

impl<T: Debug, E: Debug> Debug for Coro<T, E>

Available on crate feature unsafe_async only.
Source§

impl<T: Debug, const C: usize, const R: usize, const CR: usize, S: Storage, const RMAJ: bool> Debug for Array2d<T, C, R, CR, RMAJ, S>
where S::Stored<[T; CR]>: Debug,

Source§

impl<T: Debug, const CAP: usize, IDX: Debug, S: Storage> Debug for Destaque<T, CAP, IDX, S>
where S::Stored<[T; CAP]>: Debug,

Source§

impl<T: Debug, const CAP: usize, IDX: Debug, S: Storage> Debug for Stack<T, CAP, IDX, S>
where S::Stored<[T; CAP]>: Debug,

Source§

impl<T: Debug, const CAP: usize, S: Storage> Debug for devela::all::Array<T, CAP, S>
where S::Stored<[T; CAP]>: Debug,

Source§

impl<T: Debug, const D: usize> Debug for Extent<T, D>

Available on crate feature geom only.
Source§

impl<T: Debug, const D: usize> Debug for Point<T, D>

Available on crate feature geom only.
Source§

impl<T: Debug, const D: usize> Debug for Vector<T, D>

Available on crate feature alg only.
Source§

impl<T: ArrayDebug> Debug for ArrayFmt<'_, T>

Source§

impl<T: TupleDebug> Debug for TupleFmt<'_, T>

Available on crate feature _tuple only.
§

impl<U, I, ID, F> Debug for TryFold<I, U, ID, F>

Source§

impl<V, Q> Debug for ValueQuant<V, Q>
where V: Debug, Q: Debug,

1.0.0 · Source§

impl<W> Debug for IntoInnerError<W>
where W: Debug,

§

impl<W> Debug for StdFmtWrite<W>
where W: Debug,

§

impl<W> Debug for StdIoWrite<W>
where W: Debug,

§

impl<W> Debug for IoWriter<W>
where W: Debug,

§

impl<W> Debug for devela::_dep::tokio::io::BufWriter<W>
where W: Debug,

1.0.0 · Source§

impl<W> Debug for devela::all::IoBufWriter<W>
where W: Write + Debug + ?Sized,

1.0.0 · Source§

impl<W> Debug for LineWriter<W>
where W: Write + Debug + ?Sized,

§

impl<W, A, S> Debug for Serializer<W, A, S>
where W: Debug, A: Debug, S: Debug,

§

impl<W, N> Debug for MapNiche<W, N>
where W: ?Sized, N: ?Sized,

Source§

impl<Y, MO, D, H, M, S, MS, US, NS> Debug for TimeSplit<Y, MO, D, H, M, S, MS, US, NS>
where Y: 'static + Debug, MO: 'static + Debug, D: 'static + Debug, H: 'static + Debug, M: 'static + Debug, S: 'static + Debug, MS: 'static + Debug, US: 'static + Debug, NS: 'static + Debug,

Source§

impl<Y, R> Debug for CoroutineState<Y, R>
where Y: Debug, R: Debug,

Source§

impl<_0: Debug, _1: Debug, _2: Debug, _3: Debug, _4: Debug, _5: Debug, _6: Debug, _7: Debug, _8: Debug, _9: Debug, _10: Debug, _11: Debug> Debug for TupleElement<_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11>

Available on crate feature _tuple only.
§

impl<const A: usize> Debug for AlignedVec<A>

Source§

impl<const CAP: usize> Debug for StringNonul<CAP>

Available on crate feature _string_nonul only.
Source§

impl<const CAP: usize> Debug for StringU8<CAP>

Source§

impl<const CAP: usize> Debug for StringU16<CAP>

Source§

impl<const CAP: usize> Debug for StringU32<CAP>

Source§

impl<const CAP: usize> Debug for StringUsize<CAP>

Source§

impl<const CAP: usize> Debug for GraphemeNonul<CAP>

Source§

impl<const CAP: usize> Debug for GraphemeU8<CAP>

Source§

impl<const CAP: usize> Debug for ArrayString<CAP>

Source§

impl<const SH1: usize, const SH2: usize, const SH3: usize> Debug for XorShift8Custom<SH1, SH2, SH3>

Available on crate feature rand only.
Source§

impl<const V: i8> Debug for devela::_info::examples::niche::NonValueI8<V>

Available on doc only.
Source§

impl<const V: i8> Debug for devela::all::NonValueI8<V>

Source§

impl<const V: u8> Debug for NonValueU8<V>

Source§

impl<const V: u16> Debug for NonValueU16<V>