pub_just

Trait Debug

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

? formatting.

Debug should format the output in a programmer-facing, debugging context.

Generally speaking, you should just derive a Debug implementation.

When used with the alternate format specifier #?, the output is pretty-printed.

For more information on formatters, see the module-level documentation.

This trait can be used with #[derive] if all fields implement Debug. When derived for structs, it will use the name of the struct, then {, then a comma-separated list of each fieldโ€™s name and Debug value, then }. For enums, it will use the name of the variant and, if applicable, (, then the Debug values of the fields, then ).

ยงStability

Derived Debug formats are not stable, and so may change with future Rust versions. Additionally, Debug implementations of types provided by the standard library (std, core, alloc, etc.) are not stable, and may also change with future Rust versions.

ยงExamples

Deriving an implementation:

#[derive(Debug)]
struct Point {
    x: i32,
    y: i32,
}

let origin = Point { x: 0, y: 0 };

assert_eq!(
    format!("The origin is: {origin:?}"),
    "The origin is: Point { x: 0, y: 0 }",
);

Manually implementing:

use std::fmt;

struct Point {
    x: i32,
    y: i32,
}

impl fmt::Debug for Point {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("Point")
         .field("x", &self.x)
         .field("y", &self.y)
         .finish()
    }
}

let origin = Point { x: 0, y: 0 };

assert_eq!(
    format!("The origin is: {origin:?}"),
    "The origin is: Point { x: 0, y: 0 }",
);

There are a number of helper methods on the Formatter struct to help you with manual implementations, such as debug_struct.

Types that do not wish to use the standard suite of debug representations provided by the Formatter trait (debug_struct, debug_tuple, debug_list, debug_set, debug_map) can do something totally custom by manually writing an arbitrary representation to the Formatter.

impl fmt::Debug for Point {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "Point [{} {}]", self.x, self.y)
    }
}

Debug implementations using either derive or the debug builder API on Formatter support pretty-printing using the alternate flag: {:#?}.

Pretty-printing with #?:

#[derive(Debug)]
struct Point {
    x: i32,
    y: i32,
}

let origin = Point { x: 0, y: 0 };

let expected = "The origin is: Point {
    x: 0,
    y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);

Required Methodsยง

1.0.0 ยท 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 AttributeDiscriminant

1.0.0 ยท Sourceยง

impl Debug for pub_just::cmp::Ordering

Sourceยง

impl Debug for pub_just::completions::Shell

Sourceยง

impl Debug for ConditionalOperator

Sourceยง

impl Debug for ConfigError

Sourceยง

impl Debug for Delimiter

Sourceยง

impl Debug for DumpFormat

1.0.0 ยท Sourceยง

impl Debug for VarError

1.28.0 ยท Sourceยง

impl Debug for pub_just::fmt::Alignment

Sourceยง

impl Debug for TryReserveErrorKind

Sourceยง

impl Debug for AsciiChar

1.34.0 ยท Sourceยง

impl Debug for Infallible

1.16.0 ยท Sourceยง

impl Debug for c_void

1.7.0 ยท Sourceยง

impl Debug for IpAddr

Sourceยง

impl Debug for Ipv6MulticastScope

1.0.0 ยท Sourceยง

impl Debug for core::net::socket_addr::SocketAddr

1.0.0 ยท Sourceยง

impl Debug for FpCategory

1.55.0 ยท Sourceยง

impl Debug for IntErrorKind

1.0.0 ยท Sourceยง

impl Debug for core::sync::atomic::Ordering

1.65.0 ยท Sourceยง

impl Debug for BacktraceStatus

1.0.0 ยท Sourceยง

impl Debug for 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

Sourceยง

impl Debug for _Unwind_Reason_Code

Sourceยง

impl Debug for AhoCorasickKind

Sourceยง

impl Debug for aho_corasick::packed::api::MatchKind

Sourceยง

impl Debug for aho_corasick::util::error::MatchErrorKind

Sourceยง

impl Debug for Candidate

Sourceยง

impl Debug for aho_corasick::util::search::Anchored

Sourceยง

impl Debug for aho_corasick::util::search::MatchKind

Sourceยง

impl Debug for StartKind

Sourceยง

impl Debug for Colour

Sourceยง

impl Debug for anstyle_parse::state::definitions::Action

Sourceยง

impl Debug for anstyle_parse::state::definitions::State

Sourceยง

impl Debug for AnsiColor

Sourceยง

impl Debug for anstyle::color::Color

Sourceยง

impl Debug for BigEndian

Sourceยง

impl Debug for LittleEndian

Sourceยง

impl Debug for Colons

Sourceยง

impl Debug for Fixed

Sourceยง

impl Debug for Numeric

Sourceยง

impl Debug for OffsetPrecision

Sourceยง

impl Debug for Pad

Sourceยง

impl Debug for ParseErrorKind

Sourceยง

impl Debug for SecondsFormat

Sourceยง

impl Debug for Month

Sourceยง

impl Debug for RoundingError

Sourceยง

impl Debug for Weekday

Sourceยง

impl Debug for ArgAction

Sourceยง

impl Debug for ArgPredicate

Sourceยง

impl Debug for ValueHint

Sourceยง

impl Debug for ContextKind

Sourceยง

impl Debug for ContextValue

Sourceยง

impl Debug for clap_builder::error::kind::ErrorKind

Sourceยง

impl Debug for MatchesError

Sourceยง

impl Debug for ValueSource

Sourceยง

impl Debug for clap_builder::util::color::ColorChoice

Sourceยง

impl Debug for clap_complete::aot::shells::shell::Shell

Sourceยง

impl Debug for colorchoice::ColorChoice

Sourceยง

impl Debug for ctrlc::error::Error

Sourceยง

impl Debug for SignalType

Sourceยง

impl Debug for TruncSide

Sourceยง

impl Debug for dotenvy::errors::Error

Sourceยง

impl Debug for GetTimezoneError

Sourceยง

impl Debug for DIR

Sourceยง

impl Debug for FILE

Sourceยง

impl Debug for fpos_t

Sourceยง

impl Debug for libc::unix::linux_like::timezone

Sourceยง

impl Debug for fpos64_t

Sourceยง

impl Debug for tpacket_versions

Sourceยง

impl Debug for fsconfig_command

Sourceยง

impl Debug for membarrier_cmd

Sourceยง

impl Debug for membarrier_cmd_flag

Sourceยง

impl Debug for PrefilterConfig

Sourceยง

impl Debug for memmap2::advice::Advice

Sourceยง

impl Debug for UncheckedAdvice

Sourceยง

impl Debug for nix::errno::consts::Errno

Sourceยง

impl Debug for FlockArg

Sourceยง

impl Debug for PosixFadviseAdvice

Sourceยง

impl Debug for PrctlMCEKillPolicy

Sourceยง

impl Debug for SigHandler

Sourceยง

impl Debug for SigevNotify

Sourceยง

impl Debug for SigmaskHow

Sourceยง

impl Debug for Signal

Sourceยง

impl Debug for FchmodatFlags

Sourceยง

impl Debug for UtimensatFlags

Sourceยง

impl Debug for WaitStatus

Sourceยง

impl Debug for ForkResult

Sourceยง

impl Debug for UnlinkatFlags

Sourceยง

impl Debug for Whence

Sourceยง

impl Debug for FloatErrorKind

Sourceยง

impl Debug for BernoulliError

Sourceยง

impl Debug for WeightedError

Sourceยง

impl Debug for IndexVec

Sourceยง

impl Debug for IndexVecIntoIter

Sourceยง

impl Debug for Yield

Sourceยง

impl Debug for StartError

Sourceยง

impl Debug for WhichCaptures

Sourceยง

impl Debug for regex_automata::nfa::thompson::nfa::State

Sourceยง

impl Debug for regex_automata::util::look::Look

Sourceยง

impl Debug for regex_automata::util::search::Anchored

Sourceยง

impl Debug for regex_automata::util::search::MatchErrorKind

Sourceยง

impl Debug for regex_automata::util::search::MatchKind

Sourceยง

impl Debug for AssertionKind

Sourceยง

impl Debug for regex_syntax::ast::Ast

Sourceยง

impl Debug for ClassAsciiKind

Sourceยง

impl Debug for ClassPerlKind

Sourceยง

impl Debug for ClassSet

Sourceยง

impl Debug for ClassSetBinaryOpKind

Sourceยง

impl Debug for ClassSetItem

Sourceยง

impl Debug for ClassUnicodeKind

Sourceยง

impl Debug for ClassUnicodeOpKind

Sourceยง

impl Debug for regex_syntax::ast::ErrorKind

Sourceยง

impl Debug for regex_syntax::ast::Flag

Sourceยง

impl Debug for FlagsItemKind

Sourceยง

impl Debug for GroupKind

Sourceยง

impl Debug for HexLiteralKind

Sourceยง

impl Debug for LiteralKind

Sourceยง

impl Debug for RepetitionKind

Sourceยง

impl Debug for RepetitionRange

Sourceยง

impl Debug for SpecialLiteralKind

Sourceยง

impl Debug for regex_syntax::error::Error

Sourceยง

impl Debug for Class

Sourceยง

impl Debug for Dot

Sourceยง

impl Debug for regex_syntax::hir::ErrorKind

Sourceยง

impl Debug for HirKind

Sourceยง

impl Debug for regex_syntax::hir::Look

Sourceยง

impl Debug for ExtractKind

Sourceยง

impl Debug for Utf8Sequence

Sourceยง

impl Debug for regex::error::Error

Sourceยง

impl Debug for Inline

Sourceยง

impl Debug for rustix::backend::fs::types::Advice

Sourceยง

impl Debug for rustix::backend::fs::types::FileType

Sourceยง

impl Debug for FlockOperation

Sourceยง

impl Debug for rustix::fs::seek_from::SeekFrom

Sourceยง

impl Debug for Direction

Sourceยง

impl Debug for rustix::termios::types::Action

Sourceยง

impl Debug for OptionalActions

Sourceยง

impl Debug for QueueSelector

Sourceยง

impl Debug for Op

Sourceยง

impl Debug for Category

Sourceยง

impl Debug for Value

Sourceยง

impl Debug for Algorithm

Sourceยง

impl Debug for ChangeTag

Sourceยง

impl Debug for DiffOp

Sourceยง

impl Debug for DiffTag

Sourceยง

impl Debug for StrSimError

Sourceยง

impl Debug for strum::ParseError

Sourceยง

impl Debug for SpooledData

Sourceยง

impl Debug for GraphemeIncomplete

Sourceยง

impl Debug for Variant

Sourceยง

impl Debug for uuid::Version

1.0.0 ยท Sourceยง

impl Debug for pub_just::io::ErrorKind

1.0.0 ยท Sourceยง

impl Debug for pub_just::io::SeekFrom

Sourceยง

impl Debug for Keyword

Sourceยง

impl Debug for OutputError

Sourceยง

impl Debug for ParameterKind

Sourceยง

impl Debug for SearchConfig

Sourceยง

impl Debug for SearchError

Sourceยง

impl Debug for SearchStep

Sourceยง

impl Debug for StringDelimiter

Sourceยง

impl Debug for Subcommand

Sourceยง

impl Debug for TokenKind

Sourceยง

impl Debug for UnstableFeature

Sourceยง

impl Debug for UseColor

Sourceยง

impl Debug for Verbosity

Sourceยง

impl Debug for Warning

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 pub_just::color::Color

Sourceยง

impl Debug for pub_just::config::Config

Sourceยง

impl Debug for CurrentDirContext

Sourceยง

impl Debug for SearchDirConflictContext

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

1.0.0 ยท Sourceยง

impl Debug for Arguments<'_>

1.0.0 ยท Sourceยง

impl Debug for pub_just::fmt::Error

1.6.0 ยท Sourceยง

impl Debug for DirBuilder

1.13.0 ยท Sourceยง

impl Debug for pub_just::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 pub_just::fs::FileType

1.16.0 ยท Sourceยง

impl Debug for 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

Sourceยง

impl Debug for Global

Sourceยง

impl Debug for UnorderedKeyError

1.57.0 ยท Sourceยง

impl Debug for TryReserveError

1.0.0 ยท Sourceยง

impl Debug for CString

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 alloc::string::Drain<'_>

1.0.0 ยท Sourceยง

impl Debug for FromUtf8Error

1.0.0 ยท Sourceยง

impl Debug for FromUtf16Error

1.0.0 ยท Sourceยง

impl Debug for String

1.28.0 ยท Sourceยง

impl Debug for Layout

1.50.0 ยท Sourceยง

impl Debug for LayoutError

Sourceยง

impl Debug for AllocError

1.0.0 ยท Sourceยง

impl Debug for TypeId

1.34.0 ยท Sourceยง

impl Debug for TryFromSliceError

1.16.0 ยท Sourceยง

impl Debug for 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.20.0 ยท Sourceยง

impl Debug for ParseCharError

1.9.0 ยท Sourceยง

impl Debug for DecodeUtf16Error

1.20.0 ยท Sourceยง

impl Debug for core::char::EscapeDebug

1.0.0 ยท Sourceยง

