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
derive
d for structs, it will use the name of the struct
, then {
, then a
comma-separated list of each field’s name and Debug
value, then }
. For
enum
s, it will use the name of the variant and, if applicable, (
, then the
Debug
values of the fields, then )
.
§Stability
Derived Debug
formats are not stable, and so may change with future Rust
versions. Additionally, Debug
implementations of types provided by the
standard library (std
, core
, alloc
, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
There are a number of helper methods on the Formatter
struct to help you with manual
implementations, such as debug_struct
.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter
trait (debug_struct
, debug_tuple
,
debug_list
, debug_set
, debug_map
) can do something totally custom by
manually writing an arbitrary representation to the Formatter
.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}
Debug
implementations using either derive
or the debug builder API
on Formatter
support pretty-printing using the alternate flag: {:#?}
.
Pretty-printing with #?
:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);
Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err
if, and only if, the provided Formatter
returns Err
.
String formatting is considered an infallible operation; this function only
returns a Result
because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");
Implementors§
impl Debug for AhoCorasickKind
impl Debug for aho_corasick::packed::api::MatchKind
impl Debug for aho_corasick::util::error::MatchErrorKind
impl Debug for Candidate
impl Debug for aho_corasick::util::search::Anchored
impl Debug for aho_corasick::util::search::MatchKind
impl Debug for StartKind
impl Debug for ParseAlphabetError
impl Debug for base64::decode::DecodeError
impl Debug for DecodeSliceError
impl Debug for EncodeSliceError
impl Debug for DecodePaddingMode
impl Debug for CheckedCastError
impl Debug for PodCastError
impl Debug for byteorder::BigEndian
impl Debug for byteorder::LittleEndian
impl Debug for Colons
impl Debug for Fixed
impl Debug for chrono::format::Numeric
impl Debug for OffsetPrecision
impl Debug for Pad
impl Debug for ParseErrorKind
impl Debug for SecondsFormat
impl Debug for Month
impl Debug for RoundingError
impl Debug for Weekday
impl Debug for colored::color::Color
impl Debug for Styles
impl Debug for comfy_table::style::attribute::Attribute
impl Debug for CellAlignment
impl Debug for comfy_table::style::color::Color
impl Debug for ColumnConstraint
impl Debug for Width
impl Debug for ContentArrangement
impl Debug for TableComponent
impl Debug for console::kb::Key
impl Debug for TermFamily
impl Debug for TermTarget
impl Debug for console::utils::Alignment
impl Debug for console::utils::Attribute
impl Debug for console::utils::Color
impl Debug for crossbeam_channel::err::RecvTimeoutError
impl Debug for crossbeam_channel::err::TryRecvError
impl Debug for SetCursorStyle
impl Debug for crossterm::style::types::attribute::Attribute
impl Debug for crossterm::style::types::color::Color
impl Debug for Colored
impl Debug for ClearType
impl Debug for DeserializeErrorKind
impl Debug for csv::QuoteStyle
impl Debug for csv::Terminator
impl Debug for Trim
impl Debug for csv::error::ErrorKind
impl Debug for csv_core::QuoteStyle
impl Debug for csv_core::Terminator
impl Debug for ReadFieldNoCopyResult
impl Debug for ReadFieldResult
impl Debug for ReadRecordNoCopyResult
impl Debug for ReadRecordResult
impl Debug for WriteResult
impl Debug for CacheSize
impl Debug for TransactionDepthChange
impl Debug for TransactionManagerStatus
impl Debug for ConnectionError
impl Debug for DatabaseErrorKind
impl Debug for diesel::result::Error
impl Debug for IsNull
impl Debug for SqliteType
impl Debug for TimestampPrecision
impl Debug for env_logger::fmt::style::Color
impl Debug for Target
impl Debug for WriteStyle
impl Debug for FlushCompress
impl Debug for FlushDecompress
impl Debug for Status
impl Debug for hashbrown::TryReserveError
impl Debug for humantime::date::Error
impl Debug for humantime::duration::Error
impl Debug for SmbusReadWrite
impl Debug for SmbusTransaction
impl Debug for LinuxI2CError
impl Debug for GetTimezoneError
impl Debug for TrieResult
impl Debug for InvalidStringList
impl Debug for TrieType
impl Debug for icu_collections::codepointtrie::error::Error
impl Debug for ExtensionType
impl Debug for icu_locale_core::parser::errors::ParseError
impl Debug for PreferencesParseError
impl Debug for Decomposed
impl Debug for BidiPairedBracketType
impl Debug for GeneralCategory
impl Debug for BufferFormat
impl Debug for DataErrorKind
impl Debug for ProcessingError
impl Debug for ProcessingSuccess
impl Debug for indexmap::GetDisjointMutError
impl Debug for MultiProgressAlignment
impl Debug for ProgressFinish
impl Debug for DIR
impl Debug for FILE
impl Debug for libc::unix::linux_like::timezone
impl Debug for tpacket_versions
impl Debug for ErrorCode
impl Debug for fsconfig_command
impl Debug for membarrier_cmd
impl Debug for membarrier_cmd_flag
impl Debug for procmap_query_flags
impl Debug for Level
impl Debug for LevelFilter
impl Debug for PrefilterConfig
impl Debug for CompressionStrategy
impl Debug for TDEFLFlush
impl Debug for TDEFLStatus
impl Debug for miniz_oxide::deflate::CompressionLevel
impl Debug for DataFormat
impl Debug for MZError
impl Debug for MZFlush
impl Debug for MZStatus
impl Debug for TINFLStatus
impl Debug for TAffine
impl Debug for TGeneral
impl Debug for TProjective
impl Debug for Type
impl Debug for nix::errno::consts::Errno
impl Debug for FlockArg
impl Debug for PosixFadviseAdvice
impl Debug for AioCancelStat
impl Debug for AioFsyncMode
impl Debug for LioMode
impl Debug for LioOpcode
impl Debug for EpollOp
impl Debug for MmapAdvise
impl Debug for Event
impl Debug for nix::sys::ptrace::linux::Request
impl Debug for QuotaFmt
impl Debug for QuotaType
impl Debug for RebootMode
impl Debug for Resource
impl Debug for SigHandler
impl Debug for SigevNotify
impl Debug for SigmaskHow
impl Debug for nix::sys::signal::Signal
impl Debug for AddressFamily
impl Debug for InetAddr
impl Debug for nix::sys::socket::addr::IpAddr
impl Debug for SockAddr
impl Debug for ControlMessageOwned
impl Debug for nix::sys::socket::Shutdown
impl Debug for SockProtocol
impl Debug for nix::sys::socket::SockType
impl Debug for FchmodatFlags
impl Debug for UtimensatFlags
impl Debug for BaudRate
impl Debug for FlowArg
impl Debug for FlushArg
impl Debug for SetArg
impl Debug for SpecialCharacterIndices
impl Debug for nix::sys::timerfd::ClockId
impl Debug for Expiration
impl Debug for WaitStatus
impl Debug for FchownatFlags
impl Debug for ForkResult
impl Debug for LinkatFlags
impl Debug for PathconfVar
impl Debug for SysconfVar
impl Debug for UnlinkatFlags
impl Debug for Whence
impl Debug for num_bigint::bigint::Sign
impl Debug for FloatErrorKind
impl Debug for parking_lot::once::OnceState
impl Debug for FilterOp
impl Debug for ParkResult
impl Debug for RequeueOp
impl Debug for BernoulliError
impl Debug for rand::distributions::weighted::WeightedError
impl Debug for rand::distributions::weighted_index::WeightedError
impl Debug for rand::seq::index::IndexVec
impl Debug for rand::seq::index::IndexVec
impl Debug for rand::seq::index::IndexVecIntoIter
impl Debug for rand::seq::index::IndexVecIntoIter
impl Debug for rand_core::error::ErrorKind
impl Debug for rand_distr::binomial::Error
impl Debug for rand_distr::cauchy::Error
impl Debug for rand_distr::exponential::Error
impl Debug for rand_distr::frechet::Error
impl Debug for rand_distr::gamma::BetaError
impl Debug for ChiSquaredError
impl Debug for rand_distr::gamma::Error
impl Debug for FisherFError
impl Debug for rand_distr::geometric::Error
impl Debug for rand_distr::gumbel::Error
impl Debug for rand_distr::hypergeometric::Error
impl Debug for rand_distr::inverse_gaussian::Error
impl Debug for rand_distr::normal::Error
impl Debug for rand_distr::normal_inverse_gaussian::Error
impl Debug for rand_distr::pareto::Error
impl Debug for PertError
impl Debug for rand_distr::poisson::Error
impl Debug for rand_distr::skew_normal::Error
impl Debug for rand_distr::triangular::TriangularError
impl Debug for rand_distr::weibull::Error
impl Debug for ZetaError
impl Debug for ZipfError
impl Debug for Yield
impl Debug for regex::error::Error
impl Debug for StartError
impl Debug for WhichCaptures
impl Debug for State
impl Debug for regex_automata::util::look::Look
impl Debug for regex_automata::util::search::Anchored
impl Debug for regex_automata::util::search::MatchErrorKind
impl Debug for regex_automata::util::search::MatchKind
impl Debug for AssertionKind
impl Debug for Ast
impl Debug for ClassAsciiKind
impl Debug for ClassPerlKind
impl Debug for ClassSet
impl Debug for ClassSetBinaryOpKind
impl Debug for ClassSetItem
impl Debug for ClassUnicodeKind
impl Debug for ClassUnicodeOpKind
impl Debug for regex_syntax::ast::ErrorKind
impl Debug for regex_syntax::ast::Flag
impl Debug for FlagsItemKind
impl Debug for GroupKind
impl Debug for HexLiteralKind
impl Debug for LiteralKind
impl Debug for RepetitionKind
impl Debug for RepetitionRange
impl Debug for SpecialLiteralKind
impl Debug for regex_syntax::error::Error
impl Debug for Class
impl Debug for Dot
impl Debug for regex_syntax::hir::ErrorKind
impl Debug for HirKind
impl Debug for regex_syntax::hir::Look
impl Debug for ExtractKind
impl Debug for Utf8Sequence
impl Debug for Direction
impl Debug for Action
impl Debug for OptionalActions
impl Debug for QueueSelector
impl Debug for EarlyDataError
impl Debug for Tls12Resumption
impl Debug for EchMode
impl Debug for EchStatus
impl Debug for HandshakeKind
impl Debug for Side
impl Debug for CompressionCache
impl Debug for rustls::compress::CompressionLevel
impl Debug for rustls::conn::connection::Connection
impl Debug for rustls::conn::unbuffered::EncodeError
impl Debug for EncryptError
impl Debug for AlertDescription
impl Debug for CertificateCompressionAlgorithm
impl Debug for CertificateType
impl Debug for CipherSuite
impl Debug for ContentType
impl Debug for HandshakeType
impl Debug for rustls::enums::ProtocolVersion
impl Debug for SignatureAlgorithm
impl Debug for SignatureScheme
impl Debug for CertRevocationListError
impl Debug for CertificateError
impl Debug for EncryptedClientHelloError
impl Debug for rustls::error::Error
impl Debug for ExtendedKeyPurpose
impl Debug for InconsistentKeys
impl Debug for InvalidMessage
impl Debug for PeerIncompatible
impl Debug for PeerMisbehaved
impl Debug for HashAlgorithm
impl Debug for NamedGroup
impl Debug for KeyExchangeAlgorithm
impl Debug for rustls::quic::connection::Connection
impl Debug for Version
impl Debug for SupportedCipherSuite
impl Debug for VerifierBuilderError
impl Debug for rustls_pki_types::pem::Error
impl Debug for SectionKind
impl Debug for rustls_pki_types::server_name::IpAddr
impl Debug for ServerName<'_>
impl Debug for Always
impl Debug for Category
impl Debug for serde_json::value::Value
impl Debug for CollectionAllocErr
impl Debug for SnmpError
impl Debug for SnmpMessageType
impl Debug for statrs::distribution::beta::BetaError
impl Debug for BinomialError
impl Debug for CategoricalError
impl Debug for CauchyError
impl Debug for ChiError
impl Debug for DiracError
impl Debug for DirichletError
impl Debug for DiscreteUniformError
impl Debug for ExpError
impl Debug for FisherSnedecorError
impl Debug for GammaError
impl Debug for GeometricError
impl Debug for GumbelError
impl Debug for HypergeometricError
impl Debug for InverseGammaError
impl Debug for LaplaceError
impl Debug for LogNormalError
impl Debug for MultinomialError
impl Debug for MultivariateNormalError
impl Debug for MultivariateStudentError
impl Debug for NegativeBinomialError
impl Debug for NormalError
impl Debug for ParetoError
impl Debug for PoissonError
impl Debug for StudentsTError
impl Debug for statrs::distribution::triangular::TriangularError
impl Debug for UniformError
impl Debug for WeibullError
impl Debug for BetaFuncError
impl Debug for GammaFuncError
impl Debug for RankTieBreaker
impl Debug for Alternative
impl Debug for FishersExactTestError
impl Debug for strum::ParseError
impl Debug for DiskKind
impl Debug for ProcessStatus
impl Debug for sysinfo::common::Signal
impl Debug for termcolor::Color
impl Debug for ColorChoice
impl Debug for tinystr::error::ParseError
impl Debug for CPCTempError
impl Debug for LTBError
impl Debug for PAError
impl Debug for PBError
impl Debug for RBError
impl Debug for SwitchError
impl Debug for TCPCTempError
impl Debug for TCPCVcpError
impl Debug for toml::value::Value
impl Debug for Offset
impl Debug for toml_edit::item::Item
impl Debug for toml_edit::ser::Error
impl Debug for toml_edit::value::Value
impl Debug for GraphemeIncomplete
impl Debug for RedirectAuthHeaders
impl Debug for ureq::error::Error
impl Debug for ureq::error::ErrorKind
impl Debug for Origin
impl Debug for url::parser::ParseError
impl Debug for SyntaxViolation
impl Debug for url::slicing::Position
impl Debug for ExpirationPolicy
impl Debug for RevocationCheckDepth
impl Debug for UnknownStatusPolicy
impl Debug for RevocationReason
impl Debug for DerTypeId
impl Debug for webpki::error::Error
impl Debug for Endianness
impl Debug for Needed
impl Debug for StrContext
impl Debug for StrContextValue
impl Debug for CompareResult
impl Debug for zerocopy::byteorder::BigEndian
impl Debug for zerocopy::byteorder::LittleEndian
impl Debug for ZeroTrieBuildError
impl Debug for UleError
impl Debug for zmq::DecodeError
impl Debug for zmq::EncodeError
impl Debug for zmq::Error
impl Debug for Mechanism
impl Debug for SocketEvent
impl Debug for SocketType
impl Debug for Edge
impl Debug for AnalysisError
impl Debug for CalibrationError
impl Debug for IPBusError
impl Debug for MasterTriggerError
impl Debug for RunError
impl Debug for SensorError
impl Debug for SerializationError
impl Debug for StagingError
impl Debug for TofError
impl Debug for UserError
impl Debug for WaveformError
impl Debug for DataType
impl Debug for EventQuality
impl Debug for EventStatus
impl Debug for gondola_core::events::LTBThreshold
impl Debug for TriggerType
impl Debug for CRFrameObjectType
impl Debug for DataSourceKind
impl Debug for gondola_core::io::FileType
impl Debug for IPBusPacketType
impl Debug for TelemetryPacketType
impl Debug for TofPacketType
impl Debug for gondola_core::tof::alerts::Component
impl Debug for OutOfBound
impl Debug for Shifters
impl Debug for Variable
impl Debug for TofCommandCode
impl Debug for BuildStrategy
impl Debug for TofOperationMode
impl Debug for ParameterSetStrategy
impl Debug for RBBufferStrategy
impl Debug for TofResponse
impl Debug for TofReturnCode
impl Debug for gondola_core::version::ProtocolVersion
impl Debug for gondola_core::prelude::Peak
impl Debug for SeekFrom
impl Debug for gondola_core::prelude::SocketAddr
impl Debug for VarError
impl Debug for gondola_core::prelude::fs::TryLockError
impl Debug for gondola_core::prelude::io::ErrorKind
impl Debug for gondola_core::prelude::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for gondola_core::prelude::fmt::Sign
impl Debug for TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for core::cmp::Ordering
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for AtomicOrdering
impl Debug for core::net::ip_addr::IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for core::slice::GetDisjointMutError
impl Debug for SearchStep
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for std::net::Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for std::sync::mpsc::RecvTimeoutError
impl Debug for std::sync::mpsc::TryRecvError
impl Debug for TimerError
impl Debug for bool
impl Debug for char
impl Debug for f16
impl Debug for f32
impl Debug for f64
impl Debug for f128
impl Debug for i8
impl Debug for i16
impl Debug for i32
impl Debug for i64
impl Debug for i128
impl Debug for isize
impl Debug for !
impl Debug for str
impl Debug for u8
impl Debug for u16
impl Debug for u32
impl Debug for u64
impl Debug for u128
impl Debug for ()
impl Debug for usize
impl Debug for AhoCorasick
impl Debug for AhoCorasickBuilder
impl Debug for aho_corasick::automaton::OverlappingState
impl Debug for aho_corasick::dfa::Builder
impl Debug for aho_corasick::dfa::DFA
impl Debug for aho_corasick::nfa::contiguous::Builder
impl Debug for aho_corasick::nfa::contiguous::NFA
impl Debug for aho_corasick::nfa::noncontiguous::Builder
impl Debug for aho_corasick::nfa::noncontiguous::NFA
impl Debug for aho_corasick::packed::api::Builder
impl Debug for aho_corasick::packed::api::Config
impl Debug for aho_corasick::packed::api::Searcher
impl Debug for aho_corasick::util::error::BuildError
impl Debug for aho_corasick::util::error::MatchError
impl Debug for aho_corasick::util::prefilter::Prefilter
impl Debug for aho_corasick::util::primitives::PatternID
impl Debug for aho_corasick::util::primitives::PatternIDError
impl Debug for aho_corasick::util::primitives::StateID
impl Debug for aho_corasick::util::primitives::StateIDError
impl Debug for aho_corasick::util::search::Match
impl Debug for aho_corasick::util::search::Span
impl Debug for Alphabet
impl Debug for GeneralPurpose
impl Debug for GeneralPurposeConfig
impl Debug for DecodeMetadata
impl Debug for bitflags::parser::ParseError
impl Debug for Parsed
impl Debug for InternalFixed
impl Debug for InternalNumeric
impl Debug for OffsetFormat
impl Debug for chrono::format::ParseError
impl Debug for Months
impl Debug for ParseMonthError
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");
impl Debug for NaiveDateDaysIterator
impl Debug for NaiveDateWeeksIterator
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"
);
impl Debug for Days
impl Debug for NaiveWeek
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"
);
impl Debug for FixedOffset
impl Debug for Local
impl Debug for OutOfRange
impl Debug for OutOfRangeError
impl Debug for TimeDelta
impl Debug for ParseWeekdayError
impl Debug for WeekdaySet
Print the underlying bitmask, padded to 7 bits.
§Example
use chrono::Weekday::*;
assert_eq!(format!("{:?}", WeekdaySet::single(Mon)), "WeekdaySet(0000001)");
assert_eq!(format!("{:?}", WeekdaySet::single(Tue)), "WeekdaySet(0000010)");
assert_eq!(format!("{:?}", WeekdaySet::ALL), "WeekdaySet(1111111)");
impl Debug for CustomColor
impl Debug for ColoredString
impl Debug for colored::style::Style
impl Debug for comfy_table::cell::Cell
impl Debug for Column
impl Debug for Row
impl Debug for comfy_table::table::Table
impl Debug for Term
impl Debug for console::utils::Style
impl Debug for Hasher
impl Debug for ReadyTimeoutError
impl Debug for crossbeam_channel::err::RecvError
impl Debug for SelectTimeoutError
impl Debug for TryReadyError
impl Debug for TrySelectError
impl Debug for Select<'_>
impl Debug for SelectedOperation<'_>
impl Debug for Collector
impl Debug for LocalHandle
impl Debug for Guard
impl Debug for Backoff
impl Debug for Parker
impl Debug for Unparker
impl Debug for WaitGroup
impl Debug for crossbeam_utils::thread::Scope<'_>
impl Debug for DisableBlinking
impl Debug for EnableBlinking
impl Debug for Hide
impl Debug for MoveDown
impl Debug for MoveLeft
impl Debug for MoveRight
impl Debug for MoveTo
impl Debug for MoveToColumn
impl Debug for MoveToNextLine
impl Debug for MoveToPreviousLine
impl Debug for MoveToRow
impl Debug for MoveUp
impl Debug for RestorePosition
impl Debug for SavePosition
impl Debug for Show
impl Debug for crossterm::style::attributes::Attributes
impl Debug for ContentStyle
impl Debug for ResetColor
impl Debug for SetAttribute
impl Debug for SetAttributes
impl Debug for SetBackgroundColor
impl Debug for SetColors
impl Debug for SetForegroundColor
impl Debug for SetStyle
impl Debug for SetUnderlineColor
impl Debug for Colors
impl Debug for BeginSynchronizedUpdate
impl Debug for Clear
impl Debug for DisableLineWrap
impl Debug for EnableLineWrap
impl Debug for EndSynchronizedUpdate
impl Debug for EnterAlternateScreen
impl Debug for LeaveAlternateScreen
impl Debug for ScrollDown
impl Debug for ScrollUp
impl Debug for SetSize
impl Debug for WindowSize
impl Debug for ByteRecord
impl Debug for csv::byte_record::Position
impl Debug for csv::deserializer::DeserializeError
impl Debug for csv::error::Error
impl Debug for csv::error::FromUtf8Error
impl Debug for csv::error::Utf8Error
impl Debug for csv::reader::ReaderBuilder
impl Debug for StringRecord
impl Debug for csv::writer::WriterBuilder
impl Debug for csv_core::reader::Reader
impl Debug for csv_core::reader::ReaderBuilder
impl Debug for csv_core::writer::Writer
impl Debug for csv_core::writer::WriterBuilder
impl Debug for DefaultLoadingMode
impl Debug for AnsiTransactionManager
impl Debug for InTransactionStatus
impl Debug for ValidTransactionManagerStatus
impl Debug for NotSelectable
impl Debug for Untyped
impl Debug for CurrentRow
impl Debug for ExcludeCurrentRow
impl Debug for ExcludeGroup
impl Debug for ExcludeNoOthers
impl Debug for ExcludeTies
impl Debug for Groups
impl Debug for diesel::expression::functions::aggregate_expressions::frame_clause::Range
impl Debug for Rows
impl Debug for UnboundedFollowing
impl Debug for UnboundedPreceding
impl Debug for now
impl Debug for today
impl Debug for DeserializeFieldError
impl Debug for EmptyChangeset
impl Debug for EmptyQuery
impl Debug for UnexpectedEndOfRow
impl Debug for UnexpectedNullError
impl Debug for IsNullable
impl Debug for NotNull
impl Debug for diesel::sql_types::BigInt
impl Debug for Binary
impl Debug for Bool
impl Debug for diesel::sql_types::Date
impl Debug for Double
impl Debug for Float
impl Debug for Integer
impl Debug for Interval
impl Debug for Json
impl Debug for Jsonb
impl Debug for diesel::sql_types::Numeric
impl Debug for SmallInt
impl Debug for Text
impl Debug for diesel::sql_types::Time
impl Debug for diesel::sql_types::Timestamp
impl Debug for TinyInt
impl Debug for Sqlite
impl Debug for SerializedDatabase
impl Debug for Timestamptz
impl Debug for env_logger::filter::Builder
impl Debug for env_logger::filter::Filter
impl Debug for env_logger::fmt::humantime::Timestamp
impl Debug for Formatter
impl Debug for env_logger::fmt::style::Style
impl Debug for env_logger::logger::Builder
impl Debug for Logger
impl Debug for Crc
impl Debug for GzBuilder
impl Debug for GzHeader
impl Debug for Compress
impl Debug for CompressError
impl Debug for Decompress
impl Debug for flate2::mem::DecompressError
impl Debug for Compression
impl Debug for getrandom::error::Error
impl Debug for GlobError
impl Debug for MatchOptions
impl Debug for Paths
impl Debug for Pattern
impl Debug for PatternError
impl Debug for half::bfloat::bf16
impl Debug for DefaultHashBuilder
impl Debug for Rfc3339Timestamp
impl Debug for humantime::duration::FormattedDuration
impl Debug for humantime::wrapper::Duration
impl Debug for humantime::wrapper::Timestamp
impl Debug for i2c_linux_sys::Flags
impl Debug for Functionality
impl Debug for i2c_msg
impl Debug for i2c_rdwr_ioctl_data
impl Debug for i2c_smbus_data
impl Debug for i2c_smbus_ioctl_data
impl Debug for I2CMessageFlags
impl Debug for CodePointInversionListULE
impl Debug for InvalidSetError
impl Debug for RangeError
impl Debug for CodePointInversionListAndStringListULE
impl Debug for CodePointTrieHeader
impl Debug for DataLocale
impl Debug for Other
impl Debug for icu_locale_core::extensions::private::other::Subtag
impl Debug for Private
impl Debug for Extensions
impl Debug for Fields
impl Debug for icu_locale_core::extensions::transform::key::Key
impl Debug for icu_locale_core::extensions::transform::Transform
impl Debug for icu_locale_core::extensions::transform::value::Value
impl Debug for icu_locale_core::extensions::unicode::attribute::Attribute
impl Debug for icu_locale_core::extensions::unicode::attributes::Attributes
impl Debug for icu_locale_core::extensions::unicode::key::Key
impl Debug for Keywords
impl Debug for Unicode
impl Debug for SubdivisionId
impl Debug for SubdivisionSuffix
impl Debug for icu_locale_core::extensions::unicode::value::Value
impl Debug for LanguageIdentifier
impl Debug for Locale
impl Debug for CurrencyType
impl Debug for NumberingSystem
impl Debug for RegionOverride
impl Debug for RegionalSubdivision
impl Debug for TimeZoneShortId
impl Debug for LocalePreferences
impl Debug for Language
impl Debug for Region
impl Debug for icu_locale_core::subtags::script::Script
impl Debug for icu_locale_core::subtags::Subtag
impl Debug for Variant
impl Debug for Variants
impl Debug for CanonicalCombiningClassMap
impl Debug for CanonicalComposition
impl Debug for CanonicalDecomposition
impl Debug for icu_normalizer::provider::Baked
impl Debug for ComposingNormalizer
impl Debug for DecomposingNormalizer
impl Debug for Uts46Mapper
impl Debug for BidiMirroringGlyph
impl Debug for CodePointSetData
impl Debug for EmojiSetData
impl Debug for Alnum
impl Debug for Alphabetic
impl Debug for AsciiHexDigit
impl Debug for BasicEmoji
impl Debug for BidiClass
impl Debug for BidiControl
impl Debug for BidiMirrored
impl Debug for Blank
impl Debug for CanonicalCombiningClass
impl Debug for CaseIgnorable
impl Debug for CaseSensitive
impl Debug for Cased
impl Debug for ChangesWhenCasefolded
impl Debug for ChangesWhenCasemapped
impl Debug for ChangesWhenLowercased
impl Debug for ChangesWhenNfkcCasefolded
impl Debug for ChangesWhenTitlecased
impl Debug for ChangesWhenUppercased
impl Debug for Dash
impl Debug for DefaultIgnorableCodePoint
impl Debug for Deprecated
impl Debug for Diacritic
impl Debug for EastAsianWidth
impl Debug for Emoji
impl Debug for EmojiComponent
impl Debug for EmojiModifier
impl Debug for EmojiModifierBase
impl Debug for EmojiPresentation
impl Debug for ExtendedPictographic
impl Debug for Extender
impl Debug for FullCompositionExclusion
impl Debug for GeneralCategoryGroup
impl Debug for GeneralCategoryOutOfBoundsError
impl Debug for Graph
impl Debug for GraphemeBase
impl Debug for GraphemeClusterBreak
impl Debug for GraphemeExtend
impl Debug for GraphemeLink
impl Debug for HangulSyllableType
impl Debug for HexDigit
impl Debug for Hyphen
impl Debug for IdContinue
impl Debug for IdStart
impl Debug for Ideographic
impl Debug for IdsBinaryOperator
impl Debug for IdsTrinaryOperator
impl Debug for IndicSyllabicCategory
impl Debug for JoinControl
impl Debug for JoiningType
impl Debug for LineBreak
impl Debug for LogicalOrderException
impl Debug for Lowercase
impl Debug for Math
impl Debug for NfcInert
impl Debug for NfdInert
impl Debug for NfkcInert
impl Debug for NfkdInert
impl Debug for NoncharacterCodePoint
impl Debug for PatternSyntax
impl Debug for PatternWhiteSpace
impl Debug for PrependedConcatenationMark
impl Debug for icu_properties::props::Print
impl Debug for QuotationMark
impl Debug for Radical
impl Debug for RegionalIndicator
impl Debug for icu_properties::props::Script
impl Debug for SegmentStarter
impl Debug for SentenceBreak
impl Debug for SentenceTerminal
impl Debug for SoftDotted
impl Debug for TerminalPunctuation
impl Debug for UnifiedIdeograph
impl Debug for Uppercase
impl Debug for VariationSelector
impl Debug for VerticalOrientation
impl Debug for WhiteSpace
impl Debug for WordBreak
impl Debug for Xdigit
impl Debug for XidContinue
impl Debug for XidStart
impl Debug for icu_properties::provider::Baked
impl Debug for ScriptWithExtensions
impl Debug for BufferMarker
impl Debug for DataError
impl Debug for DataMarkerId
impl Debug for DataMarkerIdHash
impl Debug for DataMarkerInfo
impl Debug for AttributeParseError
impl Debug for DataMarkerAttributes
impl Debug for DataRequestMetadata
impl Debug for Cart
impl Debug for DataResponseMetadata
impl Debug for Errors
impl Debug for indexmap::TryReserveError
impl Debug for ProgressDrawTarget
impl Debug for BinaryBytes
impl Debug for DecimalBytes
impl Debug for indicatif::format::FormattedDuration
impl Debug for HumanBytes
impl Debug for HumanCount
impl Debug for HumanDuration
impl Debug for HumanFloatCount
impl Debug for MultiProgress
impl Debug for TemplateError
impl Debug for j1939_filter
impl Debug for __c_anonymous_sockaddr_can_j1939
impl Debug for __c_anonymous_sockaddr_can_tp
impl Debug for can_filter
impl Debug for can_frame
impl Debug for canfd_frame
impl Debug for canxl_frame
impl Debug for sockaddr_can
impl Debug for libc::unix::linux_like::linux::arch::generic::termios2
impl Debug for msqid_ds
impl Debug for semid_ds
impl Debug for sigset_t
impl Debug for sysinfo
impl Debug for timex
impl Debug for statvfs
impl Debug for _libc_fpstate
impl Debug for _libc_fpxreg
impl Debug for _libc_xmmreg
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::clone_args
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::flock64
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::flock
impl Debug for ipc_perm
impl Debug for max_align_t
impl Debug for mcontext_t
impl Debug for pthread_attr_t
impl Debug for ptrace_rseq_configuration
impl Debug for shmid_ds
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::sigaction
impl Debug for siginfo_t
impl Debug for stack_t
impl Debug for stat64
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::stat
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs64
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs
impl Debug for statvfs64
impl Debug for ucontext_t
impl Debug for user
impl Debug for user_fpregs_struct
impl Debug for user_regs_struct
impl Debug for Elf32_Chdr
impl Debug for Elf64_Chdr
impl Debug for __c_anonymous_ptrace_syscall_info_entry
impl Debug for __c_anonymous_ptrace_syscall_info_exit
impl Debug for __c_anonymous_ptrace_syscall_info_seccomp
impl Debug for __exit_status
impl Debug for __timeval
impl Debug for aiocb
impl Debug for cmsghdr
impl Debug for fanotify_event_info_error
impl Debug for fanotify_event_info_pidfd
impl Debug for fpos64_t
impl Debug for fpos_t
impl Debug for glob64_t
impl Debug for iocb
impl Debug for mallinfo2
impl Debug for mallinfo
impl Debug for mbstate_t
impl Debug for msghdr
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for ntptimeval
impl Debug for ptrace_peeksiginfo_args
impl Debug for ptrace_sud_config
impl Debug for ptrace_syscall_info
impl Debug for regex_t
impl Debug for rtentry
impl Debug for sem_t
impl Debug for seminfo
impl Debug for tcp_info
impl Debug for libc::unix::linux_like::linux::gnu::termios
impl Debug for libc::unix::linux_like::linux::gnu::timespec
impl Debug for utmpx
impl Debug for Elf32_Ehdr
impl Debug for Elf32_Phdr
impl Debug for Elf32_Shdr
impl Debug for Elf32_Sym
impl Debug for Elf64_Ehdr
impl Debug for Elf64_Phdr
impl Debug for Elf64_Shdr
impl Debug for Elf64_Sym
impl Debug for __c_anonymous__kernel_fsid_t
impl Debug for __c_anonymous_elf32_rel
impl Debug for __c_anonymous_elf32_rela
impl Debug for __c_anonymous_elf64_rel
impl Debug for __c_anonymous_elf64_rela
impl Debug for __c_anonymous_ifru_map
impl Debug for af_alg_iv
impl Debug for arpd_request
impl Debug for cpu_set_t
impl Debug for dirent64
impl Debug for dirent
impl Debug for dl_phdr_info
impl Debug for libc::unix::linux_like::linux::dmabuf_cmsg
impl Debug for libc::unix::linux_like::linux::dmabuf_token
impl Debug for dqblk
impl Debug for libc::unix::linux_like::linux::epoll_params
impl Debug for fanotify_event_info_fid
impl Debug for fanotify_event_info_header
impl Debug for fanotify_event_metadata
impl Debug for fanotify_response
impl Debug for fanout_args
impl Debug for ff_condition_effect
impl Debug for ff_constant_effect
impl Debug for ff_effect
impl Debug for ff_envelope
impl Debug for ff_periodic_effect
impl Debug for ff_ramp_effect
impl Debug for ff_replay
impl Debug for ff_rumble_effect
impl Debug for ff_trigger
impl Debug for fsid_t
impl Debug for genlmsghdr
impl Debug for glob_t
impl Debug for hwtstamp_config
impl Debug for if_nameindex
impl Debug for ifconf
impl Debug for ifreq
impl Debug for in6_ifreq
impl Debug for in6_pktinfo
impl Debug for libc::unix::linux_like::linux::inotify_event
impl Debug for input_absinfo
impl Debug for input_event
impl Debug for input_id
impl Debug for input_keymap_entry
impl Debug for input_mask
impl Debug for libc::unix::linux_like::linux::itimerspec
impl Debug for iw_discarded
impl Debug for iw_encode_ext
impl Debug for iw_event
impl Debug for iw_freq
impl Debug for iw_michaelmicfailure
impl Debug for iw_missed
impl Debug for iw_mlme
impl Debug for iw_param
impl Debug for iw_pmkid_cand
impl Debug for iw_pmksa
impl Debug for iw_point
impl Debug for iw_priv_args
impl Debug for iw_quality
impl Debug for iw_range
impl Debug for iw_scan_req
impl Debug for iw_statistics
impl Debug for iw_thrspy
impl Debug for iwreq
impl Debug for mnt_ns_info
impl Debug for mntent
impl Debug for libc::unix::linux_like::linux::mount_attr
impl Debug for mq_attr
impl Debug for msginfo
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for libc::unix::linux_like::linux::open_how
impl Debug for option
impl Debug for packet_mreq
impl Debug for passwd
impl Debug for pidfd_info
impl Debug for posix_spawn_file_actions_t
impl Debug for posix_spawnattr_t
impl Debug for pthread_barrier_t
impl Debug for pthread_barrierattr_t
impl Debug for pthread_cond_t
impl Debug for pthread_condattr_t
impl Debug for pthread_mutex_t
impl Debug for pthread_mutexattr_t
impl Debug for pthread_rwlock_t
impl Debug for pthread_rwlockattr_t
impl Debug for ptp_clock_caps
impl Debug for ptp_clock_time
impl Debug for ptp_extts_event
impl Debug for ptp_extts_request
impl Debug for ptp_perout_request
impl Debug for ptp_pin_desc
impl Debug for ptp_sys_offset
impl Debug for ptp_sys_offset_extended
impl Debug for ptp_sys_offset_precise
impl Debug for regmatch_t
impl Debug for libc::unix::linux_like::linux::rlimit64
impl Debug for sched_attr
impl Debug for sctp_authinfo
impl Debug for sctp_initmsg
impl Debug for sctp_nxtinfo
impl Debug for sctp_prinfo
impl Debug for sctp_rcvinfo
impl Debug for sctp_sndinfo
impl Debug for sctp_sndrcvinfo
impl Debug for seccomp_data
impl Debug for seccomp_notif
impl Debug for seccomp_notif_addfd
impl Debug for seccomp_notif_resp
impl Debug for seccomp_notif_sizes
impl Debug for sembuf
impl Debug for signalfd_siginfo
impl Debug for sock_extended_err
impl Debug for sock_txtime
impl Debug for sockaddr_alg
impl Debug for sockaddr_nl
impl Debug for sockaddr_pkt
impl Debug for sockaddr_vm
impl Debug for sockaddr_xdp
impl Debug for spwd
impl Debug for tls12_crypto_info_aes_ccm_128
impl Debug for tls12_crypto_info_aes_gcm_128
impl Debug for tls12_crypto_info_aes_gcm_256
impl Debug for tls12_crypto_info_aria_gcm_128
impl Debug for tls12_crypto_info_aria_gcm_256
impl Debug for tls12_crypto_info_chacha20_poly1305
impl Debug for tls12_crypto_info_sm4_ccm
impl Debug for tls12_crypto_info_sm4_gcm
impl Debug for tls_crypto_info
impl Debug for tpacket2_hdr
impl Debug for tpacket3_hdr
impl Debug for tpacket_auxdata
impl Debug for tpacket_bd_ts
impl Debug for tpacket_block_desc
impl Debug for tpacket_hdr
impl Debug for tpacket_hdr_v1
impl Debug for tpacket_hdr_variant1
impl Debug for tpacket_req3
impl Debug for tpacket_req
impl Debug for tpacket_rollover_stats
impl Debug for tpacket_stats
impl Debug for tpacket_stats_v3
impl Debug for ucred
impl Debug for uinput_abs_setup
impl Debug for uinput_ff_erase
impl Debug for uinput_ff_upload
impl Debug for uinput_setup
impl Debug for uinput_user_dev
impl Debug for xdp_desc
impl Debug for xdp_mmap_offsets
impl Debug for xdp_mmap_offsets_v1
impl Debug for xdp_options
impl Debug for xdp_ring_offset
impl Debug for xdp_ring_offset_v1
impl Debug for xdp_statistics
impl Debug for xdp_statistics_v1
impl Debug for xdp_umem_reg
impl Debug for xdp_umem_reg_v1
impl Debug for xsk_tx_metadata
impl Debug for xsk_tx_metadata_completion
impl Debug for xsk_tx_metadata_request
impl Debug for Dl_info
impl Debug for addrinfo
impl Debug for arphdr
impl Debug for arpreq
impl Debug for arpreq_old
impl Debug for libc::unix::linux_like::epoll_event
impl Debug for fd_set
impl Debug for libc::unix::linux_like::file_clone_range
impl Debug for ifaddrs
impl Debug for in6_rtmsg
impl Debug for in_addr
impl Debug for in_pktinfo
impl Debug for ip_mreq
impl Debug for ip_mreq_source
impl Debug for ip_mreqn
impl Debug for lconv
impl Debug for mmsghdr
impl Debug for sched_param
impl Debug for sigevent
impl Debug for sock_filter
impl Debug for sock_fprog
impl Debug for sockaddr
impl Debug for sockaddr_in6
impl Debug for sockaddr_in
impl Debug for sockaddr_ll
impl Debug for sockaddr_storage
impl Debug for sockaddr_un
impl Debug for libc::unix::linux_like::statx
impl Debug for libc::unix::linux_like::statx_timestamp
impl Debug for tm
impl Debug for utsname
impl Debug for group
impl Debug for hostent
impl Debug for in6_addr
impl Debug for libc::unix::iovec
impl Debug for ipv6_mreq
impl Debug for libc::unix::itimerval
impl Debug for linger
impl Debug for libc::unix::pollfd
impl Debug for protoent
impl Debug for libc::unix::rlimit
impl Debug for libc::unix::rusage
impl Debug for servent
impl Debug for sigval
impl Debug for libc::unix::timeval
impl Debug for tms
impl Debug for utimbuf
impl Debug for libc::unix::winsize
impl Debug for Fts5Context
impl Debug for Fts5ExtensionApi
impl Debug for Fts5PhraseIter
impl Debug for Fts5Tokenizer
impl Debug for fts5_api
impl Debug for fts5_tokenizer
impl Debug for fts5_tokenizer_v2
impl Debug for sqlite3
impl Debug for sqlite3_api_routines
impl Debug for sqlite3_backup
impl Debug for sqlite3_blob
impl Debug for sqlite3_changegroup
impl Debug for sqlite3_changeset_iter
impl Debug for sqlite3_context
impl Debug for sqlite3_file
impl Debug for sqlite3_index_constraint
impl Debug for sqlite3_index_constraint_usage
impl Debug for sqlite3_index_info
impl Debug for sqlite3_index_orderby
impl Debug for sqlite3_io_methods
impl Debug for sqlite3_mem_methods
impl Debug for sqlite3_module
impl Debug for sqlite3_mutex
impl Debug for sqlite3_mutex_methods
impl Debug for sqlite3_pcache
impl Debug for sqlite3_pcache_methods2
impl Debug for sqlite3_pcache_methods
impl Debug for sqlite3_pcache_page
impl Debug for sqlite3_rebaser
impl Debug for sqlite3_rtree_geometry
impl Debug for sqlite3_rtree_query_info
impl Debug for sqlite3_session
impl Debug for sqlite3_snapshot
impl Debug for sqlite3_stmt
impl Debug for sqlite3_str
impl Debug for sqlite3_value
impl Debug for sqlite3_vfs
impl Debug for sqlite3_vtab
impl Debug for sqlite3_vtab_cursor
impl Debug for libsqlite3_sys::error::Error
impl Debug for __kernel_fd_set
impl Debug for __kernel_fsid_t
impl Debug for __kernel_itimerspec
impl Debug for __kernel_old_itimerval
impl Debug for __kernel_old_timespec
impl Debug for __kernel_old_timeval
impl Debug for __kernel_sock_timeval
impl Debug for __kernel_timespec
impl Debug for __old_kernel_stat
impl Debug for __sifields__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_4
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3
impl Debug for __sifields__bindgen_ty_6
impl Debug for __sifields__bindgen_ty_7
impl Debug for __user_cap_data_struct
impl Debug for __user_cap_header_struct
impl Debug for cachestat
impl Debug for cachestat_range
impl Debug for linux_raw_sys::general::clone_args
impl Debug for compat_statfs64
impl Debug for linux_raw_sys::general::dmabuf_cmsg
impl Debug for linux_raw_sys::general::dmabuf_token
impl Debug for linux_raw_sys::general::epoll_event
impl Debug for linux_raw_sys::general::epoll_params
impl Debug for f_owner_ex
impl Debug for linux_raw_sys::general::file_clone_range
impl Debug for file_dedupe_range
impl Debug for file_dedupe_range_info
impl Debug for files_stat_struct
impl Debug for linux_raw_sys::general::flock64
impl Debug for linux_raw_sys::general::flock
impl Debug for fs_sysfs_path
impl Debug for fscrypt_key
impl Debug for fscrypt_policy_v1
impl Debug for fscrypt_policy_v2
impl Debug for fscrypt_provisioning_key_payload
impl Debug for fstrim_range
impl Debug for fsuuid2
impl Debug for fsxattr
impl Debug for futex_waitv
impl Debug for inodes_stat_t
impl Debug for linux_raw_sys::general::inotify_event
impl Debug for linux_raw_sys::general::iovec
impl Debug for linux_raw_sys::general::itimerspec
impl Debug for linux_raw_sys::general::itimerval
impl Debug for kernel_sigaction
impl Debug for kernel_sigset_t
impl Debug for ktermios
impl Debug for linux_dirent64
impl Debug for mnt_id_req
impl Debug for linux_raw_sys::general::mount_attr
impl Debug for linux_raw_sys::general::open_how
impl Debug for page_region
impl Debug for pm_scan_arg
impl Debug for linux_raw_sys::general::pollfd
impl Debug for procmap_query
impl Debug for rand_pool_info
impl Debug for linux_raw_sys::general::rlimit64
impl Debug for linux_raw_sys::general::rlimit
impl Debug for robust_list
impl Debug for robust_list_head
impl Debug for linux_raw_sys::general::rusage
impl Debug for linux_raw_sys::general::sigaction
impl Debug for sigaltstack
impl Debug for sigevent__bindgen_ty_1__bindgen_ty_1
impl Debug for linux_raw_sys::general::stat
impl Debug for linux_raw_sys::general::statfs64
impl Debug for linux_raw_sys::general::statfs
impl Debug for statmount
impl Debug for linux_raw_sys::general::statx
impl Debug for linux_raw_sys::general::statx_timestamp
impl Debug for termio
impl Debug for linux_raw_sys::general::termios2
impl Debug for linux_raw_sys::general::termios
impl Debug for linux_raw_sys::general::timespec
impl Debug for linux_raw_sys::general::timeval
impl Debug for linux_raw_sys::general::timezone
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_2
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_3
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_4
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_5
impl Debug for uffdio_api
impl Debug for uffdio_continue
impl Debug for uffdio_copy
impl Debug for uffdio_move
impl Debug for uffdio_poison
impl Debug for uffdio_range
impl Debug for uffdio_register
impl Debug for uffdio_writeprotect
impl Debug for uffdio_zeropage
impl Debug for user_desc
impl Debug for vfs_cap_data
impl Debug for vfs_cap_data__bindgen_ty_1
impl Debug for vfs_ns_cap_data
impl Debug for vfs_ns_cap_data__bindgen_ty_1
impl Debug for vgetrandom_opaque_params
impl Debug for linux_raw_sys::general::winsize
impl Debug for xattr_args
impl Debug for ParseLevelError
impl Debug for SetLoggerError
impl Debug for memchr::arch::all::memchr::One
impl Debug for memchr::arch::all::memchr::Three
impl Debug for memchr::arch::all::memchr::Two
impl Debug for memchr::arch::all::packedpair::Finder
impl Debug for Pair
impl Debug for memchr::arch::all::rabinkarp::Finder
impl Debug for memchr::arch::all::rabinkarp::FinderRev
impl Debug for memchr::arch::all::shiftor::Finder
impl Debug for memchr::arch::all::twoway::Finder
impl Debug for memchr::arch::all::twoway::FinderRev
impl Debug for memchr::arch::x86_64::avx2::memchr::One
impl Debug for memchr::arch::x86_64::avx2::memchr::Three
impl Debug for memchr::arch::x86_64::avx2::memchr::Two
impl Debug for memchr::arch::x86_64::avx2::packedpair::Finder
impl Debug for memchr::arch::x86_64::sse2::memchr::One
impl Debug for memchr::arch::x86_64::sse2::memchr::Three
impl Debug for memchr::arch::x86_64::sse2::memchr::Two
impl Debug for memchr::arch::x86_64::sse2::packedpair::Finder
impl Debug for FinderBuilder
impl Debug for Mmap
impl Debug for MmapMut
impl Debug for MmapOptions
impl Debug for miniz_oxide::inflate::DecompressError
impl Debug for StreamResult
impl Debug for ShapeConstraint
impl Debug for DefaultAllocator
impl Debug for Dyn
impl Debug for EuclideanNorm
impl Debug for LpNorm
impl Debug for UniformNorm
impl Debug for Init
impl Debug for Uninit
impl Debug for Dir
impl Debug for nix::dir::Entry
impl Debug for OwningIter
impl Debug for ClearEnvError
impl Debug for AtFlags
impl Debug for FallocateFlags
impl Debug for nix::fcntl::FdFlag
impl Debug for OFlag
impl Debug for RenameFlags
impl Debug for SealFlag
impl Debug for SpliceFFlags
impl Debug for InterfaceAddress
impl Debug for InterfaceAddressIterator
impl Debug for DeleteModuleFlags
impl Debug for ModuleInitFlags
impl Debug for MntFlags
impl Debug for nix::mount::linux::MsFlags
impl Debug for nix::mqueue::FdFlag
impl Debug for MQ_OFlag
impl Debug for MqAttr
impl Debug for Interface
impl Debug for Interfaces
impl Debug for InterfaceFlags
impl Debug for PollFd
impl Debug for PollFlags
impl Debug for ForkptyResult
impl Debug for OpenptyResult
impl Debug for PtyMaster
impl Debug for CloneFlags
impl Debug for CpuSet
impl Debug for EpollCreateFlags
impl Debug for EpollEvent
impl Debug for EpollFlags
impl Debug for EfdFlags
impl Debug for AddWatchFlags
impl Debug for InitFlags
impl Debug for Inotify
impl Debug for InotifyEvent
impl Debug for WatchDescriptor
impl Debug for MemFdCreateFlag
impl Debug for MRemapFlags
impl Debug for MapFlags
impl Debug for MlockAllFlags
impl Debug for nix::sys::mman::MsFlags
impl Debug for ProtFlags
impl Debug for Persona
impl Debug for Options
impl Debug for Dqblk
impl Debug for QuotaValidFlags
impl Debug for FdSet
impl Debug for SigEvent
impl Debug for SaFlags
impl Debug for SigAction
impl Debug for SigSet
impl Debug for SignalIterator
impl Debug for SfdFlags
impl Debug for SignalFd
impl Debug for AlgAddr
impl Debug for LinkAddr
impl Debug for NetlinkAddr
impl Debug for nix::sys::socket::addr::Ipv4Addr
impl Debug for nix::sys::socket::addr::Ipv6Addr
impl Debug for UnixAddr
impl Debug for VsockAddr
impl Debug for AcceptConn
impl Debug for AlgSetAeadAuthSize
impl Debug for BindToDevice
impl Debug for Broadcast
impl Debug for Ip6tOriginalDst
impl Debug for IpAddMembership
impl Debug for IpDropMembership
impl Debug for IpFreebind
impl Debug for IpMulticastLoop
impl Debug for IpMulticastTtl
impl Debug for IpTransparent
impl Debug for Ipv4PacketInfo
impl Debug for Ipv4RecvErr
impl Debug for Ipv4Ttl
impl Debug for Ipv6AddMembership
impl Debug for Ipv6DropMembership
impl Debug for Ipv6RecvErr
impl Debug for Ipv6RecvPacketInfo
impl Debug for Ipv6Ttl
impl Debug for Ipv6V6Only
impl Debug for KeepAlive
impl Debug for Linger
impl Debug for Mark
impl Debug for OobInline
impl Debug for OriginalDst
impl Debug for PassCred
impl Debug for PeerCredentials
impl Debug for RcvBuf
impl Debug for RcvBufForce
impl Debug for ReceiveTimeout
impl Debug for ReceiveTimestamp
impl Debug for ReceiveTimestampns
impl Debug for ReuseAddr
impl Debug for ReusePort
impl Debug for RxqOvfl
impl Debug for SendTimeout
impl Debug for SndBuf
impl Debug for SndBufForce
impl Debug for nix::sys::socket::sockopt::SockType
impl Debug for SocketError
impl Debug for TcpCongestion
impl Debug for TcpKeepCount
impl Debug for TcpKeepIdle
impl Debug for TcpKeepInterval
impl Debug for TcpMaxSeg
impl Debug for TcpNoDelay
impl Debug for TcpRepair
impl Debug for TcpUserTimeout
impl Debug for UdpGroSegment
impl Debug for UdpGsoSegment
impl Debug for IpMembershipRequest
impl Debug for Ipv6MembershipRequest
impl Debug for MsgFlags
impl Debug for SockFlag
impl Debug for UnixCredentials
impl Debug for Mode
impl Debug for SFlag
impl Debug for FsType
impl Debug for Statfs
impl Debug for FsFlags
impl Debug for Statvfs
impl Debug for SysInfo
impl Debug for ControlFlags
impl Debug for InputFlags
impl Debug for LocalFlags
impl Debug for OutputFlags
impl Debug for nix::sys::termios::Termios
impl Debug for TimeSpec
impl Debug for TimeVal
impl Debug for TimerFd
impl Debug for TimerFlags
impl Debug for TimerSetTimeFlags
impl Debug for RemoteIoVec
impl Debug for UtsName
impl Debug for WaitPidFlag
impl Debug for nix::time::ClockId
impl Debug for UContext
impl Debug for ResGid
impl Debug for ResUid
impl Debug for AccessFlags
impl Debug for nix::unistd::Gid
impl Debug for nix::unistd::Group
impl Debug for nix::unistd::Pid
impl Debug for nix::unistd::Uid
impl Debug for nix::unistd::User
impl Debug for num_bigint::bigint::BigInt
impl Debug for BigUint
impl Debug for ParseBigIntError
impl Debug for num_rational::ParseRatioError
impl Debug for num_rational::ParseRatioError
impl Debug for num_traits::ParseFloatError
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for parking_lot::condvar::Condvar
impl Debug for parking_lot::condvar::WaitTimeoutResult
impl Debug for parking_lot::once::Once
impl Debug for ParkToken
impl Debug for UnparkResult
impl Debug for UnparkToken
impl Debug for AsciiSet
impl Debug for portable_atomic::AtomicBool
impl Debug for portable_atomic::AtomicI8
impl Debug for portable_atomic::AtomicI16
impl Debug for portable_atomic::AtomicI32
impl Debug for portable_atomic::AtomicI64
impl Debug for AtomicI128
impl Debug for portable_atomic::AtomicIsize
impl Debug for portable_atomic::AtomicU8
impl Debug for portable_atomic::AtomicU16
impl Debug for portable_atomic::AtomicU32
impl Debug for portable_atomic::AtomicU64
impl Debug for AtomicU128
impl Debug for portable_atomic::AtomicUsize
impl Debug for PotentialCodePoint
impl Debug for PotentialUtf8
impl Debug for PotentialUtf16
impl Debug for rand::deprecated::ChaChaRng
impl Debug for rand::deprecated::EntropyRng
impl Debug for rand::deprecated::Hc128Rng
impl Debug for rand::deprecated::Isaac64Rng
impl Debug for rand::deprecated::IsaacRng
impl Debug for rand::deprecated::OsRng
impl Debug for rand::deprecated::StdRng
impl Debug for rand::deprecated::ThreadRng
impl Debug for rand::deprecated::XorShiftRng
impl Debug for rand::distributions::bernoulli::Bernoulli
impl Debug for rand::distributions::bernoulli::Bernoulli
impl Debug for rand::distributions::binomial::Binomial
impl Debug for rand::distributions::cauchy::Cauchy
impl Debug for rand::distributions::dirichlet::Dirichlet
impl Debug for rand::distributions::exponential::Exp1
impl Debug for rand::distributions::exponential::Exp
impl Debug for rand::distributions::float::Open01
impl Debug for rand::distributions::float::Open01
impl Debug for rand::distributions::float::OpenClosed01
impl Debug for rand::distributions::float::OpenClosed01
impl Debug for rand::distributions::gamma::Beta
impl Debug for rand::distributions::gamma::ChiSquared
impl Debug for rand::distributions::gamma::FisherF
impl Debug for rand::distributions::gamma::Gamma
impl Debug for rand::distributions::gamma::StudentT
impl Debug for rand::distributions::normal::LogNormal
impl Debug for rand::distributions::normal::Normal
impl Debug for rand::distributions::normal::StandardNormal
impl Debug for rand::distributions::other::Alphanumeric
impl Debug for rand::distributions::other::Alphanumeric
impl Debug for rand::distributions::pareto::Pareto
impl Debug for rand::distributions::poisson::Poisson
impl Debug for rand::distributions::Standard
impl Debug for rand::distributions::Standard
impl Debug for rand::distributions::triangular::Triangular
impl Debug for UniformChar
impl Debug for rand::distributions::uniform::UniformDuration
impl Debug for rand::distributions::uniform::UniformDuration
impl Debug for rand::distributions::unit_circle::UnitCircle
impl Debug for UnitSphereSurface
impl Debug for rand::distributions::weibull::Weibull
impl Debug for ReadError
impl Debug for rand::rngs::entropy::EntropyRng
impl Debug for rand::rngs::mock::StepRng
impl Debug for rand::rngs::mock::StepRng
impl Debug for SmallRng
impl Debug for rand::rngs::std::StdRng
impl Debug for rand::rngs::std::StdRng
impl Debug for rand::rngs::thread::ThreadRng
impl Debug for rand::rngs::thread::ThreadRng
impl Debug for ChaCha8Core
impl Debug for ChaCha8Rng
impl Debug for ChaCha12Core
impl Debug for ChaCha12Rng
impl Debug for ChaCha20Core
impl Debug for ChaCha20Rng
impl Debug for ChaChaCore
impl Debug for rand_chacha::chacha::ChaChaRng
impl Debug for rand_core::error::Error
impl Debug for rand_core::error::Error
impl Debug for rand_core::os::OsRng
impl Debug for rand_distr::binomial::Binomial
impl Debug for rand_distr::exponential::Exp1
impl Debug for rand_distr::geometric::Geometric
impl Debug for StandardGeometric
impl Debug for rand_distr::hypergeometric::Hypergeometric
impl Debug for rand_distr::normal::StandardNormal
impl Debug for UnitBall
impl Debug for rand_distr::unit_circle::UnitCircle
impl Debug for UnitDisc
impl Debug for UnitSphere
impl Debug for ThreadBuilder
impl Debug for Configuration
impl Debug for FnContext
impl Debug for ThreadPoolBuildError
impl Debug for ThreadPool
impl Debug for regex::builders::bytes::RegexBuilder
impl Debug for regex::builders::bytes::RegexSetBuilder
impl Debug for regex::builders::string::RegexBuilder
impl Debug for regex::builders::string::RegexSetBuilder
impl Debug for regex::regex::bytes::CaptureLocations
impl Debug for regex::regex::bytes::Regex
impl Debug for regex::regex::string::CaptureLocations
impl Debug for regex::regexset::bytes::RegexSet
impl Debug for regex::regexset::bytes::SetMatches
impl Debug for regex::regexset::bytes::SetMatchesIntoIter
impl Debug for regex::regexset::string::RegexSet
impl Debug for regex::regexset::string::SetMatches
impl Debug for regex::regexset::string::SetMatchesIntoIter
impl Debug for regex_automata::dfa::onepass::BuildError
impl Debug for regex_automata::dfa::onepass::Builder
impl Debug for regex_automata::dfa::onepass::Cache
impl Debug for regex_automata::dfa::onepass::Config
impl Debug for regex_automata::dfa::onepass::DFA
impl Debug for regex_automata::hybrid::dfa::Builder
impl Debug for regex_automata::hybrid::dfa::Cache
impl Debug for regex_automata::hybrid::dfa::Config
impl Debug for regex_automata::hybrid::dfa::DFA
impl Debug for regex_automata::hybrid::dfa::OverlappingState
impl Debug for regex_automata::hybrid::error::BuildError
impl Debug for CacheError
impl Debug for LazyStateID
impl Debug for regex_automata::hybrid::regex::Builder
impl Debug for regex_automata::hybrid::regex::Cache
impl Debug for regex_automata::hybrid::regex::Regex
impl Debug for regex_automata::meta::error::BuildError
impl Debug for regex_automata::meta::regex::Builder
impl Debug for regex_automata::meta::regex::Cache
impl Debug for regex_automata::meta::regex::Config
impl Debug for regex_automata::meta::regex::Regex
impl Debug for BoundedBacktracker
impl Debug for regex_automata::nfa::thompson::backtrack::Builder
impl Debug for regex_automata::nfa::thompson::backtrack::Cache
impl Debug for regex_automata::nfa::thompson::backtrack::Config
impl Debug for regex_automata::nfa::thompson::builder::Builder
impl Debug for Compiler
impl Debug for regex_automata::nfa::thompson::compiler::Config
impl Debug for regex_automata::nfa::thompson::error::BuildError
impl Debug for DenseTransitions
impl Debug for regex_automata::nfa::thompson::nfa::NFA
impl Debug for SparseTransitions
impl Debug for Transition
impl Debug for regex_automata::nfa::thompson::pikevm::Builder
impl Debug for regex_automata::nfa::thompson::pikevm::Cache
impl Debug for regex_automata::nfa::thompson::pikevm::Config
impl Debug for PikeVM
impl Debug for ByteClasses
impl Debug for regex_automata::util::alphabet::Unit
impl Debug for regex_automata::util::captures::Captures
impl Debug for GroupInfo
impl Debug for GroupInfoError
impl Debug for DebugByte
impl Debug for LookMatcher
impl Debug for regex_automata::util::look::LookSet
impl Debug for regex_automata::util::look::LookSetIter
impl Debug for UnicodeWordBoundaryError
impl Debug for regex_automata::util::prefilter::Prefilter
impl Debug for NonMaxUsize
impl Debug for regex_automata::util::primitives::PatternID
impl Debug for regex_automata::util::primitives::PatternIDError
impl Debug for SmallIndex
impl Debug for SmallIndexError
impl Debug for regex_automata::util::primitives::StateID
impl Debug for regex_automata::util::primitives::StateIDError
impl Debug for HalfMatch
impl Debug for regex_automata::util::search::Match
impl Debug for regex_automata::util::search::MatchError
impl Debug for PatternSet
impl Debug for PatternSetInsertError
impl Debug for regex_automata::util::search::Span
impl Debug for regex_automata::util::start::Config
impl Debug for regex_automata::util::syntax::Config
impl Debug for regex_automata::util::wire::DeserializeError
impl Debug for SerializeError
impl Debug for regex_syntax::ast::parse::Parser
impl Debug for regex_syntax::ast::parse::ParserBuilder
impl Debug for regex_syntax::ast::print::Printer
impl Debug for Alternation
impl Debug for Assertion
impl Debug for CaptureName
impl Debug for ClassAscii
impl Debug for ClassBracketed
impl Debug for ClassPerl
impl Debug for ClassSetBinaryOp
impl Debug for ClassSetRange
impl Debug for ClassSetUnion
impl Debug for regex_syntax::ast::ClassUnicode
impl Debug for Comment
impl Debug for Concat
impl Debug for regex_syntax::ast::Error
impl Debug for regex_syntax::ast::Flags
impl Debug for FlagsItem
impl Debug for regex_syntax::ast::Group
impl Debug for regex_syntax::ast::Literal
impl Debug for regex_syntax::ast::Position
impl Debug for regex_syntax::ast::Repetition
impl Debug for RepetitionOp
impl Debug for SetFlags
impl Debug for regex_syntax::ast::Span
impl Debug for WithComments
impl Debug for Extractor
impl Debug for regex_syntax::hir::literal::Literal
impl Debug for Seq
impl Debug for regex_syntax::hir::print::Printer
impl Debug for Capture
impl Debug for ClassBytes
impl Debug for ClassBytesRange
impl Debug for regex_syntax::hir::ClassUnicode
impl Debug for ClassUnicodeRange
impl Debug for regex_syntax::hir::Error
impl Debug for Hir
impl Debug for regex_syntax::hir::Literal
impl Debug for regex_syntax::hir::LookSet
impl Debug for regex_syntax::hir::LookSetIter
impl Debug for Properties
impl Debug for regex_syntax::hir::Repetition
impl Debug for Translator
impl Debug for TranslatorBuilder
impl Debug for regex_syntax::parser::Parser
impl Debug for regex_syntax::parser::ParserBuilder
impl Debug for CaseFoldError
impl Debug for UnicodeWordError
impl Debug for Utf8Range
impl Debug for Utf8Sequences
impl Debug for ring::aead::algorithm::Algorithm
impl Debug for LessSafeKey
impl Debug for ring::aead::quic::Algorithm
impl Debug for UnboundKey
impl Debug for ring::agreement::Algorithm
impl Debug for EphemeralPrivateKey
impl Debug for ring::agreement::PublicKey
impl Debug for ring::digest::Algorithm
impl Debug for Digest
impl Debug for Ed25519KeyPair
impl Debug for EdDSAParameters
impl Debug for EcdsaKeyPair
impl Debug for EcdsaSigningAlgorithm
impl Debug for EcdsaVerificationAlgorithm
impl Debug for KeyRejected
impl Debug for Unspecified
impl Debug for ring::hkdf::Algorithm
impl Debug for Prk
impl Debug for Salt
impl Debug for ring::hmac::Algorithm
impl Debug for ring::hmac::Context
impl Debug for ring::hmac::Key
impl Debug for Tag
impl Debug for SystemRandom
impl Debug for KeyPair
impl Debug for ring::rsa::public_key::PublicKey
impl Debug for RsaParameters
impl Debug for rustix::backend::io::errno::Errno
impl Debug for DupFlags
impl Debug for FdFlags
impl Debug for ReadWriteFlags
impl Debug for rustix::pid::Pid
impl Debug for ControlModes
impl Debug for InputModes
impl Debug for LocalModes
impl Debug for OutputModes
impl Debug for SpecialCodeIndex
impl Debug for SpecialCodes
impl Debug for rustix::termios::types::Termios
impl Debug for Winsize
impl Debug for WantsVerifier
impl Debug for WantsVersions
impl Debug for DangerousClientConfigBuilder
impl Debug for rustls::client::client_conn::connection::ClientConnection
impl Debug for ClientConfig
impl Debug for ClientConnectionData
impl Debug for Resumption
impl Debug for EchConfig
impl Debug for EchGreaseConfig
impl Debug for ClientSessionMemoryCache
impl Debug for AlwaysResolvesClientRawPublicKeys
impl Debug for IoState
impl Debug for CompressionCacheInner
impl Debug for CompressionFailed
impl Debug for DecompressionFailed
impl Debug for InsufficientSizeError
impl Debug for UnsupportedOperationError
impl Debug for EncapsulatedSecret
impl Debug for HpkePublicKey
impl Debug for HpkeSuite
impl Debug for CertifiedKey
impl Debug for SingleCertAndKey
impl Debug for CryptoProvider
impl Debug for OutputLengthError
impl Debug for OtherError
impl Debug for NoKeyLog
impl Debug for KeyLogFile
impl Debug for DistinguishedName
impl Debug for OutboundOpaqueMessage
impl Debug for PrefixedPayload
impl Debug for PlainMessage
impl Debug for Tls12ClientSessionValue
impl Debug for Tls13ClientSessionValue
impl Debug for rustls::quic::connection::ClientConnection
impl Debug for rustls::quic::connection::ServerConnection
impl Debug for GetRandomFailed
impl Debug for WantsServerCert
impl Debug for ServerSessionMemoryCache
impl Debug for ResolvesServerCertUsingSni
impl Debug for AlwaysResolvesServerRawPublicKeys
impl Debug for NoServerSessionStorage
impl Debug for AcceptedAlert
impl Debug for rustls::server::server_conn::connection::ServerConnection
impl Debug for Accepted
impl Debug for ServerConfig
impl Debug for ServerConnectionData
impl Debug for TicketRotator
impl Debug for TicketSwitcher
impl Debug for DefaultTimeProvider
impl Debug for Tls12CipherSuite
impl Debug for Tls13CipherSuite
impl Debug for ClientCertVerified
impl Debug for DigitallySignedStruct
impl Debug for HandshakeSignatureValid
impl Debug for NoClientAuth
impl Debug for ServerCertVerified
impl Debug for SupportedProtocolVersion
impl Debug for RootCertStore
impl Debug for ClientCertVerifierBuilder
impl Debug for WebPkiClientVerifier
impl Debug for ServerCertVerifierBuilder
impl Debug for WebPkiServerVerifier
impl Debug for WebPkiSupportedAlgorithms
impl Debug for AlgorithmIdentifier
impl Debug for rustls_pki_types::server_name::AddrParseError
impl Debug for InvalidDnsNameError
impl Debug for rustls_pki_types::server_name::Ipv4Addr
impl Debug for rustls_pki_types::server_name::Ipv6Addr
impl Debug for Der<'_>
impl Debug for EchConfigListBytes<'_>
impl Debug for InvalidSignature
impl Debug for PrivatePkcs1KeyDer<'_>
impl Debug for PrivatePkcs8KeyDer<'_>
impl Debug for PrivateSec1KeyDer<'_>
impl Debug for UnixTime
impl Debug for m128
impl Debug for m128d
impl Debug for m128i
impl Debug for m256
impl Debug for m256d
impl Debug for m256i
impl Debug for IgnoredAny
impl Debug for serde_core::de::value::Error
impl Debug for serde_json::error::Error
impl Debug for serde_json::map::IntoIter
impl Debug for serde_json::map::IntoValues
impl Debug for serde_json::map::Map<String, Value>
impl Debug for Number
impl Debug for CompactFormatter
impl Debug for Handle
impl Debug for WithRawSiginfo
impl Debug for SignalOnly
impl Debug for SigId
impl Debug for WideBoolF32x4
impl Debug for WideBoolF32x8
impl Debug for WideBoolF64x4
impl Debug for WideF32x4
impl Debug for WideF32x8
impl Debug for WideF64x4
impl Debug for Buf
impl Debug for statrs::distribution::bernoulli::Bernoulli
impl Debug for statrs::distribution::beta::Beta
impl Debug for statrs::distribution::binomial::Binomial
impl Debug for Categorical
impl Debug for statrs::distribution::cauchy::Cauchy
impl Debug for Chi
impl Debug for statrs::distribution::chi_squared::ChiSquared
impl Debug for Dirac
impl Debug for DiscreteUniform
impl Debug for Empirical
impl Debug for Erlang
impl Debug for statrs::distribution::exponential::Exp
impl Debug for FisherSnedecor
impl Debug for statrs::distribution::gamma::Gamma
impl Debug for statrs::distribution::geometric::Geometric
impl Debug for statrs::distribution::gumbel::Gumbel
impl Debug for statrs::distribution::hypergeometric::Hypergeometric
impl Debug for InverseGamma
impl Debug for Laplace
impl Debug for statrs::distribution::log_normal::LogNormal
impl Debug for NegativeBinomial
impl Debug for statrs::distribution::normal::Normal
impl Debug for statrs::distribution::pareto::Pareto
impl Debug for statrs::distribution::poisson::Poisson
impl Debug for StudentsT
impl Debug for statrs::distribution::triangular::Triangular
impl Debug for statrs::distribution::uniform::Uniform
impl Debug for statrs::distribution::weibull::Weibull
impl Debug for InfinitePeriodic
impl Debug for InfiniteSawtooth
impl Debug for InfiniteSinusoidal
impl Debug for InfiniteSquare
impl Debug for InfiniteTriangle
impl Debug for Choice
impl Debug for CpuRefreshKind
impl Debug for DiskUsage
impl Debug for sysinfo::common::Gid
impl Debug for LoadAvg
impl Debug for MacAddr
impl Debug for sysinfo::common::Pid
impl Debug for ProcessRefreshKind
impl Debug for RefreshKind
impl Debug for sysinfo::common::Uid
impl Debug for sysinfo::common::User
impl Debug for sysinfo::linux::component::Component
impl Debug for Cpu
impl Debug for Disk
impl Debug for NetworkData
impl Debug for Networks
impl Debug for Process
impl Debug for sysinfo::linux::system::System
impl Debug for Buffer
impl Debug for BufferWriter
impl Debug for BufferedStandardStream
impl Debug for ColorChoiceParseError
impl Debug for ColorSpec
impl Debug for ParseColorError
impl Debug for StandardStream
impl Debug for CPCTemp
impl Debug for CPUInfo
impl Debug for CPUInfoDebug
impl Debug for CPUTemp
impl Debug for CPUTempDebug
impl Debug for tof_control::helper::ltb_type::LTBMoniData
impl Debug for LTBTemp
impl Debug for tof_control::helper::ltb_type::LTBThreshold
impl Debug for tof_control::helper::pa_type::PAMoniData
impl Debug for PAReadBias
impl Debug for PASetBias
impl Debug for PATemp
impl Debug for tof_control::helper::pb_type::PBMoniData
impl Debug for PBTemp
impl Debug for PBVcp
impl Debug for RBInfo
impl Debug for RBMag
impl Debug for tof_control::helper::rb_type::RBMoniData
impl Debug for RBPh
impl Debug for RBTemp
impl Debug for RBVcp
impl Debug for AllSwitchData
impl Debug for SwitchData
impl Debug for SwitchInfo
impl Debug for SwitchPort
impl Debug for TCPCTemp
impl Debug for TCPCVcp
impl Debug for RegisterError
impl Debug for RATMoniData
impl Debug for toml::de::Error
impl Debug for toml::map::Map<String, Value>
impl Debug for toml::ser::Error
impl Debug for toml_datetime::datetime::Date
impl Debug for Datetime
impl Debug for DatetimeParseError
impl Debug for toml_datetime::datetime::Time
impl Debug for Array
impl Debug for ArrayOfTables
impl Debug for toml_edit::de::Error
impl Debug for DocumentMut
impl Debug for TomlError
impl Debug for InlineTable
impl Debug for InternalString
impl Debug for toml_edit::key::Key
impl Debug for RawString
impl Debug for Decor
impl Debug for Repr
impl Debug for toml_edit::table::Table
impl Debug for ATerm
impl Debug for B0
impl Debug for B1
impl Debug for Z0
impl Debug for Equal
impl Debug for Greater
impl Debug for Less
impl Debug for UTerm
impl Debug for GraphemeCursor
impl Debug for untrusted::input::Input<'_>
The value is intentionally omitted from the output to avoid leaking secrets.
impl Debug for EndOfInput
impl Debug for untrusted::reader::Reader<'_>
Avoids writing the value or position to avoid creating a side channel,
though Reader
can’t avoid leaking the position via timing.
impl Debug for Agent
impl Debug for AgentBuilder
impl Debug for Transport
impl Debug for Proxy
impl Debug for ureq::request::Request
impl Debug for RequestUrl
impl Debug for Response
impl Debug for OpaqueOrigin
impl Debug for Url
Debug the serialization of this URL.
impl Debug for Utf8CharsError
impl Debug for CrlsRequired
impl Debug for OwnedCertRevocationList
impl Debug for OwnedRevokedCert
impl Debug for InvalidNameContext
impl Debug for UnsupportedSignatureAlgorithmContext
impl Debug for UnsupportedSignatureAlgorithmForPublicKeyContext
impl Debug for KeyPurposeId<'_>
impl Debug for KeyUsage
impl Debug for RequiredEkuNotFoundContext
impl Debug for f32x4
impl Debug for f32x8
impl Debug for f64x2
impl Debug for f64x4
impl Debug for i8x16
impl Debug for i8x32
impl Debug for i16x8
impl Debug for i16x16
impl Debug for i32x4
impl Debug for i32x8
impl Debug for i64x2
impl Debug for i64x4
impl Debug for u8x16
impl Debug for u8x32
impl Debug for u16x8
impl Debug for u16x16
impl Debug for u32x4
impl Debug for u32x8
impl Debug for u64x2
impl Debug for u64x4
impl Debug for EmptyError
impl Debug for BStr
impl Debug for winnow::stream::bytes::Bytes
impl Debug for winnow::stream::range::Range
impl Debug for LengthHint
impl Debug for Part
impl Debug for zerocopy::error::AllocError
impl Debug for AsciiProbeResult
impl Debug for CharULE
impl Debug for Index8
impl Debug for Index16
impl Debug for Index32
impl Debug for Message
impl Debug for CurveKeyPair
impl Debug for PollEvents
impl Debug for zmq_pollitem_t
impl Debug for RBCalibrationFlightT
impl Debug for RBCalibrationFlightV
impl Debug for RBCalibrations
impl Debug for RAT
impl Debug for ReadoutBoard
impl Debug for TofPaddle
impl Debug for TrackerStrip
impl Debug for TrackerStripCmnNoise
impl Debug for TrackerStripMask
impl Debug for TrackerStripPedestal
impl Debug for TrackerStripTransferFunction
impl Debug for RBEvent
impl Debug for RBEventHeader
impl Debug for RBWaveform
impl Debug for DataTypeIter
impl Debug for EventQualityIter
impl Debug for EventStatusIter
impl Debug for LTBThresholdIter
impl Debug for TriggerTypeIter
impl Debug for TofEvent
impl Debug for gondola_core::events::tof_hit::Peak
impl Debug for TofHit
impl Debug for TrackerHit
impl Debug for CRFrame
impl Debug for CRFrameObject
impl Debug for CRFrameObjectTypeIter
impl Debug for CRReader
impl Debug for IPBus
impl Debug for IPBusPacketTypeIter
impl Debug for DataSourceKindIter
impl Debug for TelemetryPacketReader
impl Debug for TofPacketReader
impl Debug for CPUMoniData
impl Debug for CPUMoniDataSeries
impl Debug for DataSinkHB
impl Debug for DataSinkHBSeries
impl Debug for EventBuilderHB
impl Debug for EventBuilderHBSeries
impl Debug for MasterTriggerHB
impl Debug for MasterTriggerHBSeries
impl Debug for gondola_core::monitoring::ltb_moni_data::LTBMoniData
impl Debug for LTBMoniDataSeries
impl Debug for MtbMoniData
impl Debug for MtbMoniDataSeries
impl Debug for gondola_core::monitoring::pa_moni_data::PAMoniData
impl Debug for PAMoniDataSeries
impl Debug for gondola_core::monitoring::pb_moni_data::PBMoniData
impl Debug for PBMoniDataSeries
impl Debug for gondola_core::monitoring::rb_moni_data::RBMoniData
impl Debug for RBMoniDataSeries
impl Debug for RunStatistics
impl Debug for TelemetryPacket
impl Debug for TelemetryPacketHeader
impl Debug for TelemetryPacketTypeIter
impl Debug for TofPacket
impl Debug for TofPacketTypeIter
impl Debug for TofAlertConfig
impl Debug for TofAlertManifest
impl Debug for TofCommand
impl Debug for TofCommandCodeIter
impl Debug for AnalysisEngineConfig
impl Debug for BuildStrategyIter
impl Debug for DataPublisherConfig
impl Debug for LTBThresholdConfig
impl Debug for PreampBiasConfig
impl Debug for RBChannelMaskConfig
impl Debug for RunConfig
impl Debug for TOFEventBuilderConfig
impl Debug for TofOperationModeIter
impl Debug for TofRBConfig
impl Debug for TofRunConfig
impl Debug for TriggerConfig
impl Debug for TofCuts
impl Debug for TofDetectorStatus
impl Debug for RBPaddleID
impl Debug for AnalysisEngineSettings
impl Debug for ChannelMaskSettings
impl Debug for CommandDispatcherSettings
impl Debug for DataPublisherSettings
impl Debug for LTBThresholdSettings
impl Debug for LiftofRBConfig
impl Debug for LiftofSettings
impl Debug for MTBSettings
impl Debug for PreampSettings
impl Debug for RBSettings
impl Debug for TofEventBuilderSettings
impl Debug for ThreadControl
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for FileTimes
impl Debug for gondola_core::prelude::fs::FileType
impl Debug for gondola_core::prelude::fs::Metadata
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for BorrowedBuf<'_>
impl Debug for gondola_core::prelude::io::Empty
impl Debug for gondola_core::prelude::io::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for gondola_core::prelude::io::Repeat
impl Debug for Sink
impl Debug for Stderr
impl Debug for StderrLock<'_>
impl Debug for Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdout
impl Debug for StdoutLock<'_>
impl Debug for WriterPanicked
impl Debug for gondola_core::prelude::Duration
impl Debug for File
impl Debug for Instant
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");
impl Debug for OpenOptions
impl Debug for Path
impl Debug for ProgressBar
impl Debug for gondola_core::prelude::Regex
impl Debug for UdpSocket
impl Debug for Utc
impl Debug for f16
impl Debug for AccessError
impl Debug for gondola_core::prelude::thread::Builder
impl Debug for gondola_core::prelude::thread::Scope<'_, '_>
impl Debug for Thread
impl Debug for ThreadId
impl Debug for Global
impl Debug for ByteString
impl Debug for UnorderedKeyError
impl Debug for alloc::collections::TryReserveError
impl Debug for CString
Delegates to the CStr
implementation of fmt::Debug
,
showing invalid UTF-8 as hex escapes.
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for alloc::string::Drain<'_>
impl Debug for alloc::string::FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for String
impl Debug for Layout
impl Debug for LayoutError
impl Debug for core::alloc::AllocError
impl Debug for TypeId
impl Debug for TryFromSliceError
impl Debug for core::ascii::EscapeDefault
impl Debug for ByteStr
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for ParseCharError
impl Debug for DecodeUtf16Error
impl Debug for core::char::EscapeDebug
impl Debug for core::char::EscapeDefault
impl Debug for core::char::EscapeUnicode
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for CpuidResult
impl Debug for __m128
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128h
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for core::core_arch::x86::bf16
impl Debug for CStr
Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
impl Debug for FromBytesUntilNulError
impl Debug for SipHasher
impl Debug for PhantomPinned
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for Assume
impl Debug for core::net::ip_addr::Ipv4Addr
impl Debug for core::net::ip_addr::Ipv6Addr
impl Debug for core::net::parser::AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for core::num::dec2flt::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for Location<'_>
impl Debug for PanicMessage<'_>
impl Debug for core::ptr::alignment::Alignment
impl Debug for ParseBoolError
impl Debug for core::str::error::Utf8Error
impl Debug for core::str::iter::Chars<'_>
impl Debug for core::str::iter::EncodeUtf16<'_>
impl Debug for Utf8Chunks<'_>
impl Debug for core::sync::atomic::AtomicBool
impl Debug for core::sync::atomic::AtomicI8
impl Debug for core::sync::atomic::AtomicI16
impl Debug for core::sync::atomic::AtomicI32
impl Debug for core::sync::atomic::AtomicI64
impl Debug for core::sync::atomic::AtomicIsize
impl Debug for core::sync::atomic::AtomicU8
impl Debug for core::sync::atomic::AtomicU16
impl Debug for core::sync::atomic::AtomicU32
impl Debug for core::sync::atomic::AtomicU64
impl Debug for core::sync::atomic::AtomicUsize
impl Debug for core::task::wake::Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for TryFromFloatSecsError
impl Debug for std::alloc::System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for OsStr
impl Debug for OsString
impl Debug for DefaultHasher
impl Debug for RandomState
impl Debug for IntoIncoming
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for BorrowedFd<'_>
impl Debug for OwnedFd
impl Debug for PidFd
impl Debug for std::os::unix::net::addr::SocketAddr
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for UCred
impl Debug for Components<'_>
impl Debug for std::path::Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for NormalizeError
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for std::process::Output
impl Debug for Stdio
impl Debug for DefaultRandomSource
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for std::sync::mpsc::RecvError
impl Debug for WouldBlock
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for std::sync::poison::condvar::WaitTimeoutResult
impl Debug for std::sync::poison::once::Once
impl Debug for std::sync::poison::once::OnceState
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for Hc128Core
impl Debug for rand_hc::hc128::Hc128Rng
impl Debug for Isaac64Core
impl Debug for rand_isaac::isaac64::Isaac64Rng
impl Debug for IsaacCore
impl Debug for rand_isaac::isaac::IsaacRng
impl Debug for JitterRng
impl Debug for rand_os::OsRng
impl Debug for Lcg64Xsh32
impl Debug for Mcg128Xsl64
impl Debug for rand_xorshift::XorShiftRng
impl Debug for Arguments<'_>
impl Debug for gondola_core::prelude::fmt::Error
impl Debug for FormattingOptions
impl Debug for __c_anonymous_sockaddr_can_can_addr
impl Debug for __c_anonymous_ptrace_syscall_info_data
impl Debug for __c_anonymous_ifc_ifcu
impl Debug for __c_anonymous_ifr_ifru
impl Debug for __c_anonymous_iwreq
impl Debug for __c_anonymous_ptp_perout_request_1
impl Debug for __c_anonymous_ptp_perout_request_2
impl Debug for __c_anonymous_xsk_tx_metadata_union
impl Debug for iwreq_data
impl Debug for tpacket_bd_header_u
impl Debug for tpacket_req_u
impl Debug for Prefix
impl Debug for dyn DatabaseErrorInformation + Sync + Send
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Sync + Send
impl<'a> Debug for chrono::format::Item<'a>
impl<'a> Debug for InstrumentationEvent<'a>
impl<'a> Debug for FcntlArg<'a>
impl<'a> Debug for ControlMessage<'a>
impl<'a> Debug for rand::seq::index::IndexVecIter<'a>
impl<'a> Debug for rand::seq::index::IndexVecIter<'a>
impl<'a> Debug for OutboundChunks<'a>
impl<'a> Debug for PrivateKeyDer<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for snmp::Value<'a>
impl<'a> Debug for CertRevocationList<'a>
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for std::path::Component<'a>
impl<'a> Debug for std::path::Prefix<'a>
impl<'a> Debug for StrftimeItems<'a>
impl<'a> Debug for TermFeatures<'a>
impl<'a> Debug for MigrationVersion<'a>
impl<'a> Debug for SqliteBindValue<'a>
impl<'a> Debug for Env<'a>
impl<'a> Debug for ByteSerialize<'a>
impl<'a> Debug for CanonicalCombiningClassMapBorrowed<'a>
impl<'a> Debug for CanonicalCompositionBorrowed<'a>
impl<'a> Debug for CanonicalDecompositionBorrowed<'a>
impl<'a> Debug for ComposingNormalizerBorrowed<'a>
impl<'a> Debug for DecomposingNormalizerBorrowed<'a>
impl<'a> Debug for Uts46MapperBorrowed<'a>
impl<'a> Debug for CodePointSetDataBorrowed<'a>
impl<'a> Debug for EmojiSetDataBorrowed<'a>
impl<'a> Debug for ScriptExtensionsSet<'a>
impl<'a> Debug for ScriptWithExtensionsBorrowed<'a>
impl<'a> Debug for DataIdentifierBorrowed<'a>
impl<'a> Debug for DataRequest<'a>
impl<'a> Debug for log::Metadata<'a>
impl<'a> Debug for MetadataBuilder<'a>
impl<'a> Debug for Record<'a>
impl<'a> Debug for RecordBuilder<'a>
impl<'a> Debug for InterfacesIter<'a>
impl<'a> Debug for AioCb<'a>
impl<'a> Debug for LioCb<'a>
impl<'a> Debug for LioCbBuilder<'a>
impl<'a> Debug for Fds<'a>
impl<'a> Debug for CmsgIterator<'a>
impl<'a> Debug for RecvMsg<'a>
impl<'a> Debug for PercentDecode<'a>
impl<'a> Debug for PercentEncode<'a>
impl<'a> Debug for rayon::string::Drain<'a>
impl<'a> Debug for BroadcastContext<'a>
impl<'a> Debug for regex::regexset::bytes::SetMatchesIter<'a>
impl<'a> Debug for regex::regexset::string::SetMatchesIter<'a>
impl<'a> Debug for PatternIter<'a>
impl<'a> Debug for ByteClassElements<'a>
impl<'a> Debug for ByteClassIter<'a>
impl<'a> Debug for ByteClassRepresentatives<'a>
impl<'a> Debug for CapturesPatternIter<'a>
impl<'a> Debug for GroupInfoAllNames<'a>
impl<'a> Debug for GroupInfoPatternNames<'a>
impl<'a> Debug for DebugHaystack<'a>
impl<'a> Debug for PatternSetIter<'a>
impl<'a> Debug for ClassBytesIter<'a>
impl<'a> Debug for ClassUnicodeIter<'a>
impl<'a> Debug for DangerousClientConfig<'a>
impl<'a> Debug for FfdheGroup<'a>
impl<'a> Debug for InboundPlainMessage<'a>
impl<'a> Debug for OutboundPlainMessage<'a>
impl<'a> Debug for ClientHello<'a>
impl<'a> Debug for DnsName<'a>
impl<'a> Debug for CertificateDer<'a>
impl<'a> Debug for CertificateRevocationListDer<'a>
impl<'a> Debug for CertificateSigningRequestDer<'a>
impl<'a> Debug for SubjectPublicKeyInfoDer<'a>
impl<'a> Debug for TrustAnchor<'a>
impl<'a> Debug for serde_json::map::Iter<'a>
impl<'a> Debug for serde_json::map::IterMut<'a>
impl<'a> Debug for serde_json::map::Keys<'a>
impl<'a> Debug for serde_json::map::Values<'a>
impl<'a> Debug for serde_json::map::ValuesMut<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for AsnReader<'a>
impl<'a> Debug for ObjectIdentifier<'a>
impl<'a> Debug for SnmpPdu<'a>
impl<'a> Debug for Varbinds<'a>
impl<'a> Debug for HyperlinkSpec<'a>
impl<'a> Debug for StandardStreamLock<'a>
impl<'a> Debug for GraphemeIndices<'a>
impl<'a> Debug for Graphemes<'a>
impl<'a> Debug for USentenceBoundIndices<'a>
impl<'a> Debug for USentenceBounds<'a>
impl<'a> Debug for UnicodeSentences<'a>
impl<'a> Debug for UWordBoundIndices<'a>
impl<'a> Debug for UWordBounds<'a>
impl<'a> Debug for UnicodeWordIndices<'a>
impl<'a> Debug for UnicodeWords<'a>
impl<'a> Debug for PathSegmentsMut<'a>
impl<'a> Debug for UrlQuery<'a>
impl<'a> Debug for Utf8CharIndices<'a>
impl<'a> Debug for ErrorReportingUtf8Chars<'a>
impl<'a> Debug for Utf8Chars<'a>
impl<'a> Debug for RevocationOptions<'a>
impl<'a> Debug for RevocationOptionsBuilder<'a>
impl<'a> Debug for BorrowedCertRevocationList<'a>
impl<'a> Debug for BorrowedRevokedCert<'a>
impl<'a> Debug for RawPublicKeyEntity<'a>
impl<'a> Debug for ZeroAsciiIgnoreCaseTrieCursor<'a>
impl<'a> Debug for ZeroTrieSimpleAsciiCursor<'a>
impl<'a> Debug for TofAlert<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for core::error::Request<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for core::str::iter::Bytes<'a>
impl<'a> Debug for core::str::iter::CharIndices<'a>
impl<'a> Debug for core::str::iter::EscapeDebug<'a>
impl<'a> Debug for core::str::iter::EscapeDefault<'a>
impl<'a> Debug for core::str::iter::EscapeUnicode<'a>
impl<'a> Debug for core::str::iter::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for core::str::iter::SplitAsciiWhitespace<'a>
impl<'a> Debug for core::str::iter::SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'f> Debug for VaList<'a, 'f>where
'f: 'a,
impl<'a, 'h> Debug for aho_corasick::ahocorasick::FindIter<'a, 'h>
impl<'a, 'h> Debug for aho_corasick::ahocorasick::FindOverlappingIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::TwoIter<'a, 'h>
impl<'a, 'h, A> Debug for aho_corasick::automaton::FindIter<'a, 'h, A>where
A: Debug,
impl<'a, 'h, A> Debug for aho_corasick::automaton::FindOverlappingIter<'a, 'h, A>where
A: Debug,
impl<'a, A> Debug for core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, A, R> Debug for aho_corasick::automaton::StreamFindIter<'a, A, R>
impl<'a, C, T> Debug for Stream<'a, C, T>
impl<'a, D, R, T> Debug for rand::distributions::DistIter<'a, D, R, T>
impl<'a, DB> Debug for diesel::serialize::Output<'a, '_, DB>
impl<'a, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
impl<'a, E> Debug for StrDeserializer<'a, E>
impl<'a, I> Debug for RecvMmsgData<'a, I>
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I, A> Debug for alloc::vec::splice::Splice<'a, I, A>
impl<'a, I, C> Debug for SendMmsgData<'a, I, C>
impl<'a, K0, K1, V> Debug for ZeroMap2dBorrowed<'a, K0, K1, V>
impl<'a, K0, K1, V> Debug for ZeroMap2d<'a, K0, K1, V>
impl<'a, K, V> Debug for rayon::collections::btree_map::Iter<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::btree_map::IterMut<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::Drain<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::Iter<'a, K, V>
impl<'a, K, V> Debug for rayon::collections::hash_map::IterMut<'a, K, V>
impl<'a, K, V> Debug for ZeroMapBorrowed<'a, K, V>
impl<'a, K, V> Debug for ZeroMap<'a, K, V>
impl<'a, L> Debug for Okm<'a, L>
impl<'a, P> Debug for core::str::iter::MatchIndices<'a, P>
impl<'a, P> Debug for core::str::iter::Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for core::str::iter::RSplit<'a, P>
impl<'a, P> Debug for core::str::iter::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for core::str::iter::Split<'a, P>
impl<'a, P> Debug for core::str::iter::SplitInclusive<'a, P>
impl<'a, P> Debug for core::str::iter::SplitN<'a, P>
impl<'a, P> Debug for core::str::iter::SplitTerminator<'a, P>
impl<'a, R> Debug for aho_corasick::ahocorasick::StreamFindIter<'a, R>where
R: Debug,
impl<'a, R> Debug for regex::regex::bytes::ReplacerRef<'a, R>
impl<'a, R> Debug for regex::regex::string::ReplacerRef<'a, R>
impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T>
impl<'a, R, T> Debug for lock_api::mutex::MappedMutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::mutex::MutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockWriteGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockWriteGuard<'a, R, T>
impl<'a, S, T> Debug for rand::seq::SliceChooseIter<'a, S, T>
impl<'a, S, T> Debug for rand::seq::SliceChooseIter<'a, S, T>
impl<'a, T> Debug for StyledValue<'a, T>where
T: Debug,
impl<'a, T> Debug for CodePointMapDataBorrowed<'a, T>
impl<'a, T> Debug for PropertyNamesLongBorrowed<'a, T>where
T: Debug + NamedEnumeratedProperty,
<T as NamedEnumeratedProperty>::DataStructLongBorrowed<'a>: Debug,
impl<'a, T> Debug for PropertyNamesShortBorrowed<'a, T>where
T: Debug + NamedEnumeratedProperty,
<T as NamedEnumeratedProperty>::DataStructShortBorrowed<'a>: Debug,
impl<'a, T> Debug for PropertyParserBorrowed<'a, T>where
T: Debug,
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for rand::distributions::slice::Slice<'a, T>where
T: Debug,
impl<'a, T> Debug for WeightedChoice<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for rayon::collections::binary_heap::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::binary_heap::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::btree_set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::hash_set::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::hash_set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::linked_list::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::linked_list::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::collections::vec_deque::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::option::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::option::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::result::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rayon::result::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for smallvec::Drain<'a, T>
impl<'a, T> Debug for DerIterator<'a, T>where
T: Debug,
impl<'a, T> Debug for ZeroSliceIter<'a, T>
impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T, A> Debug for alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, F> Debug for PoolGuard<'a, T, F>
impl<'a, T, F> Debug for VarZeroSliceIter<'a, T, F>
impl<'a, T, I> Debug for Ptr<'a, T, I>where
T: 'a + ?Sized,
I: Invariants,
impl<'a, T, P> Debug for core::slice::iter::ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for core::slice::iter::ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, R, C, RStride, CStride> Debug for ViewStorage<'a, T, R, C, RStride, CStride>
impl<'a, T, R, C, RStride, CStride> Debug for ViewStorageMut<'a, T, R, C, RStride, CStride>
impl<'a, T, R, C, S> Debug for ColumnIter<'a, T, R, C, S>
impl<'a, T, R, C, S> Debug for ColumnIterMut<'a, T, R, C, S>
impl<'a, T, R, C, S> Debug for MatrixIter<'a, T, R, C, S>where
T: Debug,
R: Debug + Dim,
C: Debug + Dim,
S: Debug + 'a + RawStorage<T, R, C>,
<S as RawStorage<T, R, C>>::RStride: Debug,
<S as RawStorage<T, R, C>>::CStride: Debug,
impl<'a, T, R, C, S> Debug for MatrixIterMut<'a, T, R, C, S>where
T: Debug,
R: Debug + Dim,
C: Debug + Dim,
S: Debug + 'a + RawStorageMut<T, R, C>,
<S as RawStorage<T, R, C>>::RStride: Debug,
<S as RawStorage<T, R, C>>::CStride: Debug,
impl<'a, T, R, C, S> Debug for RowIter<'a, T, R, C, S>
impl<'a, T, R, C, S> Debug for RowIterMut<'a, T, R, C, S>
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, V> Debug for VarZeroCow<'a, V>
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'c, 'h> Debug for regex::regex::bytes::SubCaptureMatches<'c, 'h>
impl<'c, 'h> Debug for regex::regex::string::SubCaptureMatches<'c, 'h>
impl<'c, 'i, Data> Debug for UnbufferedStatus<'c, 'i, Data>where
Data: Debug,
impl<'ch> Debug for rayon::str::Bytes<'ch>
impl<'ch> Debug for rayon::str::CharIndices<'ch>
impl<'ch> Debug for rayon::str::Chars<'ch>
impl<'ch> Debug for rayon::str::EncodeUtf16<'ch>
impl<'ch> Debug for rayon::str::Lines<'ch>
impl<'ch> Debug for rayon::str::SplitAsciiWhitespace<'ch>
impl<'ch> Debug for rayon::str::SplitWhitespace<'ch>
impl<'ch, P> Debug for rayon::str::MatchIndices<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::Matches<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::Split<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::SplitInclusive<'ch, P>where
P: Debug + Pattern,
impl<'ch, P> Debug for rayon::str::SplitTerminator<'ch, P>where
P: Debug + Pattern,
impl<'d> Debug for nix::dir::Iter<'d>
impl<'data> Debug for PropertyCodePointSet<'data>
impl<'data> Debug for PropertyUnicodeSet<'data>
impl<'data> Debug for Char16Trie<'data>
impl<'data> Debug for CodePointInversionList<'data>
impl<'data> Debug for CodePointInversionListAndStringList<'data>
impl<'data> Debug for CanonicalCompositions<'data>
impl<'data> Debug for DecompositionData<'data>
impl<'data> Debug for DecompositionTables<'data>
impl<'data> Debug for NonRecursiveDecompositionSupplement<'data>
impl<'data> Debug for PropertyEnumToValueNameLinearMap<'data>
impl<'data> Debug for PropertyEnumToValueNameSparseMap<'data>
impl<'data> Debug for PropertyScriptToIcuScriptMap<'data>
impl<'data> Debug for PropertyValueNameToEnumMap<'data>
impl<'data> Debug for ScriptWithExtensionsProperty<'data>
impl<'data, I> Debug for Composition<'data, I>
impl<'data, I> Debug for Decomposition<'data, I>
impl<'data, T> Debug for PropertyCodePointMap<'data, T>
impl<'data, T> Debug for rayon::slice::chunks::Chunks<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksExact<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksExactMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::chunks::ChunksMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunks<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExact<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::rchunks::RChunksExactMut<'data, T>
impl<'data, T> Debug for rayon::slice::rchunks::RChunksMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::Iter<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::IterMut<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::slice::Windows<'data, T>where
T: Debug,
impl<'data, T> Debug for rayon::vec::Drain<'data, T>
impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>
impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>
impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
impl<'e, E, R> Debug for DecoderReader<'e, E, R>
impl<'e, E, W> Debug for EncoderWriter<'e, E, W>
impl<'f> Debug for VaListImpl<'f>
impl<'h> Debug for aho_corasick::util::search::Input<'h>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'h> Debug for regex::regex::bytes::Captures<'h>
impl<'h> Debug for regex::regex::bytes::Match<'h>
impl<'h> Debug for regex::regex::string::Captures<'h>
impl<'h> Debug for regex::regex::string::Match<'h>
impl<'h> Debug for regex_automata::util::iter::Searcher<'h>
impl<'h> Debug for regex_automata::util::search::Input<'h>
impl<'h, 'n> Debug for memchr::memmem::FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'h, F> Debug for CapturesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for HalfMatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for MatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for TryCapturesIter<'h, F>
impl<'h, F> Debug for TryHalfMatchesIter<'h, F>
impl<'h, F> Debug for TryMatchesIter<'h, F>
impl<'k> Debug for KeyMut<'k>
impl<'l, 'a, K0, K1, V> Debug for ZeroMap2dCursor<'l, 'a, K0, K1, V>
impl<'n> Debug for memchr::memmem::Finder<'n>
impl<'n> Debug for memchr::memmem::FinderRev<'n>
impl<'r> Debug for regex::regex::bytes::CaptureNames<'r>
impl<'r> Debug for regex::regex::string::CaptureNames<'r>
impl<'r, 'c, 'h> Debug for regex_automata::hybrid::regex::FindMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for TryCapturesMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for TryFindMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for regex_automata::nfa::thompson::pikevm::CapturesMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for regex_automata::nfa::thompson::pikevm::FindMatches<'r, 'c, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::Matches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::Split<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::SplitN<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::Matches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::Split<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::SplitN<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::CapturesMatches<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::FindMatches<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::Split<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::SplitN<'r, 'h>
impl<'s> Debug for regex::regex::bytes::NoExpand<'s>
impl<'s> Debug for regex::regex::string::NoExpand<'s>
impl<'s> Debug for TomlKey<'s>
impl<'s> Debug for TomlKeyBuilder<'s>
impl<'s> Debug for TomlString<'s>
impl<'s> Debug for TomlStringBuilder<'s>
impl<'s, 'h> Debug for aho_corasick::packed::api::FindIter<'s, 'h>
impl<'scope> Debug for rayon_core::scope::Scope<'scope>
impl<'scope> Debug for ScopeFifo<'scope>
impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env>
impl<'scope, T> Debug for gondola_core::prelude::thread::ScopedJoinHandle<'scope, T>
impl<'trie, T> Debug for CodePointTrie<'trie, T>
impl<A> Debug for ExtendedGcd<A>where
A: Debug,
impl<A> Debug for Aad<A>where
A: Debug,
impl<A> Debug for EnumAccessDeserializer<A>where
A: Debug,
impl<A> Debug for MapAccessDeserializer<A>where
A: Debug,
impl<A> Debug for SeqAccessDeserializer<A>where
A: Debug,
impl<A> Debug for smallvec::IntoIter<A>
impl<A> Debug for SmallVec<A>
impl<A> Debug for core::iter::sources::repeat::Repeat<A>where
A: Debug,
impl<A> Debug for core::iter::sources::repeat_n::RepeatN<A>where
A: Debug,
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for IterRange<A>where
A: Debug,
impl<A> Debug for IterRangeFrom<A>where
A: Debug,
impl<A> Debug for IterRangeInclusive<A>where
A: Debug,
impl<A, B> Debug for rayon::iter::chain::Chain<A, B>
impl<A, B> Debug for rayon::iter::zip::Zip<A, B>
impl<A, B> Debug for ZipEq<A, B>
impl<A, B> Debug for Tuple2ULE<A, B>
impl<A, B> Debug for VarTuple<A, B>
impl<A, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for core::iter::adapters::zip::Zip<A, B>
impl<A, B, C> Debug for Tuple3ULE<A, B, C>
impl<A, B, C, D> Debug for Tuple4ULE<A, B, C, D>
impl<A, B, C, D, E> Debug for Tuple5ULE<A, B, C, D, E>
impl<A, B, C, D, E, F> Debug for Tuple6ULE<A, B, C, D, E, F>
impl<A, B, C, D, E, F, Format> Debug for Tuple6VarULE<A, B, C, D, E, F, Format>
impl<A, B, C, D, E, Format> Debug for Tuple5VarULE<A, B, C, D, E, Format>
impl<A, B, C, D, Format> Debug for Tuple4VarULE<A, B, C, D, Format>
impl<A, B, C, Format> Debug for Tuple3VarULE<A, B, C, Format>
impl<A, B, Format> Debug for Tuple2VarULE<A, B, Format>
impl<A, S, V> Debug for ConvertError<A, S, V>
impl<A, V> Debug for VarTupleULE<A, V>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for bitflags::traits::Flag<B>where
B: Debug,
impl<B> Debug for ring::agreement::UnparsedPublicKey<B>
impl<B> Debug for PublicKeyComponents<B>where
B: Debug,
impl<B> Debug for ring::signature::UnparsedPublicKey<B>
impl<B> Debug for gondola_core::prelude::io::Lines<B>where
B: Debug,
impl<B> Debug for gondola_core::prelude::io::Split<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>
impl<B, T> Debug for AlignAs<B, T>
impl<C0, C1> Debug for EitherCart<C0, C1>
impl<C> Debug for ContextError<C>where
C: Debug,
impl<C> Debug for CartableOptionPointer<C>
impl<C, T> Debug for StreamOwned<C, T>
impl<Child> Debug for TryGroupedByError<Child>where
Child: Debug,
impl<D> Debug for StyledObject<D>where
D: Debug,
impl<D> Debug for PrintStyledContent<D>
impl<D> Debug for StyledContent<D>
impl<D> Debug for PermutationSequence<D>
impl<D> Debug for statrs::distribution::dirichlet::Dirichlet<D>
impl<D> Debug for Multinomial<D>
impl<D> Debug for MultivariateNormal<D>
impl<D> Debug for MultivariateStudent<D>
impl<D> Debug for statrs::statistics::slice_statistics::Data<D>where
D: Debug,
impl<D, F, T, S> Debug for DistMap<D, F, T, S>
impl<D, R, T> Debug for rand::distributions::distribution::DistIter<D, R, T>
impl<D, S> Debug for rayon::iter::splitter::Split<D, S>where
D: Debug,
impl<DB> Debug for RawBytesBindCollector<DB>
impl<Data> Debug for ConnectionState<'_, '_, Data>
impl<DataStruct> Debug for ErasedMarker<DataStruct>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for ErrMode<E>where
E: Debug,
impl<E> Debug for num_complex::ParseComplexError<E>where
E: Debug,
impl<E> Debug for num_complex::ParseComplexError<E>where
E: Debug,
impl<E> Debug for BoolDeserializer<E>
impl<E> Debug for CharDeserializer<E>
impl<E> Debug for F32Deserializer<E>
impl<E> Debug for F64Deserializer<E>
impl<E> Debug for I8Deserializer<E>
impl<E> Debug for I16Deserializer<E>
impl<E> Debug for I32Deserializer<E>
impl<E> Debug for I64Deserializer<E>
impl<E> Debug for I128Deserializer<E>
impl<E> Debug for IsizeDeserializer<E>
impl<E> Debug for StringDeserializer<E>
impl<E> Debug for U8Deserializer<E>
impl<E> Debug for U16Deserializer<E>
impl<E> Debug for U32Deserializer<E>
impl<E> Debug for U64Deserializer<E>
impl<E> Debug for U128Deserializer<E>
impl<E> Debug for UnitDeserializer<E>
impl<E> Debug for UsizeDeserializer<E>
impl<E> Debug for signal_hook::iterator::backend::Pending<E>where
E: Debug + Exfiltrator,
impl<E> Debug for SignalsInfo<E>
impl<E> Debug for Report<E>
impl<F> Debug for rand_distr::cauchy::Cauchy<F>
impl<F> Debug for rand_distr::exponential::Exp<F>
impl<F> Debug for Frechet<F>
impl<F> Debug for rand_distr::gamma::Beta<F>
impl<F> Debug for rand_distr::gamma::ChiSquared<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Debug for rand_distr::gamma::FisherF<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Debug for rand_distr::gamma::Gamma<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Debug for rand_distr::gamma::StudentT<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Debug for rand_distr::gumbel::Gumbel<F>
impl<F> Debug for InverseGaussian<F>
impl<F> Debug for rand_distr::normal::LogNormal<F>
impl<F> Debug for rand_distr::normal::Normal<F>
impl<F> Debug for NormalInverseGaussian<F>
impl<F> Debug for rand_distr::pareto::Pareto<F>
impl<F> Debug for Pert<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Debug for rand_distr::poisson::Poisson<F>
impl<F> Debug for SkewNormal<F>
impl<F> Debug for rand_distr::triangular::Triangular<F>
impl<F> Debug for rand_distr::weibull::Weibull<F>
impl<F> Debug for Zeta<F>
impl<F> Debug for Zipf<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for core::iter::sources::from_fn::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for RepeatWith<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for gondola_core::prelude::fmt::FromFn<F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<F> Debug for NumberPrefix<F>where
F: Debug,
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<I> Debug for DelayedFormat<I>where
I: Debug,
impl<I> Debug for OffsetFollowing<I>where
I: Debug,
impl<I> Debug for ExponentialBlocks<I>where
I: Debug,
impl<I> Debug for UniformBlocks<I>where
I: Debug,
impl<I> Debug for rayon::iter::chunks::Chunks<I>where
I: Debug,
impl<I> Debug for rayon::iter::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for rayon::iter::copied::Copied<I>where
I: Debug,
impl<I> Debug for rayon::iter::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for rayon::iter::flatten::Flatten<I>where
I: Debug,
impl<I> Debug for FlattenIter<I>where
I: Debug,
impl<I> Debug for rayon::iter::intersperse::Intersperse<I>
impl<I> Debug for MaxLen<I>where
I: Debug,
impl<I> Debug for MinLen<I>where
I: Debug,
impl<I> Debug for PanicFuse<I>where
I: Debug,
impl<I> Debug for rayon::iter::rev::Rev<I>where
I: Debug,
impl<I> Debug for rayon::iter::skip::Skip<I>where
I: Debug,
impl<I> Debug for SkipAny<I>where
I: Debug,
impl<I> Debug for rayon::iter::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for rayon::iter::take::Take<I>where
I: Debug,
impl<I> Debug for TakeAny<I>where
I: Debug,
impl<I> Debug for WhileSome<I>where
I: Debug,
impl<I> Debug for InputError<I>
impl<I> Debug for TreeErrorBase<I>where
I: Debug,
impl<I> Debug for LocatingSlice<I>where
I: Debug,
impl<I> Debug for Partial<I>where
I: Debug,
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for core::iter::adapters::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::copied::Copied<I>where
I: Debug,
impl<I> Debug for Cycle<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for Fuse<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::intersperse::Intersperse<I>
impl<I> Debug for Peekable<I>
impl<I> Debug for core::iter::adapters::skip::Skip<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<I, C> Debug for TreeError<I, C>
impl<I, C> Debug for TreeErrorFrame<I, C>
impl<I, C> Debug for TreeErrorContext<I, C>
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, E> Debug for winnow::error::ParseError<I, E>
impl<I, F> Debug for rayon::iter::flat_map::FlatMap<I, F>where
I: Debug,
impl<I, F> Debug for FlatMapIter<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::inspect::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for rayon::iter::map::Map<I, F>where
I: Debug,
impl<I, F> Debug for Update<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::filter_map::FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::inspect::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::map::Map<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for IntersperseWith<I, G>
impl<I, ID, F> Debug for Fold<I, ID, F>where
I: Debug,
impl<I, ID, F> Debug for FoldChunks<I, ID, F>where
I: Debug,
impl<I, INIT, F> Debug for MapInit<I, INIT, F>where
I: Debug,
impl<I, J> Debug for Interleave<I, J>
impl<I, J> Debug for InterleaveShortest<I, J>
impl<I, K, V, S> Debug for indexmap::map::iter::Splice<'_, I, K, V, S>
impl<I, P> Debug for rayon::iter::filter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for rayon::iter::filter_map::FilterMap<I, P>where
I: Debug,
impl<I, P> Debug for Positions<I, P>where
I: Debug,
impl<I, P> Debug for SkipAnyWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeAnyWhile<I, P>where
I: Debug,
impl<I, P> Debug for core::iter::adapters::filter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeWhile<I, P>where
I: Debug,
impl<I, S> Debug for Stateful<I, S>
impl<I, St, F> Debug for Scan<I, St, F>
impl<I, T, F> Debug for MapWith<I, T, F>
impl<I, T, S> Debug for indexmap::set::iter::Splice<'_, I, T, S>
impl<I, U> Debug for core::iter::adapters::flatten::Flatten<I>
impl<I, U, F> Debug for FoldWith<I, U, F>
impl<I, U, F> Debug for FoldChunksWith<I, U, F>
impl<I, U, F> Debug for TryFoldWith<I, U, F>
impl<I, U, F> Debug for core::iter::adapters::flatten::FlatMap<I, U, F>
impl<I, const N: usize> Debug for ArrayChunks<I, N>
impl<Idx> Debug for core::ops::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Inner> Debug for SqlQuery<Inner>where
Inner: Debug,
impl<Iter> Debug for IterBridge<Iter>where
Iter: Debug,
impl<K> Debug for hashbrown::set::Iter<'_, K>where
K: Debug,
impl<K> Debug for alloc::collections::btree::set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Drain<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::IntoIter<K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for hashbrown::set::Drain<'_, K, A>where
K: Debug,
A: Allocator,
impl<K, A> Debug for hashbrown::set::IntoIter<K, A>where
K: Debug,
A: Allocator,
impl<K, A> Debug for alloc::collections::btree::set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, F> Debug for std::collections::hash::set::ExtractIf<'_, K, F>where
K: Debug,
impl<K, Q, V, S, A> Debug for EntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for VacantEntryRef<'_, '_, K, Q, V, S, A>
impl<K, V> Debug for indexmap::map::core::entry::Entry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for hashbrown::map::Iter<'_, K, V>
impl<K, V> Debug for hashbrown::map::IterMut<'_, K, V>
impl<K, V> Debug for hashbrown::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for hashbrown::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashbrown::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for IndexedEntry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::entry::OccupiedEntry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::entry::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::Drain<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::IntoIter<K, V>
impl<K, V> Debug for indexmap::map::iter::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::iter::Iter<'_, K, V>
impl<K, V> Debug for IterMut2<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::IterMut<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::iter::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::slice::Slice<K, V>
impl<K, V> Debug for rayon::collections::btree_map::IntoIter<K, V>
impl<K, V> Debug for rayon::collections::hash_map::IntoIter<K, V>
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Drain<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for hashbrown::map::Drain<'_, K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoIter<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoValues<K, V, A>where
V: Debug,
A: Allocator,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>
impl<K, V, F> Debug for indexmap::map::iter::ExtractIf<'_, K, V, F>
impl<K, V, F> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F>
impl<K, V, R, F, A> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S> Debug for RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for litemap::map::Entry<'_, K, V, S>
impl<K, V, S> Debug for RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for RawVacantEntryMut<'_, K, V, S>
impl<K, V, S> Debug for IndexMap<K, V, S>
impl<K, V, S> Debug for LiteMap<K, V, S>
impl<K, V, S> Debug for litemap::map::OccupiedEntry<'_, K, V, S>
impl<K, V, S> Debug for litemap::map::VacantEntry<'_, K, V, S>
impl<K, V, S> Debug for gondola_core::prelude::HashMap<K, V, S>
impl<K, V, S, A> Debug for hashbrown::map::Entry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::HashMap<K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedEntry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedError<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::VacantEntry<'_, K, V, S, A>where
K: Debug,
A: Allocator,
impl<L, R> Debug for Either<L, R>
impl<L, R> Debug for IterEither<L, R>
impl<M> Debug for icu_provider::baked::zerotrie::Data<M>
impl<M> Debug for DataPayload<M>where
M: DynamicDataMarker,
&'a <<M as DynamicDataMarker>::DataStruct as Yokeable<'a>>::Output: for<'a> Debug,
impl<M> Debug for DataResponse<M>where
M: DynamicDataMarker,
&'a <<M as DynamicDataMarker>::DataStruct as Yokeable<'a>>::Output: for<'a> Debug,
impl<M, O> Debug for DataPayloadOr<M, O>where
M: DynamicDataMarker,
&'a <<M as DynamicDataMarker>::DataStruct as Yokeable<'a>>::Output: for<'a> Debug,
O: Debug,
impl<M, P> Debug for DataProviderWithMarker<M, P>
impl<N> Debug for OpeningKey<N>where
N: NonceSequence,
impl<N> Debug for SealingKey<N>where
N: NonceSequence,
impl<N> Debug for AutoBoolSimd<N>where
N: Debug,
impl<N> Debug for AutoSimd<N>where
N: Debug,
impl<O> Debug for F32<O>where
O: ByteOrder,
impl<O> Debug for F64<O>where
O: ByteOrder,
impl<O> Debug for I16<O>where
O: ByteOrder,
impl<O> Debug for I32<O>where
O: ByteOrder,
impl<O> Debug for I64<O>where
O: ByteOrder,
impl<O> Debug for I128<O>where
O: ByteOrder,
impl<O> Debug for Isize<O>where
O: ByteOrder,
impl<O> Debug for U16<O>where
O: ByteOrder,
impl<O> Debug for U32<O>where
O: ByteOrder,
impl<O> Debug for U64<O>where
O: ByteOrder,
impl<O> Debug for U128<O>where
O: ByteOrder,
impl<O> Debug for Usize<O>where
O: ByteOrder,
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<Public, Private> Debug for KeyPairComponents<Public, Private>where
PublicKeyComponents<Public>: Debug,
impl<Query, Value> Debug for UncheckedBind<Query, Value>
impl<R> Debug for csv::reader::Reader<R>where
R: Debug,
impl<R> Debug for CrcReader<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibEncoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibEncoder<R>where
R: Debug,
impl<R> Debug for rand::rngs::adapter::read::ReadRng<R>where
R: Debug,
impl<R> Debug for rand::rngs::adapter::read::ReadRng<R>where
R: Debug,
impl<R> Debug for rand_core::block::BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for rand_core::block::BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for rand_core::block::BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for rand_core::block::BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for gondola_core::prelude::io::Bytes<R>where
R: Debug,
impl<R> Debug for BufReader<R>
impl<R, E> Debug for SignalDelivery<R, E>
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, Rsdr> Debug for rand::deprecated::ReseedingRng<R, Rsdr>
impl<R, Rsdr> Debug for rand::rngs::adapter::reseeding::ReseedingRng<R, Rsdr>
impl<R, Rsdr> Debug for rand::rngs::adapter::reseeding::ReseedingRng<R, Rsdr>
impl<R, T> Debug for lock_api::mutex::Mutex<R, T>
impl<R, T> Debug for lock_api::rwlock::RwLock<R, T>
impl<S> Debug for Host<S>where
S: Debug,
impl<S> Debug for Alias<S>where
S: Debug,
impl<S> Debug for ThreadPoolBuilder<S>
impl<S> Debug for ImDocument<S>where
S: Debug,
impl<S, B> Debug for WalkTree<S, B>
impl<S, B> Debug for WalkTreePostfix<S, B>
impl<S, B> Debug for WalkTreePrefix<S, B>
impl<S, F> Debug for AliasedField<S, F>
impl<ST> Debug for Nullable<ST>where
ST: Debug,
impl<ST, T> Debug for SqlLiteral<ST, T>
impl<Side, State> Debug for ConfigBuilder<Side, State>where
Side: ConfigSide,
State: Debug,
impl<Src, Dst> Debug for AlignmentError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for SizeError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for ValidityError<Src, Dst>where
Dst: TryFromBytes + ?Sized,
impl<Stmt, Target> Debug for IncompleteDoUpdate<Stmt, Target>
impl<Stmt, Target> Debug for IncompleteOnConflict<Stmt, Target>
impl<Storage> Debug for __BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<Store> Debug for ZeroAsciiIgnoreCaseTrie<Store>
impl<Store> Debug for ZeroTrie<Store>where
Store: Debug,
impl<Store> Debug for ZeroTrieExtendedCapacity<Store>
impl<Store> Debug for ZeroTriePerfectHash<Store>
impl<Store> Debug for ZeroTrieSimpleAscii<Store>
impl<T> Debug for crossbeam_channel::err::SendTimeoutError<T>
impl<T> Debug for crossbeam_channel::err::TrySendError<T>
impl<T> Debug for Steal<T>
impl<T> Debug for LocalResult<T>where
T: Debug,
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for std::sync::mpmc::error::SendTimeoutError<T>
impl<T> Debug for std::sync::mpsc::TrySendError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.