impl Debug for core::char::EscapeDefault

1.0.0 ยท Sourceยง

impl Debug for core::char::EscapeUnicode

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.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.3.0 ยท Sourceยง

impl Debug for CStr

1.69.0 ยท Sourceยง

impl Debug for FromBytesUntilNulError

1.64.0 ยท Sourceยง

impl Debug for FromBytesWithNulError

1.0.0 ยท Sourceยง

impl Debug for SipHasher

1.33.0 ยท Sourceยง

impl Debug for PhantomPinned

1.0.0 ยท Sourceยง

impl Debug for Ipv4Addr

1.0.0 ยท Sourceยง

impl Debug for Ipv6Addr

1.0.0 ยท Sourceยง

impl Debug for AddrParseError

1.0.0 ยท Sourceยง

impl Debug for SocketAddrV4

1.0.0 ยท Sourceยง

impl Debug for SocketAddrV6

1.0.0 ยท Sourceยง

impl Debug for core::num::dec2flt::ParseFloatError

1.0.0 ยท Sourceยง

impl Debug for ParseIntError

1.34.0 ยท Sourceยง

impl Debug for TryFromIntError

1.0.0 ยท Sourceยง

impl Debug for RangeFull

1.81.0 ยท Sourceยง

impl Debug for PanicMessage<'_>

Sourceยง

impl Debug for core::ptr::alignment::Alignment

1.3.0 ยท Sourceยง

impl Debug for AtomicBool

1.34.0 ยท Sourceยง

impl Debug for AtomicI8

1.34.0 ยท Sourceยง

impl Debug for AtomicI16

1.34.0 ยท Sourceยง

impl Debug for AtomicI32

1.34.0 ยท Sourceยง

impl Debug for AtomicI64

1.3.0 ยท Sourceยง

impl Debug for AtomicIsize

1.34.0 ยท Sourceยง

impl Debug for AtomicU8

1.34.0 ยท Sourceยง

impl Debug for AtomicU16

1.34.0 ยท Sourceยง

impl Debug for AtomicU32

1.34.0 ยท Sourceยง

impl Debug for AtomicU64

1.3.0 ยท Sourceยง

impl Debug for AtomicUsize

1.36.0 ยท Sourceยง

impl Debug for Context<'_>

Sourceยง

impl Debug for LocalWaker

1.36.0 ยท Sourceยง

impl Debug for RawWaker

1.36.0 ยท Sourceยง

impl Debug for RawWakerVTable

1.36.0 ยท Sourceยง

impl Debug for Waker

1.27.0 ยท Sourceยง

impl Debug for Duration

1.66.0 ยท Sourceยง

impl Debug for TryFromFloatSecsError

1.28.0 ยท Sourceยง

impl Debug for System

1.65.0 ยท Sourceยง

impl Debug for Backtrace

Sourceยง

impl Debug for BacktraceFrame

Sourceยง

impl Debug for std::ffi::os_str::Display<'_>

1.0.0 ยท Sourceยง

impl Debug for std::ffi::os_str::OsStr

1.7.0 ยท Sourceยง

impl Debug for DefaultHasher

1.16.0 ยท Sourceยง

impl Debug for RandomState

Sourceยง

impl Debug for IntoIncoming

1.0.0 ยท Sourceยง

impl Debug for TcpListener

1.0.0 ยท Sourceยง

impl Debug for TcpStream

1.0.0 ยท Sourceยง

impl Debug for UdpSocket

1.63.0 ยท Sourceยง

impl Debug for BorrowedFd<'_>

1.63.0 ยท Sourceยง

impl Debug for OwnedFd

Sourceยง

impl Debug for PidFd

1.10.0 ยท Sourceยง

impl Debug for std::os::unix::net::addr::SocketAddr

1.10.0 ยท Sourceยง

impl Debug for UnixDatagram

1.10.0 ยท Sourceยง

impl Debug for UnixListener

1.10.0 ยท Sourceยง

impl Debug for UnixStream

Sourceยง

impl Debug for UCred

Sourceยง

impl Debug for PipeReader

Sourceยง

impl Debug for PipeWriter

Sourceยง

impl Debug for DefaultRandomSource

1.16.0 ยท Sourceยง

impl Debug for Barrier

1.16.0 ยท Sourceยง

impl Debug for BarrierWaitResult

1.16.0 ยท Sourceยง

impl Debug for Condvar

1.5.0 ยท Sourceยง

impl Debug for WaitTimeoutResult

1.0.0 ยท Sourceยง

impl Debug for RecvError

1.16.0 ยท Sourceยง

impl Debug for std::sync::once::Once

1.16.0 ยท Sourceยง

impl Debug for OnceState

1.26.0 ยท Sourceยง

impl Debug for AccessError

1.63.0 ยท Sourceยง

impl Debug for std::thread::scoped::Scope<'_, '_>

1.0.0 ยท Sourceยง

impl Debug for std::thread::Builder

1.0.0 ยท Sourceยง

impl Debug for Thread

1.19.0 ยท Sourceยง

impl Debug for ThreadId

1.8.0 ยท Sourceยง

impl Debug for Instant

1.8.0 ยท Sourceยง

impl Debug for SystemTime

1.8.0 ยท Sourceยง

impl Debug for SystemTimeError

Sourceยง

impl Debug for AhoCorasick

Sourceยง

impl Debug for AhoCorasickBuilder

Sourceยง

impl Debug for aho_corasick::automaton::OverlappingState

Sourceยง

impl Debug for aho_corasick::dfa::Builder

Sourceยง

impl Debug for aho_corasick::dfa::DFA

Sourceยง

impl Debug for aho_corasick::nfa::contiguous::Builder

Sourceยง

impl Debug for aho_corasick::nfa::contiguous::NFA

Sourceยง

impl Debug for aho_corasick::nfa::noncontiguous::Builder

Sourceยง

impl Debug for aho_corasick::nfa::noncontiguous::NFA

Sourceยง

impl Debug for aho_corasick::packed::api::Builder

Sourceยง

impl Debug for aho_corasick::packed::api::Config

Sourceยง

impl Debug for aho_corasick::packed::api::Searcher

Sourceยง

impl Debug for aho_corasick::util::error::BuildError

Sourceยง

impl Debug for aho_corasick::util::error::MatchError

Sourceยง

impl Debug for aho_corasick::util::prefilter::Prefilter

Sourceยง

impl Debug for aho_corasick::util::primitives::PatternID

Sourceยง

impl Debug for aho_corasick::util::primitives::PatternIDError

Sourceยง

impl Debug for aho_corasick::util::primitives::StateID

Sourceยง

impl Debug for aho_corasick::util::primitives::StateIDError

Sourceยง

impl Debug for aho_corasick::util::search::Match

Sourceยง

impl Debug for aho_corasick::util::search::Span

Sourceยง

impl Debug for Infix

Sourceยง

impl Debug for ansi_term::ansi::Prefix

Sourceยง

impl Debug for Suffix

Sourceยง

impl Debug for ansi_term::style::Style

Styles have a special Debug implementation that only shows the fields that are set. Fields that havenโ€™t been touched arenโ€™t included in the output.

This behaviour gets bypassed when using the alternate formatting mode format!("{:#?}").

use ansi_term::Colour::{Red, Blue};
assert_eq!("Style { fg(Red), on(Blue), bold, italic }",
           format!("{:?}", Red.on(Blue).bold().italic()));
Sourceยง

impl Debug for StripBytes

Sourceยง

impl Debug for StripStr

Sourceยง

impl Debug for WinconBytes

Sourceยง

impl Debug for Params

Sourceยง

impl Debug for AsciiParser

Sourceยง

impl Debug for Utf8Parser

Sourceยง

impl Debug for Ansi256Color

Sourceยง

impl Debug for RgbColor

Sourceยง

impl Debug for EffectIter

Sourceยง

impl Debug for Effects

ยงExamples

let effects = anstyle::Effects::new();
assert_eq!(format!("{:?}", effects), "Effects()");

let effects = anstyle::Effects::BOLD | anstyle::Effects::UNDERLINE;
assert_eq!(format!("{:?}", effects), "Effects(BOLD | UNDERLINE)");
Sourceยง

impl Debug for Reset

Sourceยง

impl Debug for anstyle::style::Style

Sourceยง

impl Debug for bitflags::parser::ParseError

Sourceยง

impl Debug for Hash

Sourceยง

impl Debug for Hasher

Sourceยง

impl Debug for HexError

Sourceยง

impl Debug for OutputReader

Sourceยง

impl Debug for Eager

Sourceยง

impl Debug for block_buffer::Error

Sourceยง

impl Debug for block_buffer::Lazy

Sourceยง

impl Debug for FromPathBufError

Sourceยง

impl Debug for FromPathError

Sourceยง

impl Debug for camino::Iter<'_>

Sourceยง

impl Debug for ReadDirUtf8

Sourceยง

impl Debug for Utf8DirEntry

Sourceยง

impl Debug for Utf8PathBuf

Sourceยง

impl Debug for Parsed

Sourceยง

impl Debug for InternalFixed

Sourceยง

impl Debug for InternalNumeric

Sourceยง

impl Debug for OffsetFormat

Sourceยง

impl Debug for chrono::format::ParseError

Sourceยง

impl Debug for Months

Sourceยง

impl Debug for ParseMonthError

Sourceยง

impl Debug for NaiveDate

The Debug output of the naive date d is the same as d.format("%Y-%m-%d").

The string printed can be readily parsed via the parse method on str.

ยงExample

use chrono::NaiveDate;

assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(2015, 9, 5).unwrap()), "2015-09-05");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 1).unwrap()), "0000-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(9999, 12, 31).unwrap()), "9999-12-31");

ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.

assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(-1, 1, 1).unwrap()), "-0001-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(10000, 12, 31).unwrap()), "+10000-12-31");
Sourceยง

impl Debug for NaiveDateDaysIterator

Sourceยง

impl Debug for NaiveDateWeeksIterator

Sourceยง

impl Debug for NaiveDateTime

The Debug output of the naive date and time dt is the same as dt.format("%Y-%m-%dT%H:%M:%S%.f").

The string printed can be readily parsed via the parse method on str.

It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesnโ€™t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)

ยงExample

use chrono::NaiveDate;

let dt = NaiveDate::from_ymd_opt(2016, 11, 15).unwrap().and_hms_opt(7, 39, 24).unwrap();
assert_eq!(format!("{:?}", dt), "2016-11-15T07:39:24");

Leap seconds may also be used.

let dt =
    NaiveDate::from_ymd_opt(2015, 6, 30).unwrap().and_hms_milli_opt(23, 59, 59, 1_500).unwrap();
assert_eq!(format!("{:?}", dt), "2015-06-30T23:59:60.500");
Sourceยง

impl Debug for IsoWeek

The Debug output of the ISO week w is the same as d.format("%G-W%V") where d is any NaiveDate value in that week.

ยงExample

use chrono::{Datelike, NaiveDate};

assert_eq!(
    format!("{:?}", NaiveDate::from_ymd_opt(2015, 9, 5).unwrap().iso_week()),
    "2015-W36"
);
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 3).unwrap().iso_week()), "0000-W01");
assert_eq!(
    format!("{:?}", NaiveDate::from_ymd_opt(9999, 12, 31).unwrap().iso_week()),
    "9999-W52"
);

ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.

assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 2).unwrap().iso_week()), "-0001-W52");
assert_eq!(
    format!("{:?}", NaiveDate::from_ymd_opt(10000, 12, 31).unwrap().iso_week()),
    "+10000-W52"
);
Sourceยง

impl Debug for Days

Sourceยง

impl Debug for NaiveWeek

Sourceยง

impl Debug for NaiveTime

The Debug output of the naive time t is the same as t.format("%H:%M:%S%.f").

The string printed can be readily parsed via the parse method on str.

It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesnโ€™t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)

ยงExample

use chrono::NaiveTime;

assert_eq!(format!("{:?}", NaiveTime::from_hms_opt(23, 56, 4).unwrap()), "23:56:04");
assert_eq!(
    format!("{:?}", NaiveTime::from_hms_milli_opt(23, 56, 4, 12).unwrap()),
    "23:56:04.012"
);
assert_eq!(
    format!("{:?}", NaiveTime::from_hms_micro_opt(23, 56, 4, 1234).unwrap()),
    "23:56:04.001234"
);
assert_eq!(
    format!("{:?}", NaiveTime::from_hms_nano_opt(23, 56, 4, 123456).unwrap()),
    "23:56:04.000123456"
);

Leap seconds may also be used.

assert_eq!(
    format!("{:?}", NaiveTime::from_hms_milli_opt(6, 59, 59, 1_500).unwrap()),
    "06:59:60.500"
);
Sourceยง

impl Debug for FixedOffset

Sourceยง

impl Debug for Local

Sourceยง

impl Debug for Utc

Sourceยง

impl Debug for OutOfRange

Sourceยง

impl Debug for OutOfRangeError

Sourceยง

impl Debug for TimeDelta

Sourceยง

impl Debug for ParseWeekdayError

Sourceยง

impl Debug for Arg

Sourceยง

impl Debug for ArgGroup

Sourceยง

impl Debug for clap_builder::builder::command::Command

Sourceยง

impl Debug for clap_builder::builder::os_str::OsStr

Sourceยง

impl Debug for PossibleValue

Sourceยง

impl Debug for ValueRange

Sourceยง

impl Debug for Str

Sourceยง

impl Debug for StyledStr

Sourceยง

impl Debug for Styles

Sourceยง

impl Debug for BoolValueParser

Sourceยง

impl Debug for BoolishValueParser

Sourceยง

impl Debug for FalseyValueParser

Sourceยง

impl Debug for NonEmptyStringValueParser

Sourceยง

impl Debug for OsStringValueParser

Sourceยง

impl Debug for PathBufValueParser

Sourceยง

impl Debug for PossibleValuesParser

Sourceยง

impl Debug for StringValueParser

Sourceยง

impl Debug for UnknownArgumentValueParser

Sourceยง

impl Debug for ValueParser

Sourceยง

impl Debug for ArgMatches

Sourceยง

impl Debug for clap_builder::util::id::Id

Sourceยง

impl Debug for Bash

Sourceยง

impl Debug for Elvish

Sourceยง

impl Debug for Fish

Sourceยง

impl Debug for PowerShell

Sourceยง

impl Debug for Zsh

Sourceยง

impl Debug for ArgCursor

Sourceยง

impl Debug for RawArgs

Sourceยง

impl Debug for Collector

Sourceยง

impl Debug for LocalHandle

Sourceยง

impl Debug for Guard

Sourceยง

impl Debug for Backoff

Sourceยง

impl Debug for Parker

Sourceยง

impl Debug for Unparker

Sourceยง

impl Debug for WaitGroup

Sourceยง

impl Debug for crossbeam_utils::thread::Scope<'_>

Sourceยง

impl Debug for InvalidLength

Sourceยง

impl Debug for InvalidBufferSize

Sourceยง

impl Debug for InvalidOutputSize

Sourceยง

impl Debug for Rng

Sourceยง

impl Debug for getrandom::error::Error

Sourceยง

impl Debug for in6_addr

Sourceยง

impl Debug for libc::unix::linux_like::linux::arch::generic::termios2

Sourceยง

impl Debug for sem_t

Sourceยง

impl Debug for msqid_ds

Sourceยง

impl Debug for semid_ds

Sourceยง

impl Debug for sigset_t

Sourceยง

impl Debug for sysinfo

Sourceยง

impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::align::clone_args

Sourceยง

impl Debug for statvfs

Sourceยง

impl Debug for _libc_fpstate

Sourceยง

impl Debug for _libc_fpxreg

Sourceยง

impl Debug for _libc_xmmreg

Sourceยง

impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::flock64

Sourceยง

impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::flock

Sourceยง

impl Debug for ipc_perm

Sourceยง

impl Debug for mcontext_t

Sourceยง

impl Debug for pthread_attr_t

Sourceยง

impl Debug for ptrace_rseq_configuration

Sourceยง

impl Debug for shmid_ds

Sourceยง

impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::sigaction

Sourceยง

impl Debug for siginfo_t

Sourceยง

impl Debug for stack_t

Sourceยง

impl Debug for stat64

Sourceยง

impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::stat

Sourceยง

impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs64

Sourceยง

impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs

Sourceยง

impl Debug for statvfs64

Sourceยง

impl Debug for ucontext_t

Sourceยง

impl Debug for user

Sourceยง

impl Debug for user_fpregs_struct

Sourceยง

impl Debug for user_regs_struct

Sourceยง

impl Debug for Elf32_Chdr

Sourceยง

impl Debug for Elf64_Chdr

Sourceยง

impl Debug for __c_anonymous_ptrace_syscall_info_entry

Sourceยง

impl Debug for __c_anonymous_ptrace_syscall_info_exit

Sourceยง

impl Debug for __c_anonymous_ptrace_syscall_info_seccomp

Sourceยง

impl Debug for __exit_status

Sourceยง

impl Debug for __timeval

Sourceยง

impl Debug for aiocb

Sourceยง

impl Debug for cmsghdr

Sourceยง

impl Debug for fanotify_event_info_error

Sourceยง

impl Debug for fanotify_event_info_pidfd

Sourceยง

impl Debug for glob64_t

Sourceยง

impl Debug for iocb

Sourceยง

impl Debug for mallinfo2

Sourceยง

impl Debug for mallinfo

Sourceยง

impl Debug for msghdr

Sourceยง

impl Debug for nl_mmap_hdr

Sourceยง

impl Debug for nl_mmap_req

Sourceยง

impl Debug for nl_pktinfo

Sourceยง

impl Debug for ntptimeval

Sourceยง

impl Debug for ptrace_peeksiginfo_args

Sourceยง

impl Debug for ptrace_syscall_info

Sourceยง

impl Debug for regex_t

Sourceยง

impl Debug for rtentry

Sourceยง

impl Debug for seminfo

Sourceยง

impl Debug for sockaddr_xdp

Sourceยง

impl Debug for libc::unix::linux_like::linux::gnu::statx

Sourceยง

impl Debug for libc::unix::linux_like::linux::gnu::statx_timestamp

Sourceยง

impl Debug for tcp_info

Sourceยง

impl Debug for libc::unix::linux_like::linux::gnu::termios

Sourceยง

impl Debug for timex

Sourceยง

impl Debug for utmpx

Sourceยง

impl Debug for xdp_desc

Sourceยง

impl Debug for xdp_mmap_offsets

Sourceยง

impl Debug for xdp_mmap_offsets_v1

Sourceยง

impl Debug for xdp_options

Sourceยง

impl Debug for xdp_ring_offset

Sourceยง

impl Debug for xdp_ring_offset_v1

Sourceยง

impl Debug for xdp_statistics

Sourceยง

impl Debug for xdp_statistics_v1

Sourceยง

impl Debug for xdp_umem_reg

Sourceยง

impl Debug for xdp_umem_reg_v1

Sourceยง

impl Debug for libc::unix::linux_like::linux::non_exhaustive::open_how

Sourceยง

impl Debug for Elf32_Ehdr

Sourceยง

impl Debug for Elf32_Phdr

Sourceยง

impl Debug for Elf32_Shdr

Sourceยง

impl Debug for Elf32_Sym

Sourceยง

impl Debug for Elf64_Ehdr

Sourceยง

impl Debug for Elf64_Phdr

Sourceยง

impl Debug for Elf64_Shdr

Sourceยง

impl Debug for Elf64_Sym

Sourceยง

impl Debug for __c_anonymous__kernel_fsid_t

Sourceยง

impl Debug for __c_anonymous_elf32_rel

Sourceยง

impl Debug for __c_anonymous_elf64_rel

Sourceยง

impl Debug for __c_anonymous_ifru_map

Sourceยง

impl Debug for __c_anonymous_sockaddr_can_j1939

Sourceยง

impl Debug for __c_anonymous_sockaddr_can_tp

Sourceยง

impl Debug for af_alg_iv

Sourceยง

impl Debug for arpd_request

Sourceยง

impl Debug for can_filter

Sourceยง

impl Debug for cpu_set_t

Sourceยง

impl Debug for dirent64

Sourceยง

impl Debug for dirent

Sourceยง

impl Debug for dl_phdr_info

Sourceยง

impl Debug for dqblk

Sourceยง

impl Debug for epoll_params

Sourceยง

impl Debug for fanotify_event_info_fid

Sourceยง

impl Debug for fanotify_event_info_header

Sourceยง

impl Debug for fanotify_event_metadata

Sourceยง

impl Debug for fanotify_response

Sourceยง

impl Debug for fanout_args

Sourceยง

impl Debug for ff_condition_effect

Sourceยง

impl Debug for ff_constant_effect

Sourceยง

impl Debug for ff_effect

Sourceยง

impl Debug for ff_envelope

Sourceยง

impl Debug for ff_periodic_effect

Sourceยง

impl Debug for ff_ramp_effect

Sourceยง

impl Debug for ff_replay

Sourceยง

impl Debug for ff_rumble_effect

Sourceยง

impl Debug for ff_trigger

Sourceยง

impl Debug for libc::unix::linux_like::linux::file_clone_range

Sourceยง

impl Debug for fsid_t

Sourceยง

impl Debug for genlmsghdr

Sourceยง

impl Debug for glob_t

Sourceยง

impl Debug for hwtstamp_config

Sourceยง

impl Debug for if_nameindex

Sourceยง

impl Debug for ifconf

Sourceยง

impl Debug for ifreq

Sourceยง

impl Debug for in6_ifreq

Sourceยง

impl Debug for in6_pktinfo

Sourceยง

impl Debug for libc::unix::linux_like::linux::inotify_event

Sourceยง

impl Debug for input_absinfo

Sourceยง

impl Debug for input_event

Sourceยง

impl Debug for input_id

Sourceยง

impl Debug for input_keymap_entry

Sourceยง

impl Debug for input_mask

Sourceยง

impl Debug for libc::unix::linux_like::linux::itimerspec

Sourceยง

impl Debug for j1939_filter

Sourceยง

impl Debug for mntent

Sourceยง

impl Debug for mq_attr

Sourceยง

impl Debug for msginfo

Sourceยง

impl Debug for nlattr

Sourceยง

impl Debug for nlmsgerr

Sourceยง

impl Debug for nlmsghdr

Sourceยง

impl Debug for option

Sourceยง

impl Debug for packet_mreq

Sourceยง

impl Debug for passwd

Sourceยง

impl Debug for posix_spawn_file_actions_t

Sourceยง

impl Debug for posix_spawnattr_t

Sourceยง

impl Debug for pthread_barrier_t

Sourceยง

impl Debug for pthread_barrierattr_t

Sourceยง

impl Debug for pthread_cond_t

Sourceยง

impl Debug for pthread_condattr_t

Sourceยง

impl Debug for pthread_mutex_t

Sourceยง

impl Debug for pthread_mutexattr_t

Sourceยง

impl Debug for pthread_rwlock_t

Sourceยง

impl Debug for pthread_rwlockattr_t

Sourceยง

impl Debug for regmatch_t

Sourceยง

impl Debug for libc::unix::linux_like::linux::rlimit64

Sourceยง

impl Debug for sched_attr

Sourceยง

impl Debug for sctp_authinfo

Sourceยง

impl Debug for sctp_initmsg

Sourceยง

impl Debug for sctp_nxtinfo

Sourceยง

impl Debug for sctp_prinfo

Sourceยง

impl Debug for sctp_rcvinfo

Sourceยง

impl Debug for sctp_sndinfo

Sourceยง

impl Debug for sctp_sndrcvinfo

Sourceยง

impl Debug for seccomp_data

Sourceยง

impl Debug for seccomp_notif

Sourceยง

impl Debug for seccomp_notif_addfd

Sourceยง

impl Debug for seccomp_notif_resp

Sourceยง

impl Debug for seccomp_notif_sizes

Sourceยง

impl Debug for sembuf

Sourceยง

impl Debug for signalfd_siginfo

Sourceยง

impl Debug for sock_extended_err

Sourceยง

impl Debug for sock_filter

Sourceยง

impl Debug for sock_fprog

Sourceยง

impl Debug for sockaddr_alg

Sourceยง

impl Debug for sockaddr_nl

Sourceยง

impl Debug for sockaddr_pkt

Sourceยง

impl Debug for sockaddr_vm

Sourceยง

impl Debug for spwd

Sourceยง

impl Debug for tls12_crypto_info_aes_gcm_128

Sourceยง

impl Debug for tls12_crypto_info_aes_gcm_256

Sourceยง

impl Debug for tls12_crypto_info_chacha20_poly1305

Sourceยง

impl Debug for tls_crypto_info

Sourceยง

impl Debug for tpacket2_hdr

Sourceยง

impl Debug for tpacket3_hdr

Sourceยง

impl Debug for tpacket_auxdata

Sourceยง

impl Debug for tpacket_bd_ts

Sourceยง

impl Debug for tpacket_hdr

Sourceยง

impl Debug for tpacket_hdr_v1

Sourceยง

impl Debug for tpacket_hdr_variant1

Sourceยง

impl Debug for tpacket_req3

Sourceยง

impl Debug for tpacket_req

Sourceยง

impl Debug for tpacket_rollover_stats

Sourceยง

impl Debug for tpacket_stats

Sourceยง

impl Debug for tpacket_stats_v3

Sourceยง

impl Debug for ucred

Sourceยง

impl Debug for uinput_abs_setup

Sourceยง

impl Debug for uinput_ff_erase

Sourceยง

impl Debug for uinput_ff_upload

Sourceยง

impl Debug for uinput_setup

Sourceยง

impl Debug for uinput_user_dev

Sourceยง

impl Debug for Dl_info

Sourceยง

impl Debug for addrinfo

Sourceยง

impl Debug for arphdr

Sourceยง

impl Debug for arpreq

Sourceยง

impl Debug for arpreq_old

Sourceยง

impl Debug for libc::unix::linux_like::epoll_event

Sourceยง

impl Debug for fd_set

Sourceยง

impl Debug for ifaddrs

Sourceยง

impl Debug for in6_rtmsg

Sourceยง

impl Debug for in_addr

Sourceยง

impl Debug for in_pktinfo

Sourceยง

impl Debug for ip_mreq

Sourceยง

impl Debug for ip_mreq_source

Sourceยง

impl Debug for ip_mreqn

Sourceยง

impl Debug for lconv

Sourceยง

impl Debug for mmsghdr

Sourceยง

impl Debug for sched_param

Sourceยง

impl Debug for sigevent

Sourceยง

impl Debug for sockaddr

Sourceยง

impl Debug for sockaddr_in6

Sourceยง

impl Debug for sockaddr_in

Sourceยง

impl Debug for sockaddr_ll

Sourceยง

impl Debug for sockaddr_storage

Sourceยง

impl Debug for sockaddr_un

Sourceยง

impl Debug for tm

Sourceยง

impl Debug for utsname

Sourceยง

impl Debug for group

Sourceยง

impl Debug for hostent

Sourceยง

impl Debug for libc::unix::iovec

Sourceยง

impl Debug for ipv6_mreq

Sourceยง

impl Debug for libc::unix::itimerval

Sourceยง

impl Debug for linger

Sourceยง

impl Debug for libc::unix::pollfd

Sourceยง

impl Debug for protoent

Sourceยง

impl Debug for libc::unix::rlimit

Sourceยง

impl Debug for libc::unix::rusage

Sourceยง

impl Debug for servent

Sourceยง

impl Debug for sigval

Sourceยง

impl Debug for libc::unix::timespec

Sourceยง

impl Debug for libc::unix::timeval

Sourceยง

impl Debug for tms

Sourceยง

impl Debug for utimbuf

Sourceยง

impl Debug for libc::unix::winsize

Sourceยง

impl Debug for __kernel_fd_set

Sourceยง

impl Debug for __kernel_fsid_t

Sourceยง

impl Debug for __kernel_itimerspec

Sourceยง

impl Debug for __kernel_old_itimerval

Sourceยง

impl Debug for __kernel_old_timespec

Sourceยง

impl Debug for __kernel_old_timeval

Sourceยง

impl Debug for __kernel_sock_timeval

Sourceยง

impl Debug for __kernel_timespec

Sourceยง

impl Debug for __old_kernel_stat

Sourceยง

impl Debug for __sifields__bindgen_ty_1

Sourceยง

impl Debug for __sifields__bindgen_ty_4

Sourceยง

impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1

Sourceยง

impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2

Sourceยง

impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3

Sourceยง

impl Debug for __sifields__bindgen_ty_6

Sourceยง

impl Debug for __sifields__bindgen_ty_7

Sourceยง

impl Debug for __user_cap_data_struct

Sourceยง

impl Debug for __user_cap_header_struct

Sourceยง

impl Debug for linux_raw_sys::general::clone_args

Sourceยง

impl Debug for compat_statfs64

Sourceยง

impl Debug for linux_raw_sys::general::epoll_event

Sourceยง

impl Debug for f_owner_ex

Sourceยง

impl Debug for linux_raw_sys::general::file_clone_range

Sourceยง

impl Debug for file_dedupe_range

Sourceยง

impl Debug for file_dedupe_range_info

Sourceยง

impl Debug for files_stat_struct

Sourceยง

impl Debug for linux_raw_sys::general::flock64

Sourceยง

impl Debug for linux_raw_sys::general::flock

Sourceยง

impl Debug for fscrypt_key

Sourceยง

impl Debug for fscrypt_policy_v1

Sourceยง

impl Debug for fscrypt_policy_v2

Sourceยง

impl Debug for fscrypt_provisioning_key_payload

Sourceยง

impl Debug for fstrim_range

Sourceยง

impl Debug for fsxattr

Sourceยง

impl Debug for futex_waitv

Sourceยง

impl Debug for inodes_stat_t

Sourceยง

impl Debug for linux_raw_sys::general::inotify_event

Sourceยง

impl Debug for linux_raw_sys::general::iovec

Sourceยง

impl Debug for linux_raw_sys::general::itimerspec

Sourceยง

impl Debug for linux_raw_sys::general::itimerval

Sourceยง

impl Debug for kernel_sigaction

Sourceยง

impl Debug for kernel_sigset_t

Sourceยง

impl Debug for ktermios

Sourceยง

impl Debug for linux_dirent64

Sourceยง

impl Debug for mount_attr

Sourceยง

impl Debug for linux_raw_sys::general::open_how

Sourceยง

impl Debug for linux_raw_sys::general::pollfd

Sourceยง

impl Debug for rand_pool_info

Sourceยง

impl Debug for linux_raw_sys::general::rlimit64

Sourceยง

impl Debug for linux_raw_sys::general::rlimit

Sourceยง

impl Debug for robust_list

Sourceยง

impl Debug for robust_list_head

Sourceยง

impl Debug for linux_raw_sys::general::rusage

Sourceยง

impl Debug for linux_raw_sys::general::sigaction

Sourceยง

impl Debug for sigaltstack

Sourceยง

impl Debug for sigevent__bindgen_ty_1__bindgen_ty_1

Sourceยง

impl Debug for linux_raw_sys::general::stat

Sourceยง

impl Debug for linux_raw_sys::general::statfs64

Sourceยง

impl Debug for linux_raw_sys::general::statfs

Sourceยง

impl Debug for linux_raw_sys::general::statx

Sourceยง

impl Debug for linux_raw_sys::general::statx_timestamp

Sourceยง

impl Debug for termio

Sourceยง

impl Debug for linux_raw_sys::general::termios2

Sourceยง

impl Debug for linux_raw_sys::general::termios

Sourceยง

impl Debug for linux_raw_sys::general::timespec

Sourceยง

impl Debug for linux_raw_sys::general::timeval

Sourceยง

impl Debug for linux_raw_sys::general::timezone

Sourceยง

impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_2

Sourceยง

impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_3

Sourceยง

impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_4

Sourceยง

impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_5

Sourceยง

impl Debug for uffdio_api

Sourceยง

impl Debug for uffdio_continue

Sourceยง

impl Debug for uffdio_copy

Sourceยง

impl Debug for uffdio_range

Sourceยง

impl Debug for uffdio_register

Sourceยง

impl Debug for uffdio_writeprotect

Sourceยง

impl Debug for uffdio_zeropage

Sourceยง

impl Debug for user_desc

Sourceยง

impl Debug for vfs_cap_data

Sourceยง

impl Debug for vfs_cap_data__bindgen_ty_1

Sourceยง

impl Debug for vfs_ns_cap_data

Sourceยง

impl Debug for vfs_ns_cap_data__bindgen_ty_1

Sourceยง

impl Debug for linux_raw_sys::general::winsize

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

impl Debug for Pair

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

impl Debug for FinderBuilder

Sourceยง

impl Debug for Mmap

Sourceยง

impl Debug for MmapMut

Sourceยง

impl Debug for MmapOptions

Sourceยง

impl Debug for MmapRaw

Sourceยง

impl Debug for RemapOptions

Sourceยง

impl Debug for nix::fcntl::AtFlags

Sourceยง

impl Debug for nix::fcntl::FallocateFlags

Sourceยง

impl Debug for FdFlag

Sourceยง

impl Debug for OFlag

Sourceยง

impl Debug for OpenHow

Sourceยง

impl Debug for nix::fcntl::RenameFlags

Sourceยง

impl Debug for ResolveFlag

Sourceยง

impl Debug for SealFlag

Sourceยง

impl Debug for MemFdCreateFlag

Sourceยง

impl Debug for SigEvent

Sourceยง

impl Debug for SaFlags

Sourceยง

impl Debug for SigAction

Sourceยง

impl Debug for SigSet

Sourceยง

impl Debug for SignalIterator

Sourceยง

impl Debug for SfdFlags

Sourceยง

impl Debug for SignalFd

Sourceยง

impl Debug for nix::sys::stat::Mode

Sourceยง

impl Debug for SFlag

Sourceยง

impl Debug for FsType

Sourceยง

impl Debug for Statfs

Sourceยง

impl Debug for FsFlags

Sourceยง

impl Debug for Statvfs

Sourceยง

impl Debug for SysInfo

Sourceยง

impl Debug for TimeSpec

Sourceยง

impl Debug for TimeVal

Sourceยง

impl Debug for WaitPidFlag

Sourceยง

impl Debug for AccessFlags

Sourceยง

impl Debug for nix::unistd::Pid

Sourceยง

impl Debug for num_traits::ParseFloatError

Sourceยง

impl Debug for OnceBool

Sourceยง

impl Debug for OnceNonZeroUsize

Sourceยง

impl Debug for Bernoulli

Sourceยง

impl Debug for Open01

Sourceยง

impl Debug for OpenClosed01

Sourceยง

impl Debug for Alphanumeric

Sourceยง

impl Debug for Standard

Sourceยง

impl Debug for UniformChar

Sourceยง

impl Debug for UniformDuration

Sourceยง

impl Debug for ReadError

Sourceยง

impl Debug for StepRng

Sourceยง

impl Debug for StdRng

Sourceยง

impl Debug for ThreadRng

Sourceยง

impl Debug for ChaCha8Core

Sourceยง

impl Debug for ChaCha8Rng

Sourceยง

impl Debug for ChaCha12Core

Sourceยง

impl Debug for ChaCha12Rng

Sourceยง

impl Debug for ChaCha20Core

Sourceยง

impl Debug for ChaCha20Rng

Sourceยง

impl Debug for rand_core::error::Error

Sourceยง

impl Debug for OsRng

Sourceยง

impl Debug for ThreadBuilder

Sourceยง

impl Debug for Configuration

Sourceยง

impl Debug for FnContext

Sourceยง

impl Debug for ThreadPoolBuildError

Sourceยง

impl Debug for ThreadPool

Sourceยง

impl Debug for regex_automata::dfa::onepass::BuildError

Sourceยง

impl Debug for regex_automata::dfa::onepass::Builder

Sourceยง

impl Debug for regex_automata::dfa::onepass::Cache

Sourceยง

impl Debug for regex_automata::dfa::onepass::Config

Sourceยง

impl Debug for regex_automata::dfa::onepass::DFA

Sourceยง

impl Debug for regex_automata::hybrid::dfa::Builder

Sourceยง

impl Debug for regex_automata::hybrid::dfa::Cache

Sourceยง

impl Debug for regex_automata::hybrid::dfa::Config

Sourceยง

impl Debug for regex_automata::hybrid::dfa::DFA

Sourceยง

impl Debug for regex_automata::hybrid::dfa::OverlappingState

Sourceยง

impl Debug for regex_automata::hybrid::error::BuildError

Sourceยง

impl Debug for CacheError

Sourceยง

impl Debug for LazyStateID

Sourceยง

impl Debug for regex_automata::hybrid::regex::Builder

Sourceยง

impl Debug for regex_automata::hybrid::regex::Cache

Sourceยง

impl Debug for regex_automata::hybrid::regex::Regex

Sourceยง

impl Debug for regex_automata::meta::error::BuildError

Sourceยง

impl Debug for regex_automata::meta::regex::Builder

Sourceยง

impl Debug for regex_automata::meta::regex::Cache

Sourceยง

impl Debug for regex_automata::meta::regex::Config

Sourceยง

impl Debug for regex_automata::meta::regex::Regex

Sourceยง

impl Debug for BoundedBacktracker

Sourceยง

impl Debug for regex_automata::nfa::thompson::backtrack::Builder

Sourceยง

impl Debug for regex_automata::nfa::thompson::backtrack::Cache

Sourceยง

impl Debug for regex_automata::nfa::thompson::backtrack::Config

Sourceยง

impl Debug for regex_automata::nfa::thompson::builder::Builder

Sourceยง

impl Debug for Compiler

Sourceยง

impl Debug for regex_automata::nfa::thompson::compiler::Config

Sourceยง

impl Debug for regex_automata::nfa::thompson::error::BuildError

Sourceยง

impl Debug for DenseTransitions

Sourceยง

impl Debug for regex_automata::nfa::thompson::nfa::NFA

Sourceยง

impl Debug for SparseTransitions

Sourceยง

impl Debug for Transition

Sourceยง

impl Debug for regex_automata::nfa::thompson::pikevm::Builder

Sourceยง

impl Debug for regex_automata::nfa::thompson::pikevm::Cache

Sourceยง

impl Debug for regex_automata::nfa::thompson::pikevm::Config

Sourceยง

impl Debug for PikeVM

Sourceยง

impl Debug for ByteClasses

Sourceยง

impl Debug for Unit

Sourceยง

impl Debug for regex_automata::util::captures::Captures

Sourceยง

impl Debug for GroupInfo

Sourceยง

impl Debug for GroupInfoError

Sourceยง

impl Debug for DebugByte

Sourceยง

impl Debug for LookMatcher

Sourceยง

impl Debug for regex_automata::util::look::LookSet

Sourceยง

impl Debug for regex_automata::util::look::LookSetIter

Sourceยง

impl Debug for UnicodeWordBoundaryError

Sourceยง

impl Debug for regex_automata::util::prefilter::Prefilter

Sourceยง

impl Debug for NonMaxUsize

Sourceยง

impl Debug for regex_automata::util::primitives::PatternID

Sourceยง

impl Debug for regex_automata::util::primitives::PatternIDError

Sourceยง

impl Debug for SmallIndex

Sourceยง

impl Debug for SmallIndexError

Sourceยง

impl Debug for regex_automata::util::primitives::StateID

Sourceยง

impl Debug for regex_automata::util::primitives::StateIDError

Sourceยง

impl Debug for HalfMatch

Sourceยง

impl Debug for regex_automata::util::search::Match

Sourceยง

impl Debug for regex_automata::util::search::MatchError

Sourceยง

impl Debug for PatternSet

Sourceยง

impl Debug for PatternSetInsertError

Sourceยง

impl Debug for regex_automata::util::search::Span

Sourceยง

impl Debug for regex_automata::util::start::Config

Sourceยง

impl Debug for regex_automata::util::syntax::Config

Sourceยง

impl Debug for DeserializeError

Sourceยง

impl Debug for SerializeError

Sourceยง

impl Debug for regex_syntax::ast::parse::Parser

Sourceยง

impl Debug for regex_syntax::ast::parse::ParserBuilder

Sourceยง

impl Debug for regex_syntax::ast::print::Printer

Sourceยง

impl Debug for Alternation

Sourceยง

impl Debug for Assertion

Sourceยง

impl Debug for CaptureName

Sourceยง

impl Debug for ClassAscii

Sourceยง

impl Debug for ClassBracketed

Sourceยง

impl Debug for ClassPerl

Sourceยง

impl Debug for ClassSetBinaryOp

Sourceยง

impl Debug for ClassSetRange

Sourceยง

impl Debug for ClassSetUnion

Sourceยง

impl Debug for regex_syntax::ast::ClassUnicode

Sourceยง

impl Debug for Comment

Sourceยง

impl Debug for Concat

Sourceยง

impl Debug for regex_syntax::ast::Error

Sourceยง

impl Debug for Flags

Sourceยง

impl Debug for FlagsItem

Sourceยง

impl Debug for Group

Sourceยง

impl Debug for regex_syntax::ast::Literal

Sourceยง

impl Debug for regex_syntax::ast::Position

Sourceยง

impl Debug for regex_syntax::ast::Repetition

Sourceยง

impl Debug for RepetitionOp

Sourceยง

impl Debug for SetFlags

Sourceยง

impl Debug for regex_syntax::ast::Span

Sourceยง

impl Debug for WithComments

Sourceยง

impl Debug for Extractor

Sourceยง

impl Debug for regex_syntax::hir::literal::Literal

Sourceยง

impl Debug for Seq

Sourceยง

impl Debug for regex_syntax::hir::print::Printer

Sourceยง

impl Debug for Capture

Sourceยง

impl Debug for ClassBytes

Sourceยง

impl Debug for ClassBytesRange

Sourceยง

impl Debug for regex_syntax::hir::ClassUnicode

Sourceยง

impl Debug for ClassUnicodeRange

Sourceยง

impl Debug for regex_syntax::hir::Error

Sourceยง

impl Debug for Hir

Sourceยง

impl Debug for regex_syntax::hir::Literal

Sourceยง

impl Debug for regex_syntax::hir::LookSet

Sourceยง

impl Debug for regex_syntax::hir::LookSetIter

Sourceยง

impl Debug for Properties

Sourceยง

impl Debug for regex_syntax::hir::Repetition

Sourceยง

impl Debug for Translator

Sourceยง

impl Debug for TranslatorBuilder

Sourceยง

impl Debug for regex_syntax::parser::Parser

Sourceยง

impl Debug for regex_syntax::parser::ParserBuilder

Sourceยง

impl Debug for CaseFoldError

Sourceยง

impl Debug for UnicodeWordError

Sourceยง

impl Debug for Utf8Range

Sourceยง

impl Debug for Utf8Sequences

Sourceยง

impl Debug for regex::builders::bytes::RegexBuilder

Sourceยง

impl Debug for regex::builders::bytes::RegexSetBuilder

Sourceยง

impl Debug for regex::builders::string::RegexBuilder

Sourceยง

impl Debug for regex::builders::string::RegexSetBuilder

Sourceยง

impl Debug for regex::regex::bytes::CaptureLocations

Sourceยง

impl Debug for regex::regex::bytes::Regex

Sourceยง

impl Debug for regex::regex::string::CaptureLocations

Sourceยง

impl Debug for regex::regexset::bytes::RegexSet

Sourceยง

impl Debug for regex::regexset::bytes::SetMatches

Sourceยง

impl Debug for regex::regexset::bytes::SetMatchesIntoIter

Sourceยง

impl Debug for regex::regexset::string::RegexSet

Sourceยง

impl Debug for regex::regexset::string::SetMatches

Sourceยง

impl Debug for regex::regexset::string::SetMatchesIntoIter

Sourceยง

impl Debug for Roff

Sourceยง

impl Debug for Dir

Sourceยง

impl Debug for rustix::backend::fs::dir::DirEntry

Sourceยง

impl Debug for CreateFlags

Sourceยง

impl Debug for ReadFlags

Sourceยง

impl Debug for WatchFlags

Sourceยง

impl Debug for Access

Sourceยง

impl Debug for rustix::backend::fs::types::AtFlags

Sourceยง

impl Debug for rustix::backend::fs::types::FallocateFlags

Sourceยง

impl Debug for MemfdFlags

Sourceยง

impl Debug for rustix::backend::fs::types::Mode

Sourceยง

impl Debug for OFlags

Sourceยง

impl Debug for rustix::backend::fs::types::RenameFlags

Sourceยง

impl Debug for ResolveFlags

Sourceยง

impl Debug for SealFlags

Sourceยง

impl Debug for StatVfsMountFlags

Sourceยง

impl Debug for StatxFlags

Sourceยง

impl Debug for rustix::backend::io::errno::Errno

Sourceยง

impl Debug for DupFlags

Sourceยง

impl Debug for FdFlags

Sourceยง

impl Debug for ReadWriteFlags

Sourceยง

impl Debug for MountFlags

Sourceยง

impl Debug for MountPropagationFlags

Sourceยง

impl Debug for UnmountFlags

Sourceยง

impl Debug for Timestamps

Sourceยง

impl Debug for XattrFlags

Sourceยง

impl Debug for Opcode

Sourceยง

impl Debug for rustix::pid::Pid

Sourceยง

impl Debug for ControlModes

Sourceยง

impl Debug for InputModes

Sourceยง

impl Debug for LocalModes

Sourceยง

impl Debug for OutputModes

Sourceยง

impl Debug for SpecialCodeIndex

Sourceยง

impl Debug for SpecialCodes

Sourceยง

impl Debug for Termios

Sourceยง

impl Debug for Gid

Sourceยง

impl Debug for Uid

Sourceยง

impl Debug for semver::parse::Error

Sourceยง

impl Debug for BuildMetadata

Sourceยง

impl Debug for Comparator

Sourceยง

impl Debug for Prerelease

Sourceยง

impl Debug for semver::Version

Sourceยง

impl Debug for VersionReq

Sourceยง

impl Debug for IgnoredAny

Sourceยง

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

Sourceยง

impl Debug for serde_json::error::Error

Sourceยง

impl Debug for serde_json::map::Map<String, Value>

Sourceยง

impl Debug for Number

Sourceยง

impl Debug for CompactFormatter

Sourceยง

impl Debug for Sha256VarCore

Sourceยง

impl Debug for Sha512VarCore

Sourceยง

impl Debug for TextDiffConfig

Sourceยง

impl Debug for snafu::Location

Sourceยง

impl Debug for Whatever

Sourceยง

impl Debug for TempDir

Sourceยง

impl Debug for PathPersistError

Sourceยง

impl Debug for TempPath

Sourceยง

impl Debug for SpooledTempFile

Sourceยง

impl Debug for Height

Sourceยง

impl Debug for Width

Sourceยง

impl Debug for ATerm

Sourceยง

impl Debug for B0

Sourceยง

impl Debug for B1

Sourceยง

impl Debug for Z0

Sourceยง

impl Debug for Equal

Sourceยง

impl Debug for Greater

Sourceยง

impl Debug for Less

Sourceยง

impl Debug for UTerm

Sourceยง

impl Debug for GraphemeCursor

Sourceยง

impl Debug for utf8parse::Parser

Sourceยง

impl Debug for uuid::builder::Builder

Sourceยง

impl Debug for uuid::error::Error

Sourceยง

impl Debug for Braced

Sourceยง

impl Debug for Hyphenated

Sourceยง

impl Debug for Simple

Sourceยง

impl Debug for Urn

Sourceยง

impl Debug for Uuid

Sourceยง

impl Debug for NoContext

Sourceยง

impl Debug for Timestamp

Sourceยง

impl Debug for BorrowedBuf<'_>

1.0.0 ยท Sourceยง

impl Debug for pub_just::io::Empty

1.0.0 ยท Sourceยง

impl Debug for pub_just::io::Error

1.16.0 ยท Sourceยง

impl Debug for pub_just::io::Repeat

1.0.0 ยท Sourceยง

impl Debug for Sink

1.16.0 ยท Sourceยง

impl Debug for Stderr

1.16.0 ยท Sourceยง

impl Debug for StderrLock<'_>

1.16.0 ยท Sourceยง

impl Debug for Stdin

1.16.0 ยท Sourceยง

impl Debug for StdinLock<'_>

1.16.0 ยท Sourceยง

impl Debug for Stdout

1.16.0 ยท Sourceยง

impl Debug for StdoutLock<'_>

1.56.0 ยท Sourceยง

impl Debug for WriterPanicked

Sourceยง

impl Debug for Assume

Sourceยง

impl Debug for ModulePath

1.13.0 ยท Sourceยง

impl Debug for Components<'_>

1.0.0 ยท Sourceยง

impl Debug for pub_just::path::Display<'_>

1.13.0 ยท Sourceยง

impl Debug for pub_just::path::Iter<'_>

1.7.0 ยท Sourceยง

impl Debug for StripPrefixError

Sourceยง

impl Debug for pub_just::position::Position

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.61.0 ยท Sourceยง

impl Debug for ExitCode

Sourceยง

impl Debug for ExitStatusError

1.7.0 ยท Sourceยง

impl Debug for Output

Sourceยง

impl Debug for GlobalJustfileInitSnafu

Sourceยง

impl Debug for GlobalJustfileNotFoundSnafu

Sourceยง

impl Debug for NotFoundSnafu

1.17.0 ยท Sourceยง

impl Debug for EncodeUtf16<'_>

1.0.0 ยท Sourceยง

impl Debug for ParseBoolError

1.79.0 ยท Sourceยง

impl Debug for Utf8Chunks<'_>

1.0.0 ยท Sourceยง

impl Debug for Utf8Error

Sourceยง

impl Debug for StringKind

1.38.0 ยท Sourceยง

impl Debug for Chars<'_>

1.0.0 ยท Sourceยง

impl Debug for pub_just::Command

1.0.0 ยท Sourceยง

impl Debug for ExitStatus

1.0.0 ยท Sourceยง

impl Debug for OsString

1.0.0 ยท Sourceยง

impl Debug for Path

1.0.0 ยท Sourceยง

impl Debug for PathBuf

Sourceยง

impl Debug for pub_just::Regex

1.16.0 ยท Sourceยง

impl Debug for Stdio

Sourceยง

impl Debug for Utf8Path

Sourceยง

impl Debug for __c_anonymous_ptrace_syscall_info_data

Sourceยง

impl Debug for __c_anonymous_ifc_ifcu

Sourceยง

impl Debug for __c_anonymous_ifr_ifru

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 + Sync + Send

Sourceยง

impl<'a> Debug for Utf8Component<'a>

Sourceยง

impl<'a> Debug for Utf8Prefix<'a>

Sourceยง

impl<'a> Debug for chrono::format::Item<'a>

Sourceยง

impl<'a> Debug for FcntlArg<'a>

Sourceยง

impl<'a> Debug for IndexVecIter<'a>

Sourceยง

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

1.0.0 ยท Sourceยง

impl<'a> Debug for Component<'a>

1.0.0 ยท Sourceยง

impl<'a> Debug for pub_just::path::Prefix<'a>

Sourceยง

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

Sourceยง

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

Sourceยง

impl<'a> Debug for core::error::Source<'a>

Sourceยง

impl<'a> Debug for core::ffi::c_str::Bytes<'a>

1.10.0 ยท Sourceยง

impl<'a> Debug for core::panic::location::Location<'a>

1.10.0 ยท Sourceยง

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

1.60.0 ยท Sourceยง

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

Sourceยง

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

1.0.0 ยท Sourceยง

impl<'a> Debug for std::net::tcp::Incoming<'a>

Sourceยง

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

1.10.0 ยท Sourceยง

impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>

1.81.0 ยท Sourceยง

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

Sourceยง

impl<'a> Debug for Utf8Ancestors<'a>

Sourceยง

impl<'a> Debug for Utf8Components<'a>

Sourceยง

impl<'a> Debug for Utf8PrefixComponent<'a>

Sourceยง

impl<'a> Debug for StrftimeItems<'a>

Sourceยง

impl<'a> Debug for IdsRef<'a>

Sourceยง

impl<'a> Debug for Indices<'a>

Sourceยง

impl<'a> Debug for RawValues<'a>

Sourceยง

impl<'a> Debug for SigSetIter<'a>

Sourceยง

impl<'a> Debug for PercentDecode<'a>

Sourceยง

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

Sourceยง

impl<'a> Debug for PatternIter<'a>

Sourceยง

impl<'a> Debug for ByteClassElements<'a>

Sourceยง

impl<'a> Debug for ByteClassIter<'a>

Sourceยง

impl<'a> Debug for ByteClassRepresentatives<'a>

Sourceยง

impl<'a> Debug for CapturesPatternIter<'a>

Sourceยง

impl<'a> Debug for GroupInfoAllNames<'a>

Sourceยง

impl<'a> Debug for GroupInfoPatternNames<'a>

Sourceยง

impl<'a> Debug for DebugHaystack<'a>

Sourceยง

impl<'a> Debug for PatternSetIter<'a>

Sourceยง

impl<'a> Debug for ClassBytesIter<'a>

Sourceยง

impl<'a> Debug for ClassUnicodeIter<'a>

Sourceยง

impl<'a> Debug for regex::regexset::bytes::SetMatchesIter<'a>

Sourceยง

impl<'a> Debug for regex::regexset::string::SetMatchesIter<'a>

Sourceยง

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

Sourceยง

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

Sourceยง

impl<'a> Debug for PrettyFormatter<'a>

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

impl<'a> Debug for BorrowedCursor<'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.0.0 ยท Sourceยง

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

1.57.0 ยท Sourceยง

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

1.57.0 ยท Sourceยง

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

Sourceยง

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

1.0.0 ยท Sourceยง

impl<'a> Debug for pub_just::str::Bytes<'a>

1.0.0 ยท Sourceยง

impl<'a> Debug for CharIndices<'a>

1.34.0 ยท Sourceยง

impl<'a> Debug for pub_just::str::EscapeDebug<'a>

1.34.0 ยท Sourceยง

impl<'a> Debug for pub_just::str::EscapeDefault<'a>

1.34.0 ยท Sourceยง

impl<'a> Debug for pub_just::str::EscapeUnicode<'a>

1.0.0 ยท Sourceยง

impl<'a> Debug for pub_just::str::Lines<'a>

1.0.0 ยท Sourceยง

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

1.34.0 ยท Sourceยง

impl<'a> Debug for SplitAsciiWhitespace<'a>

1.1.0 ยท Sourceยง

impl<'a> Debug for SplitWhitespace<'a>

1.79.0 ยท Sourceยง

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

Sourceยง

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

Sourceยง

impl<'a, 'b> Debug for tempfile::Builder<'a, 'b>

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>

Sourceยง

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

Sourceยง

impl<'a, 'h> Debug for aho_corasick::ahocorasick::FindIter<'a, 'h>

Sourceยง

impl<'a, 'h> Debug for aho_corasick::ahocorasick::FindOverlappingIter<'a, 'h>

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

impl<'a, 'h, A> Debug for aho_corasick::automaton::FindIter<'a, 'h, A>
where A: Debug,

Sourceยง

impl<'a, 'h, A> Debug for aho_corasick::automaton::FindOverlappingIter<'a, 'h, A>
where A: Debug,

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

Sourceยง

impl<'a, A, R> Debug for aho_corasick::automaton::StreamFindIter<'a, A, R>
where A: Debug, R: Debug,

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 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 std::collections::hash::set::ExtractIf<'a, K, F>
where F: FnMut(&K) -> bool,

Sourceยง

impl<'a, K, V, F> Debug for 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 MatchIndices<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.2.0 ยท Sourceยง

impl<'a, P> Debug for pub_just::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 pub_just::str::RSplit<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.0.0 ยท Sourceยง

impl<'a, P> Debug for pub_just::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 pub_just::str::Split<'a, P>
where P: Pattern, <P as Pattern>::Searcher<'a>: Debug,

1.51.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

Sourceยง

impl<'a, R> Debug for aho_corasick::ahocorasick::StreamFindIter<'a, R>
where R: Debug,

Sourceยง

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

Sourceยง

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

Sourceยง

impl<'a, S> Debug for ANSIGenericString<'a, S>
where S: Debug + 'a + ToOwned + ?Sized, <S as ToOwned>::Owned: Debug,

Sourceยง

impl<'a, S> Debug for ANSIGenericStrings<'a, S>
where S: Debug + 'a + ToOwned + PartialEq + ?Sized, <S as ToOwned>::Owned: Debug,

Sourceยง

impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>
where S: Debug + 'a + ?Sized, T: Debug + 'a,

1.17.0 ยท Sourceยง

impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T>
where T: Debug + 'a,

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.31.0 ยท Sourceยง

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

1.31.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.31.0 ยท Sourceยง

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

1.31.0 ยท Sourceยง

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

1.31.0 ยท Sourceยง

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

1.31.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

Sourceยง

impl<'a, T> Debug for std::sync::mpmc::Iter<'a, T>
where T: Debug + 'a,

Sourceยง

impl<'a, T> Debug for std::sync::mpmc::TryIter<'a, T>
where T: Debug + 'a,

1.0.0 ยท Sourceยง

impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>
where T: Debug + 'a,

1.15.0 ยท Sourceยง

impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T>
where T: Debug + 'a,

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

impl<'a, T> Debug for Ptr<'a, T>
where T: 'a + ?Sized,

1.6.0 ยท Sourceยง

impl<'a, T, A> Debug for 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> Debug for PoolGuard<'a, T, F>
where T: Send + Debug, F: Fn() -> T,

Sourceยง

impl<'a, T, F, A> Debug for pub_just::vec::ExtractIf<'a, T, F, A>
where T: Debug, F: Debug + FnMut(&mut T) -> bool, A: Debug + Allocator,

1.77.0 ยท Sourceยง

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

1.77.0 ยท Sourceยง

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

Sourceยง

impl<'a, T, const N: usize> Debug for core::slice::iter::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, const N: usize> Debug for CharArraySearcher<'a, N>

Sourceยง

impl<'c, 'h> Debug for regex::regex::bytes::SubCaptureMatches<'c, 'h>

Sourceยง

impl<'c, 'h> Debug for regex::regex::string::SubCaptureMatches<'c, 'h>

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>

Sourceยง

impl<'fd> Debug for nix::sys::wait::Id<'fd>

Sourceยง

impl<'h> Debug for aho_corasick::util::search::Input<'h>

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

impl<'h> Debug for regex_automata::util::iter::Searcher<'h>

Sourceยง

impl<'h> Debug for regex_automata::util::search::Input<'h>

Sourceยง

impl<'h> Debug for regex::regex::bytes::Captures<'h>

Sourceยง

impl<'h> Debug for regex::regex::bytes::Match<'h>

Sourceยง

impl<'h> Debug for regex::regex::string::Captures<'h>

Sourceยง

impl<'h> Debug for regex::regex::string::Match<'h>

Sourceยง

impl<'h, 'n> Debug for memchr::memmem::FindIter<'h, 'n>

Sourceยง

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

Sourceยง

impl<'h, F> Debug for CapturesIter<'h, F>
where F: Debug,

Sourceยง

impl<'h, F> Debug for HalfMatchesIter<'h, F>
where F: Debug,

Sourceยง

impl<'h, F> Debug for MatchesIter<'h, F>
where F: Debug,

Sourceยง

impl<'h, F> Debug for TryCapturesIter<'h, F>

Sourceยง

impl<'h, F> Debug for TryHalfMatchesIter<'h, F>

Sourceยง

impl<'h, F> Debug for TryMatchesIter<'h, F>

Sourceยง

impl<'key, V: Debug + Keyed<'key>> Debug for Table<'key, V>

Sourceยง

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

Sourceยง

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

Sourceยง

impl<'old, 'new, Old, New, D> Debug for Compact<'old, 'new, Old, New, D>
where Old: Debug + ?Sized, New: Debug + ?Sized, D: Debug,

Sourceยง

impl<'r> Debug for regex::regex::bytes::CaptureNames<'r>

Sourceยง

impl<'r> Debug for regex::regex::string::CaptureNames<'r>

Sourceยง

impl<'r, 'c, 'h> Debug for regex_automata::hybrid::regex::FindMatches<'r, 'c, 'h>

Sourceยง

impl<'r, 'c, 'h> Debug for TryCapturesMatches<'r, 'c, 'h>

Sourceยง

impl<'r, 'c, 'h> Debug for TryFindMatches<'r, 'c, 'h>

Sourceยง

impl<'r, 'c, 'h> Debug for regex_automata::nfa::thompson::pikevm::CapturesMatches<'r, 'c, 'h>

Sourceยง

impl<'r, 'c, 'h> Debug for regex_automata::nfa::thompson::pikevm::FindMatches<'r, 'c, 'h>

Sourceยง

impl<'r, 'h> Debug for regex_automata::meta::regex::CapturesMatches<'r, 'h>

Sourceยง

impl<'r, 'h> Debug for regex_automata::meta::regex::FindMatches<'r, 'h>

Sourceยง

impl<'r, 'h> Debug for regex_automata::meta::regex::Split<'r, 'h>

Sourceยง

impl<'r, 'h> Debug for regex_automata::meta::regex::SplitN<'r, 'h>

Sourceยง

impl<'r, 'h> Debug for regex::regex::bytes::CaptureMatches<'r, 'h>

Sourceยง

impl<'r, 'h> Debug for regex::regex::bytes::Matches<'r, 'h>

Sourceยง

impl<'r, 'h> Debug for regex::regex::bytes::Split<'r, 'h>

Sourceยง

impl<'r, 'h> Debug for regex::regex::bytes::SplitN<'r, 'h>

Sourceยง

impl<'r, 'h> Debug for regex::regex::string::CaptureMatches<'r, 'h>

Sourceยง

impl<'r, 'h> Debug for regex::regex::string::Matches<'r, 'h>

Sourceยง

impl<'r, 'h> Debug for regex::regex::string::Split<'r, 'h>

Sourceยง

impl<'r, 'h> Debug for regex::regex::string::SplitN<'r, 'h>

Sourceยง

impl<'run> Debug for ArgumentGroup<'run>

Sourceยง

impl<'s> Debug for StripBytesIter<'s>

Sourceยง

impl<'s> Debug for StripStrIter<'s>

Sourceยง

impl<'s> Debug for StrippedBytes<'s>

Sourceยง

impl<'s> Debug for StrippedStr<'s>

Sourceยง

impl<'s> Debug for WinconBytesIter<'s>

Sourceยง

impl<'s> Debug for ParsedArg<'s>

Sourceยง

impl<'s> Debug for ShortFlags<'s>

Sourceยง

impl<'s> Debug for regex::regex::bytes::NoExpand<'s>

Sourceยง

impl<'s> Debug for regex::regex::string::NoExpand<'s>

Sourceยง

impl<'s, 'h> Debug for aho_corasick::packed::api::FindIter<'s, 'h>

Sourceยง

impl<'scope> Debug for rayon_core::scope::Scope<'scope>

Sourceยง

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

Sourceยง

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

1.63.0 ยท Sourceยง

impl<'scope, T> Debug for std::thread::scoped::ScopedJoinHandle<'scope, T>

Sourceยง

impl<'src> Debug for Attribute<'src>

Sourceยง

impl<'src> Debug for CompileErrorKind<'src>

Sourceยง

impl<'src> Debug for pub_just::error::Error<'src>

Sourceยง

impl<'src> Debug for Expression<'src>

Sourceยง

impl<'src> Debug for Fragment<'src>

Sourceยง

impl<'src> Debug for pub_just::item::Item<'src>

Sourceยง

impl<'src> Debug for Setting<'src>

Sourceยง

impl<'src> Debug for Thunk<'src>

Sourceยง

impl<'src> Debug for pub_just::ast::Ast<'src>

Sourceยง

impl<'src> Debug for Compilation<'src>

Sourceยง

impl<'src> Debug for CompileError<'src>

Sourceยง

impl<'src> Debug for Condition<'src>

Sourceยง

impl<'src> Debug for Dependency<'src>

Sourceยง

impl<'src> Debug for Interpreter<'src>

Sourceยง

impl<'src> Debug for Justfile<'src>

Sourceยง

impl<'src> Debug for Line<'src>

Sourceยง

impl<'src> Debug for Name<'src>

Sourceยง

impl<'src> Debug for Namepath<'src>

Sourceยง

impl<'src> Debug for Parameter<'src>

Sourceยง

impl<'src> Debug for Set<'src>

Sourceยง

impl<'src> Debug for Settings<'src>

Sourceยง

impl<'src> Debug for pub_just::source::Source<'src>

Sourceยง

impl<'src> Debug for StringLiteral<'src>

Sourceยง

impl<'src> Debug for Suggestion<'src>

Sourceยง

impl<'src> Debug for Token<'src>

Sourceยง

impl<'src> Debug for UnresolvedDependency<'src>

Sourceยง

impl<'src, D: Debug> Debug for Recipe<'src, D>

Sourceยง

impl<'src, T: Debug> Debug for Alias<'src, T>

Sourceยง

impl<'src, V: Debug> Debug for Binding<'src, V>

Sourceยง

impl<'src: 'run, 'run> Debug for pub_just::scope::Scope<'src, 'run>

1.0.0 ยท Sourceยง

impl<A> Debug for 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 pub_just::iter::Repeat<A>
where A: Debug,

1.82.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

impl<A, B> Debug for pub_just::iter::Chain<A, B>
where A: Debug, B: Debug,

1.0.0 ยท Sourceยง

impl<A, B> Debug for Zip<A, B>
where A: Debug, B: Debug,

1.0.0 ยท Sourceยง

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

Sourceยง

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

1.0.0 ยท Sourceยง

impl<B> Debug for pub_just::io::Lines<B>
where B: Debug,

1.0.0 ยท Sourceยง

impl<B> Debug for pub_just::io::Split<B>
where B: Debug,

1.55.0 ยท Sourceยง

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

Sourceยง

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

Sourceยง

impl<BlockSize, Kind> Debug for BlockBuffer<BlockSize, Kind>
where BlockSize: Debug + ArrayLength<u8> + IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>, Kind: Debug + BufferKind, <BlockSize as IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>>::Output: NonZero,

Sourceยง

impl<C> Debug for anstyle_parse::Parser<C>
where C: Debug,

Sourceยง

impl<C> Debug for ThreadLocalContext<C>

Sourceยง

impl<D, F, T, S> Debug for DistMap<D, F, T, S>
where D: Debug, F: Debug, T: Debug, S: Debug,

Sourceยง

impl<D, R, T> Debug for DistIter<D, R, T>
where D: Debug, R: Debug, T: Debug,

Sourceยง

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

Sourceยง

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

Sourceยง

impl<E> Debug for EnumValueParser<E>
where E: Debug + ValueEnum + Clone + Send + Sync + 'static,

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>

Sourceยง

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

Sourceยง

impl<E> Debug for snafu::report::Report<E>
where E: Error,

Sourceยง

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

1.64.0 ยท Sourceยง

impl<F> Debug for PollFn<F>

Sourceยง

impl<F> Debug for clap_builder::error::Error<F>
where F: ErrorFormatter,

Sourceยง

impl<F> Debug for NamedTempFile<F>

Sourceยง

impl<F> Debug for PersistError<F>

1.34.0 ยท Sourceยง

impl<F> Debug for pub_just::iter::FromFn<F>

1.68.0 ยท Sourceยง

impl<F> Debug for OnceWith<F>

1.68.0 ยท Sourceยง

impl<F> Debug for RepeatWith<F>

Sourceยง

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

1.4.0 ยท Sourceยง

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

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 DelayedFormat<I>
where I: Debug,

1.1.0 ยท Sourceยง

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

1.36.0 ยท Sourceยง

impl<I> Debug for Copied<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 Enumerate<I>
where I: Debug,

1.0.0 ยท Sourceยง

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

Sourceยง

impl<I> Debug for Intersperse<I>
where I: Debug + Iterator, <I as Iterator>::Item: Clone + 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 Skip<I>
where I: Debug,

1.28.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

impl<I> Debug for pub_just::iter::Take<I>
where I: Debug,

Sourceยง

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

1.9.0 ยท Sourceยง

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

1.9.0 ยท Sourceยง

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

1.9.0 ยท Sourceยง

impl<I, F> Debug for pub_just::iter::Map<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,

1.9.0 ยท Sourceยง

impl<I, P> Debug for Filter<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,

1.9.0 ยท Sourceยง

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

1.29.0 ยท Sourceยง

impl<I, U> Debug for Flatten<I>
where I: Debug + Iterator, <I as Iterator>::Item: IntoIterator<IntoIter = U, Item = <U as Iterator>::Item>, U: Debug + Iterator,

1.9.0 ยท Sourceยง

impl<I, U, F> Debug for FlatMap<I, U, F>
where I: Debug, U: IntoIterator, <U as IntoIterator>::IntoIter: Debug,

Sourceยง

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

1.0.0 ยท Sourceยง

impl<Idx> Debug for core::ops::range::RangeFrom<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,

Sourceยง

impl<Idx> Debug for core::range::Range<Idx>
where Idx: Debug,

Sourceยง

impl<Idx> Debug for core::range::RangeFrom<Idx>
where Idx: Debug,

Sourceยง

impl<Idx> Debug for core::range::RangeInclusive<Idx>
where Idx: Debug,

1.0.0 ยท Sourceยง

impl<Idx> Debug for pub_just::Range<Idx>
where Idx: Debug,

1.26.0 ยท Sourceยง

impl<Idx> Debug for pub_just::RangeInclusive<Idx>
where Idx: Debug,

Sourceยง

impl<K> Debug for alloc::collections::btree::set::Cursor<'_, K>
where K: Debug,

1.16.0 ยท Sourceยง

impl<K> Debug for std::collections::hash::set::Drain<'_, K>
where K: Debug,

1.16.0 ยท Sourceยง

impl<K> Debug for std::collections::hash::set::IntoIter<K>
where K: Debug,

1.16.0 ยท Sourceยง

impl<K> Debug for std::collections::hash::set::Iter<'_, K>
where K: Debug,

Sourceยง

impl<K, A> Debug for alloc::collections::btree::set::CursorMut<'_, K, A>
where K: Debug,

Sourceยง

impl<K, A> Debug for alloc::collections::btree::set::CursorMutKey<'_, K, A>
where K: Debug,

1.12.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
where K: Debug, V: Debug,

Sourceยง

impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
where K: Debug, V: Debug,

1.17.0 ยท Sourceยง

impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
where K: Debug, V: Debug,

1.17.0 ยท Sourceยง

impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
where K: Debug, V: Debug,

1.17.0 ยท Sourceยง

impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>
where K: Debug,

1.17.0 ยท Sourceยง

impl<K, V> Debug for 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 alloc::collections::btree::map::Values<'_, K, V>
where V: Debug,

1.10.0 ยท Sourceยง

impl<K, V> Debug for alloc::collections::btree::map::ValuesMut<'_, K, V>
where V: Debug,

1.16.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::Drain<'_, K, V>
where K: Debug, V: Debug,

1.16.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
where K: Debug, V: Debug,

1.54.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>
where K: Debug,

1.54.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>
where V: Debug,

1.16.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
where K: Debug, V: Debug,

1.16.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
where K: Debug, V: Debug,

1.16.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>
where K: Debug,

1.12.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
where K: Debug, V: Debug,

Sourceยง

impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
where K: Debug, V: Debug,

1.12.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>
where K: Debug,

1.16.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>
where V: Debug,

1.16.0 ยท Sourceยง

impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>
where V: Debug,

1.12.0 ยท Sourceยง

impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
where K: Debug + Ord, V: Debug, A: Allocator + Clone,

1.12.0 ยท Sourceยง

impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
where K: Debug + Ord, V: Debug, A: Allocator + Clone,

Sourceยง

impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
where K: Debug + Ord, V: Debug, A: Allocator + Clone,

1.12.0 ยท Sourceยง

impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
where K: Debug + Ord, A: Allocator + Clone,

Sourceยง

impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
where K: Debug, V: Debug,

Sourceยง

impl<K, V, A> Debug for alloc::collections::btree::map::CursorMutKey<'_, K, V, A>
where K: Debug, V: Debug,

1.17.0 ยท Sourceยง

impl<K, V, A> Debug for 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 alloc::collections::btree::map::IntoKeys<K, V, A>
where K: Debug, A: Allocator + Clone,

1.54.0 ยท Sourceยง

impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>
where V: Debug, A: Allocator + Clone,

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 alloc::collections::btree::map::ExtractIf<'_, K, V, F>
where K: Debug, V: Debug, F: FnMut(&K, &mut V) -> bool,

Sourceยง

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

Sourceยง

impl<K, V, S> Debug for RawEntryBuilder<'_, K, V, S>

Sourceยง

impl<K, V, S> Debug for RawEntryBuilderMut<'_, K, V, S>

Sourceยง

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

Sourceยง

impl<K, V, S> Debug for RawVacantEntryMut<'_, K, V, S>

1.0.0 ยท Sourceยง

impl<K, V, S> Debug for HashMap<K, V, S>
where K: Debug, V: Debug,

Sourceยง

impl<O> Debug for F32<O>
where O: ByteOrder,

Sourceยง

impl<O> Debug for F64<O>
where O: ByteOrder,

Sourceยง

impl<O> Debug for I16<O>
where O: ByteOrder,

Sourceยง

impl<O> Debug for I32<O>
where O: ByteOrder,

Sourceยง

impl<O> Debug for I64<O>
where O: ByteOrder,

Sourceยง

impl<O> Debug for I128<O>
where O: ByteOrder,

Sourceยง

impl<O> Debug for U16<O>
where O: ByteOrder,

Sourceยง

impl<O> Debug for U32<O>
where O: ByteOrder,

Sourceยง

impl<O> Debug for U64<O>
where O: ByteOrder,

Sourceยง

impl<O> Debug for U128<O>
where O: ByteOrder,

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

impl<P, F> Debug for MapValueParser<P, F>
where P: Debug, F: Debug,

Sourceยง

impl<P, F> Debug for TryMapValueParser<P, F>
where P: Debug, F: Debug,

1.33.0 ยท Sourceยง

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

Sourceยง

impl<R> Debug for ReadRng<R>
where R: Debug,

Sourceยง

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

Sourceยง

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

1.0.0 ยท Sourceยง

impl<R> Debug for BufReader<R>
where R: Debug + ?Sized,

1.0.0 ยท Sourceยง

impl<R> Debug for pub_just::io::Bytes<R>
where R: Debug,

Sourceยง

impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>
where R: Debug + BlockRngCore + SeedableRng, Rsdr: Debug + RngCore,

Sourceยง

impl<S> Debug for AutoStream<S>
where S: Debug + RawStream,

Sourceยง

impl<S> Debug for StripStream<S>
where S: Debug + Write,

Sourceยง

impl<S> Debug for ThreadPoolBuilder<S>

Sourceยง

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

1.17.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.36.0 ยท Sourceยง

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

Sourceยง

impl<T> Debug for SendTimeoutError<T>

1.0.0 ยท Sourceยง

impl<T> Debug for TrySendError<T>

1.0.0 ยท Sourceยง

impl<T> Debug for TryLockError<T>

Sourceยง

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

Sourceยง

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

Sourceยง

impl<T> Debug for Steal<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.

1.19.0 ยท Sourceยง

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

Sourceยง

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

1.17.0 ยท Sourceยง

impl<T> Debug for alloc::collections::binary_heap::Iter<'_, T>
where T: Debug,

1.17.0 ยท Sourceยง

impl<T> Debug for alloc::collections::btree::set::Iter<'_, T>
where T: Debug,

1.17.0 ยท Sourceยง

impl<T> Debug for alloc::collections::btree::set::SymmetricDifference<'_, T>
where T: Debug,

1.17.0 ยท Sourceยง

impl<T> Debug for alloc::collections::btree::set::Union<'_, T>
where T: Debug,

1.17.0 ยท Sourceยง

impl<T> Debug for alloc::collections::linked_list::Iter<'_, T>
where T: Debug,

1.17.0 ยท Sourceยง

impl<T> Debug for alloc::collections::linked_list::IterMut<'_, T>
where T: Debug,

1.17.0 ยท Sourceยง

impl<T> Debug for alloc::collections::vec_deque::iter::Iter<'_, T>
where T: Debug,

1.17.0 ยท Sourceยง

impl<T> Debug for alloc::collections::vec_deque::iter_mut::IterMut<'_, T>
where T: Debug,

1.70.0 ยท Sourceยง

impl<T> Debug for core::cell::once::OnceCell<T>
where T: Debug,

1.0.0 ยท Sourceยง

impl<T> Debug for Cell<T>
where T: Copy + Debug,

1.0.0 ยท Sourceยง

impl<T> Debug for core::cell::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,

Sourceยง

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

1.9.0 ยท Sourceยง

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

Sourceยง

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

1.48.0 ยท Sourceยง

impl<T> Debug for Pending<T>

1.48.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.28.0 ยท Sourceยง

impl<T> Debug for NonZero<T>

1.74.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

Sourceยง

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

1.16.0 ยท Sourceยง

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

1.25.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

impl<T> Debug for core::result::IntoIter<T>
where T: Debug,

1.9.0 ยท Sourceยง

impl<T> Debug for core::slice::iter::Iter<'_, T>
where T: Debug,

1.9.0 ยท Sourceยง

impl<T> Debug for core::slice::iter::IterMut<'_, T>
where T: Debug,

1.3.0 ยท Sourceยง

impl<T> Debug for AtomicPtr<T>

Sourceยง

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

Sourceยง

impl<T> Debug for std::sync::mpmc::IntoIter<T>
where T: Debug,

Sourceยง

impl<T> Debug for std::sync::mpmc::Receiver<T>

Sourceยง

impl<T> Debug for std::sync::mpmc::Sender<T>

1.1.0 ยท Sourceยง

impl<T> Debug for std::sync::mpsc::IntoIter<T>
where T: Debug,

1.8.0 ยท Sourceยง

impl<T> Debug for std::sync::mpsc::Receiver<T>

1.0.0 ยท Sourceยง

impl<T> Debug for SendError<T>

1.8.0 ยท Sourceยง

impl<T> Debug for std::sync::mpsc::Sender<T>

1.8.0 ยท Sourceยง

impl<T> Debug for SyncSender<T>

Sourceยง

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

1.0.0 ยท Sourceยง

impl<T> Debug for PoisonError<T>

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

1.0.0 ยท Sourceยง

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

1.16.0 ยท Sourceยง

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

1.16.0 ยท Sourceยง

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

1.16.0 ยท Sourceยง

impl<T> Debug for LocalKey<T>
where T: 'static,

1.16.0 ยท Sourceยง

impl<T> Debug for JoinHandle<T>

Sourceยง

impl<T> Debug for CapacityError<T>

Sourceยง

impl<T> Debug for RangedI64ValueParser<T>
where T: Debug + TryFrom<i64> + Clone + Send + Sync,

Sourceยง

impl<T> Debug for RangedU64ValueParser<T>
where T: Debug + TryFrom<u64>,

Sourceยง

impl<T> Debug for clap_builder::parser::matches::arg_matches::Values<T>
where T: Debug,

Sourceยง

impl<T> Debug for Injector<T>

Sourceยง

impl<T> Debug for Stealer<T>

Sourceยง

impl<T> Debug for Worker<T>

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

impl<T> Debug for AtomicCell<T>
where T: Copy + Debug,

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

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

Sourceยง

impl<T> Debug for crossbeam_utils::thread::ScopedJoinHandle<'_, T>

Sourceยง

impl<T> Debug for RtVariableCoreWrapper<T>

Sourceยง

impl<T> Debug for CoreWrapper<T>

Sourceยง

impl<T> Debug for XofReaderCoreWrapper<T>

Sourceยง

impl<T> Debug for __IncompleteArrayField<T>

Sourceยง

impl<T> Debug for Flock<T>
where T: Debug + Flockable,

Sourceยง

impl<T> Debug for OnceBox<T>

Sourceยง

impl<T> Debug for once_cell::sync::OnceCell<T>
where T: Debug,

Sourceยง

impl<T> Debug for once_cell::unsync::OnceCell<T>
where T: Debug,

Sourceยง

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

Sourceยง

impl<T> Debug for Unalign<T>
where T: Unaligned + Debug,

1.0.0 ยท Sourceยง

impl<T> Debug for pub_just::io::Cursor<T>
where T: Debug,

1.0.0 ยท Sourceยง

impl<T> Debug for pub_just::io::Take<T>
where T: Debug,

1.9.0 ยท Sourceยง

impl<T> Debug for pub_just::iter::Empty<T>

1.2.0 ยท Sourceยง

impl<T> Debug for pub_just::iter::Once<T>
where T: Debug,

1.0.0 ยท Sourceยง

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

1.21.0 ยท Sourceยง

impl<T> Debug for Discriminant<T>

1.20.0 ยท Sourceยง

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

1.0.0 ยท Sourceยง

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

1.16.0 ยท Sourceยง

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

1.70.0 ยท Sourceยง

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

1.41.0 ยท Sourceยง

impl<T> Debug for MaybeUninit<T>

1.0.0 ยท Sourceยง

impl<T, A> Debug for Box<T, A>
where T: Debug + ?Sized, A: Allocator,

1.4.0 ยท Sourceยง

impl<T, A> Debug for BinaryHeap<T, A>
where T: Debug, A: Allocator,

1.17.0 ยท Sourceยง

impl<T, A> Debug for 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 alloc::collections::btree::set::Difference<'_, T, A>
where T: Debug, A: Allocator + Clone,

1.17.0 ยท Sourceยง

impl<T, A> Debug for alloc::collections::btree::set::Intersection<'_, T, A>
where T: Debug, A: Allocator + Clone,

1.0.0 ยท Sourceยง

impl<T, A> Debug for alloc::collections::btree::set::IntoIter<T, A>
where T: Debug, A: Debug + Allocator + Clone,

Sourceยง

impl<T, A> Debug for alloc::collections::linked_list::Cursor<'_, T, A>
where T: Debug, A: Allocator,

Sourceยง

impl<T, A> Debug for alloc::collections::linked_list::CursorMut<'_, T, A>
where T: Debug, A: Allocator,

1.17.0 ยท Sourceยง

impl<T, A> Debug for alloc::collections::linked_list::IntoIter<T, A>
where T: Debug, A: Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Debug for LinkedList<T, A>
where T: Debug, A: Allocator,

1.17.0 ยท Sourceยง

impl<T, A> Debug for alloc::collections::vec_deque::drain::Drain<'_, T, A>
where T: Debug, A: Allocator,

1.17.0 ยท Sourceยง

impl<T, A> Debug for alloc::collections::vec_deque::into_iter::IntoIter<T, A>
where T: Debug, A: Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Debug for VecDeque<T, A>
where T: Debug, A: Allocator,

Sourceยง

impl<T, A> Debug for UniqueRc<T, A>
where T: Debug + ?Sized, A: Debug + Allocator,

1.4.0 ยท Sourceยง

impl<T, A> Debug for alloc::rc::Weak<T, A>
where A: Allocator, T: ?Sized,

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 alloc::sync::Weak<T, A>
where A: Allocator, T: ?Sized,

1.0.0 ยท Sourceยง

impl<T, A> Debug for BTreeSet<T, A>
where T: Debug, A: Allocator + Clone,

1.0.0 ยท Sourceยง

impl<T, A> Debug for Rc<T, A>
where T: Debug + ?Sized, A: Allocator,

1.17.0 ยท Sourceยง

impl<T, A> Debug for pub_just::vec::Drain<'_, T, A>
where T: Debug, A: Allocator,

1.13.0 ยท Sourceยง

impl<T, A> Debug for pub_just::vec::IntoIter<T, A>
where T: Debug, A: Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Debug for Vec<T, A>
where T: Debug, A: Allocator,

Sourceยง

impl<T, B> Debug for zerocopy::Ref<B, [T]>
where B: ByteSlice, T: FromBytes + Debug,

Sourceยง

impl<T, B> Debug for zerocopy::Ref<B, T>
where B: ByteSlice, T: FromBytes + Debug,

1.0.0 ยท Sourceยง

impl<T, E> Debug for Result<T, E>
where T: Debug, E: Debug,

Sourceยง

impl<T, F> Debug for alloc::collections::linked_list::ExtractIf<'_, T, F>
where T: Debug, F: FnMut(&mut T) -> bool,

1.80.0 ยท Sourceยง

impl<T, F> Debug for LazyCell<T, F>
where T: Debug,

1.80.0 ยท Sourceยง

impl<T, F> Debug for LazyLock<T, F>
where T: Debug,

Sourceยง

impl<T, F> Debug for once_cell::unsync::Lazy<T, F>
where T: Debug,

Sourceยง

impl<T, F> Debug for regex_automata::util::lazy::Lazy<T, F>
where T: Debug, F: Fn() -> T,

Sourceยง

impl<T, F> Debug for Pool<T, F>
where T: Debug,

1.34.0 ยท Sourceยง

impl<T, F> Debug for Successors<T, F>
where T: Debug,

Sourceยง

impl<T, F> Debug for pub_just::Lazy<T, F>
where T: Debug,

Sourceยง

impl<T, F, A> Debug for alloc::collections::btree::set::ExtractIf<'_, T, F, A>
where A: Allocator + Clone, T: Debug, F: FnMut(&T) -> bool,

Sourceยง

impl<T, N> Debug for GenericArrayIter<T, N>
where T: Debug, N: ArrayLength<T>,

Sourceยง

impl<T, N> Debug for GenericArray<T, N>
where T: Debug, N: ArrayLength<T>,

1.27.0 ยท Sourceยง

impl<T, P> Debug for core::slice::iter::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 core::slice::iter::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 core::slice::iter::Split<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.51.0 ยท Sourceยง

impl<T, P> Debug for core::slice::iter::SplitInclusive<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.51.0 ยท Sourceยง

impl<T, P> Debug for SplitInclusiveMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 ยท Sourceยง

impl<T, P> Debug for SplitMut<'_, T, P>
where T: Debug, P: FnMut(&T) -> bool,

1.9.0 ยท Sourceยง

impl<T, P> Debug for core::slice::iter::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,

Sourceยง

impl<T, P> Debug for CompareExchangeError<'_, T, P>
where P: Pointer<T> + Debug,

Sourceยง

impl<T, S> Debug for std::collections::hash::set::Entry<'_, T, S>
where T: Debug,

1.16.0 ยท Sourceยง

impl<T, S> Debug for std::collections::hash::set::Difference<'_, T, S>
where T: Debug + Eq + Hash, S: BuildHasher,

1.16.0 ยท Sourceยง

impl<T, S> Debug for std::collections::hash::set::Intersection<'_, T, S>
where T: Debug + Eq + Hash, S: BuildHasher,

Sourceยง

impl<T, S> Debug for std::collections::hash::set::OccupiedEntry<'_, T, S>
where T: Debug,

1.16.0 ยท Sourceยง

impl<T, S> Debug for std::collections::hash::set::SymmetricDifference<'_, T, S>
where T: Debug + Eq + Hash, S: BuildHasher,

1.16.0 ยท Sourceยง

impl<T, S> Debug for std::collections::hash::set::Union<'_, T, S>
where T: Debug + Eq + Hash, S: BuildHasher,

Sourceยง

impl<T, S> Debug for std::collections::hash::set::VacantEntry<'_, T, S>
where T: Debug,

1.0.0 ยท Sourceยง

impl<T, S> Debug for HashSet<T, S>
where T: Debug,

1.0.0 ยท Sourceยง

impl<T, U> Debug for pub_just::io::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,

1.40.0 ยท Sourceยง

impl<T, const N: usize> Debug for core::array::iter::IntoIter<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>

Sourceยง

impl<Tz> Debug for Date<Tz>
where Tz: TimeZone,

Sourceยง

impl<Tz> Debug for DateTime<Tz>
where Tz: TimeZone,

Sourceยง

impl<U> Debug for NInt<U>
where U: Debug + Unsigned + NonZero,

Sourceยง

impl<U> Debug for PInt<U>
where U: Debug + Unsigned + NonZero,

Sourceยง

impl<U, B> Debug for UInt<U, B>
where U: Debug, B: Debug,

Sourceยง

impl<V, A> Debug for TArr<V, A>
where V: Debug, A: Debug,

Sourceยง

impl<W> Debug for rand::distributions::weighted::alias_method::WeightedIndex<W>
where W: Debug + Weight,

1.0.0 ยท Sourceยง

impl<W> Debug for BufWriter<W>
where W: Write + Debug + ?Sized,

1.0.0 ยท Sourceยง

impl<W> Debug for IntoInnerError<W>
where W: Debug,

1.0.0 ยท Sourceยง

impl<W> Debug for LineWriter<W>
where W: Write + Debug + ?Sized,

Sourceยง

impl<X> Debug for Uniform<X>

Sourceยง

impl<X> Debug for UniformFloat<X>
where X: Debug,

Sourceยง

impl<X> Debug for UniformInt<X>
where X: Debug,

Sourceยง

impl<X> Debug for rand::distributions::weighted_index::WeightedIndex<X>

Sourceยง

impl<Y, R> Debug for CoroutineState<Y, R>
where Y: Debug, R: Debug,

Sourceยง

impl<__T0: Debug> Debug for InternalContext<__T0>

Sourceยง

impl<__T0: Debug> Debug for ModulePathContext<__T0>

Sourceยง

impl<__T0: Debug> Debug for JustfileHadNoParentSnafu<__T0>

Sourceยง

impl<__T0: Debug> Debug for MultipleCandidatesSnafu<__T0>

Sourceยง

impl<__T0: Debug, __T1: Debug> Debug for SubcommandArgumentsContext<__T0, __T1>

Sourceยง

impl<__T0: Debug, __T1: Debug> Debug for SubcommandOverridesContext<__T0, __T1>

Sourceยง

impl<__T0: Debug, __T1: Debug> Debug for IoSnafu<__T0, __T1>

Sourceยง

impl<__T0: Debug, __T1: Debug, __T2: Debug> Debug for SubcommandOverridesAndArgumentsContext<__T0, __T1, __T2>

Sourceยง

impl<const CAP: usize> Debug for ArrayString<CAP>

Sourceยง

impl<const N: usize> Debug for GetManyMutError<N>