pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}Expand description
? formatting.
Debug should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive a Debug implementation.
When used with the alternate format specifier #?, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive] if all fields implement Debug. When
derived for structs, it will use the name of the struct, then {, then a
comma-separated list of each field’s name and Debug value, then }. For
enums, it will use the name of the variant and, if applicable, (, then the
Debug values of the fields, then ).
§Stability
Derived Debug formats are not stable, and so may change with future Rust
versions. Additionally, Debug implementations of types provided by the
standard library (std, core, alloc, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);There are a number of helper methods on the Formatter struct to help you with manual
implementations, such as debug_struct.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter trait (debug_struct, debug_tuple,
debug_list, debug_set, debug_map) can do something totally custom by
manually writing an arbitrary representation to the Formatter.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}Debug implementations using either derive or the debug builder API
on Formatter support pretty-printing using the alternate flag: {:#?}.
Pretty-printing with #?:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err if, and only if, the provided Formatter returns Err.
String formatting is considered an infallible operation; this function only
returns a Result because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");Implementors§
impl Debug for DbError
impl Debug for ExecutorError
impl Debug for Cmp
impl Debug for FilterExpr
impl Debug for Order
impl Debug for icydb_core::db::query::QueryError
impl Debug for QueryPlan
impl Debug for SaveMode
impl Debug for ResponseError
impl Debug for StoreError
impl Debug for icydb_core::Error
impl Debug for icydb_core::interface::InterfaceError
impl Debug for icydb_core::interface::query::QueryError
impl Debug for Key
impl Debug for ExecKind
impl Debug for icydb_core::serialize::SerializeError
impl Debug for icydb_core::types::PrincipalError
impl Debug for UlidError
impl Debug for TextMode
impl Debug for icydb_core::value::Value
impl Debug for ValueFamily
impl Debug for icydb_core::visitor::Event
impl Debug for PathSegment
impl Debug for VisitorError
impl Debug for ValidateError
impl Debug for icydb_core::traits::Ordering
impl Debug for TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for core::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for core::fmt::Sign
impl Debug for AtomicOrdering
impl Debug for SimdAlign
impl Debug for IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for core::net::socket_addr::SocketAddr
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for GetDisjointMutError
impl Debug for SearchStep
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for std::fs::TryLockError
impl Debug for SeekFrom
impl Debug for std::io::error::ErrorKind
impl Debug for Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for RecvTimeoutError
impl Debug for TryRecvError
impl Debug for Endian
impl Debug for binread::error::Error
impl Debug for binread::io::error::ErrorKind
impl Debug for BigEndian
impl Debug for LittleEndian
impl Debug for candid::error::Error
impl Debug for FuncMode
impl Debug for candid::types::internal::Label
impl Debug for Opcode
impl Debug for TypeInner
impl Debug for candid::types::reserved::Empty
impl Debug for OptReport
impl Debug for canic_utils::case::Case
impl Debug for AuthError
impl Debug for ConfigError
impl Debug for ConfigSchemaError
impl Debug for canic::Error
impl Debug for EnvError
impl Debug for SnsError
impl Debug for SnsRole
impl Debug for SnsType
impl Debug for GuardError
impl Debug for CkToken
impl Debug for canic::interface::InterfaceError
impl Debug for Level
impl Debug for ModelError
impl Debug for MemoryError
impl Debug for LogError
impl Debug for MemoryRegistryError
impl Debug for AppMode
impl Debug for SubnetIdentity
impl Debug for WasmRegistryError
impl Debug for ConfigOpsError
impl Debug for OpsError
impl Debug for ModelOpsError
impl Debug for AppDirectoryOpsError
impl Debug for SubnetDirectoryOpsError
impl Debug for MemoryOpsError
impl Debug for EnvOpsError
impl Debug for MemoryRegistryOpsError
impl Debug for ScalingOpsError
impl Debug for ShardingOpsError
impl Debug for ShardingPlanState
impl Debug for AppCommand
impl Debug for AppStateOpsError
impl Debug for TopologyOpsError
impl Debug for SubnetCanisterRegistryOpsError
impl Debug for RequestOpsError
impl Debug for CreateCanisterParent
impl Debug for canic::ops::request::request::Request
impl Debug for canic::ops::request::response::Response
impl Debug for SignatureOpsError
impl Debug for SyncOpsError
impl Debug for canic::serialize::SerializeError
impl Debug for Icrc10Standard
impl Debug for canic::spec::icrc::icrc21::ConsentMessage
impl Debug for canic::spec::icrc::icrc21::DisplayMessageType
impl Debug for canic::spec::icrc::icrc21::Value
impl Debug for canic::spec::icrc::icrc21::errors::Icrc21Error
impl Debug for Colons
impl Debug for Fixed
impl Debug for Numeric
impl Debug for chrono::format::OffsetPrecision
impl Debug for Pad
impl Debug for ParseErrorKind
impl Debug for SecondsFormat
impl Debug for chrono::month::Month
impl Debug for RoundingError
impl Debug for chrono::weekday::Weekday
impl Debug for Boundary
impl Debug for Pattern
impl Debug for BitOrder
impl Debug for DecodeKind
impl Debug for BinaryError
impl Debug for TruncSide
impl Debug for FromHexError
impl Debug for CanisterSigError
impl Debug for CanisterStatusCode
impl Debug for PerformanceCounterType
impl Debug for SignCostError
impl Debug for Network
impl Debug for UtxosFilter
impl Debug for CallFailed
impl Debug for ic_cdk::call::Error
impl Debug for OnewayError
impl Debug for SignCallError
impl Debug for StableMemoryError
impl Debug for ErrorCode
impl Debug for RejectCode
impl Debug for TryFromError
impl Debug for CanisterInstallMode
impl Debug for CanisterStatusType
impl Debug for CanisterTimer
impl Debug for ChangeDetails
impl Debug for ChangeOrigin
impl Debug for CodeDeploymentMode
impl Debug for EcdsaCurve
impl Debug for HttpMethod
impl Debug for LogVisibility
impl Debug for OnLowWasmMemoryHookStatus
impl Debug for SchnorrAlgorithm
impl Debug for SchnorrAux
impl Debug for SnapshotDataKind
impl Debug for SnapshotDataOffset
impl Debug for SnapshotMetadataGlobal
impl Debug for SnapshotSource
impl Debug for VetKDCurve
impl Debug for WasmMemoryPersistence
impl Debug for ic_representation_independent_hash::representation_independent_hash::Value
impl Debug for ic_stable_structures::base_vec::InitError
impl Debug for ic_stable_structures::base_vec::InitError
impl Debug for ic_stable_structures::cell::InitError
impl Debug for ic_stable_structures::cell::InitError
impl Debug for ic_stable_structures::cell::ValueError
impl Debug for ic_stable_structures::cell::ValueError
impl Debug for ic_stable_structures::log::InitError
impl Debug for ic_stable_structures::log::InitError
impl Debug for ic_stable_structures::log::WriteError
impl Debug for ic_stable_structures::log::WriteError
impl Debug for ic_stable_structures::storable::Bound
impl Debug for ic_stable_structures::storable::Bound
impl Debug for InvalidPrivateKey
impl Debug for InvalidPublicKey
impl Debug for InvalidSignature
impl Debug for ic_principal::PrincipalError
impl Debug for ICRC1TextReprError
impl Debug for TransferError
impl Debug for ApproveError
impl Debug for TransferFromError
impl Debug for icrc_ledger_types::icrc21::errors::Icrc21Error
impl Debug for Icrc21Function
impl Debug for icrc_ledger_types::icrc21::requests::DisplayMessageType
impl Debug for icrc_ledger_types::icrc21::responses::ConsentMessage
impl Debug for icrc_ledger_types::icrc21::responses::Value
impl Debug for GetAllowancesError
impl Debug for Icrc106Error
impl Debug for MetadataValue
impl Debug for ICRC3Value
impl Debug for icrc_ledger_types::icrc::generic_value::Value
impl Debug for ItemRequirement
impl Debug for ValuePredicateFailures
impl Debug for leb128::read::Error
impl Debug for DIR
impl Debug for FILE
impl Debug for timezone
impl Debug for tpacket_versions
impl Debug for IanaTag
impl Debug for minicbor::data::Tag
impl Debug for minicbor::data::Type
impl Debug for minicbor::data::Type
impl Debug for Size
impl Debug for num_bigint::bigint::Sign
impl Debug for FloatErrorKind
impl Debug for StackDirection
impl Debug for RoundingStrategy
impl Debug for rust_decimal::error::Error
impl Debug for Category
impl Debug for serde_cbor::value::Value
impl Debug for CollectionAllocErr
impl Debug for strum::ParseError
impl Debug for time::error::Error
impl Debug for Format
impl Debug for InvalidFormatDescription
impl Debug for BorrowedFormatItem<'_>
alloc only.impl Debug for time::format_description::component::Component
impl Debug for MonthRepr
impl Debug for Padding
impl Debug for SubsecondDigits
impl Debug for UnixTimestampPrecision
impl Debug for WeekNumberRepr
impl Debug for WeekdayRepr
impl Debug for YearRange
impl Debug for YearRepr
impl Debug for OwnedFormatItem
impl Debug for DateKind
impl Debug for FormattedComponents
impl Debug for time::format_description::well_known::iso8601::OffsetPrecision
impl Debug for TimePrecision
impl Debug for time::month::Month
impl Debug for time::weekday::Weekday
impl Debug for toml::value::Value
impl Debug for Offset
impl Debug for SerializerError
impl Debug for toml_parser::decoder::Encoding
impl Debug for IntegerRadix
impl Debug for ScalarKind
impl Debug for Expected
impl Debug for TokenKind
impl Debug for EventKind
impl Debug for ulid::base32::DecodeError
impl Debug for ulid::base32::EncodeError
impl Debug for GraphemeIncomplete
impl Debug for Endianness
impl Debug for Needed
impl Debug for StrContext
impl Debug for StrContextValue
impl Debug for CompareResult
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 FilterClause
impl Debug for FilterDsl
impl Debug for FilterExprOpt
impl Debug for NoFilter
impl Debug for TextClause
impl Debug for TextFilter
impl Debug for LimitExpr
impl Debug for SortExpr
impl Debug for DeleteQuery
impl Debug for IndexPlan
impl Debug for LoadQuery
impl Debug for QueryPlanner
impl Debug for SaveQuery
impl Debug for DataKey
impl Debug for IndexEntry
impl Debug for IndexId
impl Debug for IndexKey
impl Debug for ErrorTree
impl Debug for IndexSpec
impl Debug for EntityCounters
impl Debug for EntitySummary
impl Debug for EventOps
impl Debug for EventPerf
impl Debug for EventReport
impl Debug for EventSelect
impl Debug for EventState
impl Debug for DataStoreSnapshot
impl Debug for EntitySnapshot
impl Debug for IndexStoreSnapshot
impl Debug for StorageReport
impl Debug for icydb_core::types::Account
impl Debug for icydb_core::types::Blob
impl Debug for icydb_core::types::Date
impl Debug for icydb_core::types::Decimal
impl Debug for icydb_core::types::Duration
impl Debug for E8s
impl Debug for E18s
impl Debug for Float32
impl Debug for Float64
impl Debug for Int128
impl Debug for icydb_core::types::Int
impl Debug for Nat128
impl Debug for icydb_core::types::Nat
impl Debug for icydb_core::types::Principal
impl Debug for Subaccount
impl Debug for Timestamp
impl Debug for icydb_core::types::Ulid
impl Debug for Unit
impl Debug for ValueEnum
impl Debug for SanitizeVisitor
impl Debug for ValidateVisitor
impl Debug for Global
impl Debug for ByteString
impl Debug for UnorderedKeyError
impl Debug for TryReserveError
impl Debug for CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for String
impl Debug for Layout
impl Debug for LayoutError
impl Debug for AllocError
impl Debug for core::any::TypeId
impl Debug for core::array::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 Arguments<'_>
impl Debug for core::fmt::Error
impl Debug for FormattingOptions
impl Debug for SipHasher
impl Debug for Last
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomPinned
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for Assume
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for core::num::dec2flt::ParseFloatError
impl Debug for core::num::error::ParseIntError
impl Debug for core::num::error::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 Utf8Error
impl Debug for Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for Utf8Chunks<'_>
impl Debug for AtomicBool
target_has_atomic_load_store=8 only.impl Debug for AtomicI8
impl Debug for AtomicI16
impl Debug for AtomicI32
impl Debug for AtomicI64
impl Debug for AtomicIsize
impl Debug for AtomicU8
impl Debug for AtomicU16
impl Debug for AtomicU32
impl Debug for AtomicU64
impl Debug for AtomicUsize
impl Debug for Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for core::time::Duration
impl Debug for TryFromFloatSecsError
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for OsStr
impl Debug for OsString
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for File
impl Debug for FileTimes
impl Debug for FileType
impl Debug for std::fs::Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for DefaultHasher
impl Debug for RandomState
impl Debug for WriterPanicked
impl Debug for std::io::error::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for Stderr
impl Debug for StderrLock<'_>
impl Debug for Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdout
impl Debug for StdoutLock<'_>
impl Debug for std::io::util::Empty
impl Debug for std::io::util::Repeat
impl Debug for Sink
impl Debug for IntoIncoming
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for UdpSocket
impl Debug for BorrowedFd<'_>
impl Debug for OwnedFd
impl Debug for PidFd
impl Debug for std::os::unix::net::addr::SocketAddr
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for UCred
impl Debug for Components<'_>
impl Debug for std::path::Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for NormalizeError
impl Debug for Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for Stdio
impl Debug for DefaultRandomSource
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for RecvError
impl Debug for std::sync::nonpoison::condvar::Condvar
impl Debug for WouldBlock
impl Debug for std::sync::once::Once
impl Debug for OnceState
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for WaitTimeoutResult
impl Debug for Builder
impl Debug for ThreadId
impl Debug for AccessError
impl Debug for Scope<'_, '_>
impl Debug for Thread
impl Debug for Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for anyhow::Error
impl Debug for binread::io::error::Error
impl Debug for NullString
impl Debug for NullWideString
impl Debug for Eager
impl Debug for block_buffer::Error
impl Debug for Lazy
impl Debug for Header
impl Debug for candid::error::Label
impl Debug for DocComments
impl Debug for Field
impl Debug for Function
impl Debug for candid::types::internal::Type
impl Debug for candid::types::internal::TypeId
impl Debug for candid::types::number::Int
impl Debug for candid::types::number::Nat
impl Debug for Func
impl Debug for Service
impl Debug for Reserved
impl Debug for TypeEnv
impl Debug for LogConfig
impl Debug for ConfigModel
impl Debug for Standards
impl Debug for Whitelist
impl Debug for CanisterConfig
impl Debug for CanisterReserve
impl Debug for CanisterTopup
impl Debug for ScalePool
impl Debug for ScalePoolPolicy
impl Debug for ScalingConfig
impl Debug for ShardPool
impl Debug for ShardPoolPolicy
impl Debug for ShardingConfig
impl Debug for SubnetConfig
impl Debug for SnsCanisters
impl Debug for PrincipalList
impl Debug for EnvData
impl Debug for LogEntry
impl Debug for MemoryRange
impl Debug for MemoryRegistryEntry
impl Debug for CanisterReserveEntry
impl Debug for WorkerEntry
impl Debug for ShardEntry
impl Debug for ShardKey
impl Debug for AppStateData
impl Debug for SubnetStateData
impl Debug for AppSubnet
impl Debug for SubnetContextParams
impl Debug for CanisterEntry
impl Debug for CanisterSummary
impl Debug for WasmRegistry
impl Debug for DirectoryPageDto
impl Debug for LogEntryDto
impl Debug for ScalingPlan
impl Debug for ShardingPlan
impl Debug for SubnetCanisterChildrenPage
impl Debug for CreateCanisterRequest
impl Debug for CyclesRequest
impl Debug for UpgradeCanisterRequest
impl Debug for CreateCanisterResponse
impl Debug for CyclesResponse
impl Debug for UpgradeCanisterResponse
impl Debug for StateBundle
impl Debug for TopologyBundle
impl Debug for CanisterInitPayload
impl Debug for IcpXdrConversionRate
impl Debug for IcpXdrConversionRateResponse
impl Debug for CallbackFunc
impl Debug for canic::spec::icrc::icrc2::AllowanceArgs
impl Debug for Icrc10SupportedStandard
impl Debug for canic::spec::icrc::icrc21::errors::ErrorInfo
impl Debug for canic::spec::icrc::icrc21::ConsentInfo
impl Debug for canic::spec::icrc::icrc21::ConsentMessageMetadata
impl Debug for canic::spec::icrc::icrc21::ConsentMessageRequest
impl Debug for canic::spec::icrc::icrc21::ConsentMessageSpec
impl Debug for canic::spec::icrc::icrc21::FieldsDisplay
impl Debug for GetSubnetForCanisterPayload
impl Debug for GetSubnetForCanisterRequest
impl Debug for NeuronId
impl Debug for canic::types::account::Account
impl Debug for CanisterType
impl Debug for Cycles
impl Debug for SubnetType
impl Debug for canic::types::ulid::Ulid
impl Debug for WasmModule
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 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 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 Utc
impl Debug for OutOfRange
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 Hasher
impl Debug for InvalidLength
impl Debug for data_encoding::DecodeError
impl Debug for DecodePartial
impl Debug for data_encoding::Encoding
impl Debug for Specification
impl Debug for SpecificationError
impl Debug for Translate
impl Debug for Wrap
impl Debug for deranged::ParseIntError
impl Debug for deranged::TryFromIntError
impl Debug for WrongVariantError
impl Debug for UnitError
impl Debug for FromStrError
impl Debug for InvalidBufferSize
impl Debug for InvalidOutputSize
impl Debug for half::bfloat::bf16
impl Debug for f16
impl Debug for CanisterSig
impl Debug for CanisterSigPublicKey
impl Debug for MethodHandle
impl Debug for TaskHandle
impl Debug for TaskId
impl Debug for GetBalanceRequest
impl Debug for GetBlockHeadersRequest
impl Debug for GetBlockHeadersResponse
impl Debug for GetCurrentFeePercentilesRequest
impl Debug for GetUtxosRequest
impl Debug for GetUtxosResponse
impl Debug for Outpoint
impl Debug for SendTransactionRequest
impl Debug for Utxo
impl Debug for CallPerformFailed
impl Debug for CallRejected
impl Debug for CandidDecodeFailed
impl Debug for InsufficientLiquidCycleBalance
impl Debug for ic_cdk::call::Response
impl Debug for UnrecognizedRejectCode
impl Debug for ic_cdk::management_canister::CreateCanisterArgs
impl Debug for ic_cdk::management_canister::InstallChunkedCodeArgs
impl Debug for ic_cdk::management_canister::InstallCodeArgs
impl Debug for ic_cdk::management_canister::LoadCanisterSnapshotArgs
impl Debug for ic_cdk::management_canister::ProvisionalCreateCanisterWithCyclesArgs
impl Debug for ic_cdk::management_canister::UninstallCodeArgs
impl Debug for ic_cdk::management_canister::UpdateSettingsArgs
impl Debug for CanisterStableMemory
impl Debug for ErrorCodeIter
impl Debug for RejectCodeIter
impl Debug for UserError
impl Debug for Bip341
impl Debug for CanisterIdRecord
impl Debug for CanisterInfoArgs
impl Debug for CanisterInfoResult
impl Debug for CanisterLogRecord
impl Debug for CanisterMetadataArgs
impl Debug for CanisterMetadataResult
impl Debug for CanisterSettings
impl Debug for CanisterStatusResult
impl Debug for Change
impl Debug for ChunkHash
impl Debug for CodeDeploymentRecord
impl Debug for ControllersChangeRecord
impl Debug for ic_management_canister_types::CreateCanisterArgs
impl Debug for CreationRecord
impl Debug for DefiniteCanisterSettings
impl Debug for DeleteCanisterSnapshotArgs
impl Debug for EcdsaKeyId
impl Debug for EcdsaPublicKeyArgs
impl Debug for EcdsaPublicKeyResult
impl Debug for EnvironmentVariable
impl Debug for FetchCanisterLogsResult
impl Debug for FromCanisterRecord
impl Debug for FromUserRecord
impl Debug for HttpHeader
impl Debug for HttpRequestArgs
impl Debug for HttpRequestResult
impl Debug for ic_management_canister_types::InstallChunkedCodeArgs
impl Debug for ic_management_canister_types::InstallCodeArgs
impl Debug for ic_management_canister_types::LoadCanisterSnapshotArgs
impl Debug for LoadSnapshotRecord
impl Debug for MemoryMetrics
impl Debug for NodeMetrics
impl Debug for NodeMetricsHistoryArgs
impl Debug for NodeMetricsHistoryRecord
impl Debug for ic_management_canister_types::ProvisionalCreateCanisterWithCyclesArgs
impl Debug for ProvisionalTopUpCanisterArgs
impl Debug for QueryStats
impl Debug for ReadCanisterSnapshotDataArgs
impl Debug for ReadCanisterSnapshotDataResult
impl Debug for ReadCanisterSnapshotMetadataArgs
impl Debug for ReadCanisterSnapshotMetadataResult
impl Debug for SchnorrKeyId
impl Debug for SchnorrPublicKeyArgs
impl Debug for SchnorrPublicKeyResult
impl Debug for SignWithEcdsaArgs
impl Debug for SignWithEcdsaResult
impl Debug for SignWithSchnorrArgs
impl Debug for SignWithSchnorrResult
impl Debug for Snapshot
impl Debug for SubnetInfoArgs
impl Debug for SubnetInfoResult
impl Debug for TakeCanisterSnapshotArgs
impl Debug for TransformArgs
impl Debug for TransformContext
impl Debug for ic_management_canister_types::UninstallCodeArgs
impl Debug for ic_management_canister_types::UpdateSettingsArgs
impl Debug for UpgradeFlags
impl Debug for UploadCanisterSnapshotDataArgs
impl Debug for UploadCanisterSnapshotMetadataArgs
impl Debug for UploadCanisterSnapshotMetadataResult
impl Debug for UploadChunkArgs
impl Debug for VetKDDeriveKeyArgs
impl Debug for VetKDDeriveKeyResult
impl Debug for VetKDKeyId
impl Debug for VetKDPublicKeyArgs
impl Debug for VetKDPublicKeyResult
impl Debug for TransformFunc
impl Debug for ic_stable_structures::log::NoSuchEntry
impl Debug for ic_stable_structures::log::NoSuchEntry
impl Debug for ic_stable_structures::memory_manager::MemoryId
impl Debug for ic_stable_structures::memory_manager::MemoryId
impl Debug for ic_stable_structures::reader::OutOfBounds
impl Debug for ic_stable_structures::reader::OutOfBounds
impl Debug for ic_stable_structures::storable::TryFromSliceError
impl Debug for ic_stable_structures::storable::TryFromSliceError
impl Debug for ic_stable_structures::GrowFailed
impl Debug for ic_stable_structures::GrowFailed
impl Debug for PrivateKey
impl Debug for PublicKey
alloc only.impl Debug for Signature
alloc only.impl Debug for G1Affine
impl Debug for G1Projective
impl Debug for G2Affine
impl Debug for G2Projective
impl Debug for Bls12
impl Debug for G2Prepared
impl Debug for Gt
impl Debug for MillerLoopResult
impl Debug for Scalar
impl Debug for ic_principal::Principal
impl Debug for icrc_ledger_types::icrc1::account::Account
impl Debug for Memo
impl Debug for TransferArg
impl Debug for icrc_ledger_types::icrc2::allowance::Allowance
impl Debug for icrc_ledger_types::icrc2::allowance::AllowanceArgs
impl Debug for ApproveArgs
impl Debug for TransferFromArgs
impl Debug for ArchiveInfo
impl Debug for GetArchivesArgs
impl Debug for ICRC3ArchiveInfo
impl Debug for ArchivedBlocks
impl Debug for BlockRange
impl Debug for BlockWithId
impl Debug for DataCertificate
impl Debug for GetBlocksRequest
impl Debug for GetBlocksResponse
impl Debug for GetBlocksResult
impl Debug for ICRC3DataCertificate
impl Debug for SupportedBlockType
impl Debug for Approve
impl Debug for Burn
impl Debug for GetTransactionsResponse
impl Debug for Mint
impl Debug for Transaction
impl Debug for TransactionRange
impl Debug for Transfer
impl Debug for icrc_ledger_types::icrc21::errors::ErrorInfo
impl Debug for Icrc21FunctionIter
impl Debug for icrc_ledger_types::icrc21::requests::ConsentMessageMetadata
impl Debug for icrc_ledger_types::icrc21::requests::ConsentMessageRequest
impl Debug for icrc_ledger_types::icrc21::requests::ConsentMessageSpec
impl Debug for icrc_ledger_types::icrc21::responses::ConsentInfo
impl Debug for icrc_ledger_types::icrc21::responses::FieldsDisplay
impl Debug for icrc_ledger_types::icrc103::get_allowances::Allowance
impl Debug for GetAllowancesArgs
impl Debug for rtentry
impl Debug for bcm_msg_head
impl Debug for bcm_timeval
impl Debug for j1939_filter
impl Debug for __c_anonymous_sockaddr_can_j1939
impl Debug for __c_anonymous_sockaddr_can_tp
impl Debug for can_filter
impl Debug for can_frame
impl Debug for canfd_frame
impl Debug for canxl_frame
impl Debug for sockaddr_can
impl Debug for termios2
impl Debug for msqid_ds
impl Debug for semid_ds
impl Debug for sigset_t
impl Debug for sysinfo
impl Debug for timex
impl Debug for statvfs
impl Debug for _libc_fpstate
impl Debug for _libc_fpxreg
impl Debug for _libc_xmmreg
impl Debug for clone_args
impl Debug for flock64
impl Debug for flock
impl Debug for ipc_perm
impl Debug for max_align_t
impl Debug for mcontext_t
impl Debug for pthread_attr_t
impl Debug for ptrace_rseq_configuration
impl Debug for shmid_ds
impl Debug for sigaction
impl Debug for siginfo_t
impl Debug for stack_t
impl Debug for stat64
impl Debug for stat
impl Debug for statfs64
impl Debug for statfs
impl Debug for statvfs64
impl Debug for ucontext_t
impl Debug for user
impl Debug for user_fpregs_struct
impl Debug for user_regs_struct
impl Debug for Elf32_Chdr
impl Debug for Elf64_Chdr
impl Debug for __c_anonymous_ptrace_syscall_info_entry
impl Debug for __c_anonymous_ptrace_syscall_info_exit
impl Debug for __c_anonymous_ptrace_syscall_info_seccomp
impl Debug for __exit_status
impl Debug for __timeval
impl Debug for aiocb
impl Debug for cmsghdr
impl Debug for fanotify_event_info_error
impl Debug for fanotify_event_info_pidfd
impl Debug for fpos64_t
impl Debug for fpos_t
impl Debug for glob64_t
impl Debug for iocb
impl Debug for mallinfo2
impl Debug for mallinfo
impl Debug for mbstate_t
impl Debug for msghdr
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for ntptimeval
impl Debug for ptrace_peeksiginfo_args
impl Debug for ptrace_sud_config
impl Debug for ptrace_syscall_info
impl Debug for regex_t
impl Debug for sem_t
impl Debug for seminfo
impl Debug for tcp_info
impl Debug for termios
impl Debug for timespec
impl Debug for utmpx
impl Debug for Elf32_Ehdr
impl Debug for Elf32_Phdr
impl Debug for Elf32_Shdr
impl Debug for Elf32_Sym
impl Debug for Elf64_Ehdr
impl Debug for Elf64_Phdr
impl Debug for Elf64_Shdr
impl Debug for Elf64_Sym
impl Debug for __c_anonymous__kernel_fsid_t
impl Debug for __c_anonymous_elf32_rel
impl Debug for __c_anonymous_elf32_rela
impl Debug for __c_anonymous_elf64_rel
impl Debug for __c_anonymous_elf64_rela
impl Debug for __c_anonymous_ifru_map
impl Debug for af_alg_iv
impl Debug for arpd_request
impl Debug for cpu_set_t
impl Debug for dirent64
impl Debug for dirent
impl Debug for dl_phdr_info
impl Debug for dmabuf_cmsg
impl Debug for dmabuf_token
impl Debug for dqblk
impl Debug for epoll_params
impl Debug for fanotify_event_info_fid
impl Debug for fanotify_event_info_header
impl Debug for fanotify_event_metadata
impl Debug for fanotify_response
impl Debug for fanout_args
impl Debug for ff_condition_effect
impl Debug for ff_constant_effect
impl Debug for ff_effect
impl Debug for ff_envelope
impl Debug for ff_periodic_effect
impl Debug for ff_ramp_effect
impl Debug for ff_replay
impl Debug for ff_rumble_effect
impl Debug for ff_trigger
impl Debug for fsid_t
impl Debug for genlmsghdr
impl Debug for glob_t
impl Debug for hwtstamp_config
impl Debug for if_nameindex
impl Debug for ifconf
impl Debug for ifreq
impl Debug for in6_ifreq
impl Debug for in6_pktinfo
impl Debug for inotify_event
impl Debug for input_absinfo
impl Debug for input_event
impl Debug for input_id
impl Debug for input_keymap_entry
impl Debug for input_mask
impl Debug for itimerspec
impl Debug for iw_discarded
impl Debug for iw_encode_ext
impl Debug for iw_event
impl Debug for iw_freq
impl Debug for iw_michaelmicfailure
impl Debug for iw_missed
impl Debug for iw_mlme
impl Debug for iw_param
impl Debug for iw_pmkid_cand
impl Debug for iw_pmksa
impl Debug for iw_point
impl Debug for iw_priv_args
impl Debug for iw_quality
impl Debug for iw_range
impl Debug for iw_scan_req
impl Debug for iw_statistics
impl Debug for iw_thrspy
impl Debug for iwreq
impl Debug for mnt_ns_info
impl Debug for mntent
impl Debug for mount_attr
impl Debug for mq_attr
impl Debug for msginfo
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for open_how
impl Debug for option
impl Debug for packet_mreq
impl Debug for passwd
impl Debug for pidfd_info
impl Debug for posix_spawn_file_actions_t
impl Debug for posix_spawnattr_t
impl Debug for pthread_barrier_t
impl Debug for pthread_barrierattr_t
impl Debug for pthread_cond_t
impl Debug for pthread_condattr_t
impl Debug for pthread_mutex_t
impl Debug for pthread_mutexattr_t
impl Debug for pthread_rwlock_t
impl Debug for pthread_rwlockattr_t
impl Debug for ptp_clock_caps
impl Debug for ptp_clock_time
impl Debug for ptp_extts_event
impl Debug for ptp_extts_request
impl Debug for ptp_perout_request
impl Debug for ptp_pin_desc
impl Debug for ptp_sys_offset
impl Debug for ptp_sys_offset_extended
impl Debug for ptp_sys_offset_precise
impl Debug for regmatch_t
impl Debug for rlimit64
impl Debug for sched_attr
impl Debug for sctp_authinfo
impl Debug for sctp_initmsg
impl Debug for sctp_nxtinfo
impl Debug for sctp_prinfo
impl Debug for sctp_rcvinfo
impl Debug for sctp_sndinfo
impl Debug for sctp_sndrcvinfo
impl Debug for seccomp_data
impl Debug for seccomp_notif
impl Debug for seccomp_notif_addfd
impl Debug for seccomp_notif_resp
impl Debug for seccomp_notif_sizes
impl Debug for sembuf
impl Debug for signalfd_siginfo
impl Debug for sock_extended_err
impl Debug for sock_txtime
impl Debug for sockaddr_alg
impl Debug for sockaddr_nl
impl Debug for sockaddr_pkt
impl Debug for sockaddr_vm
impl Debug for sockaddr_xdp
impl Debug for spwd
impl Debug for tls12_crypto_info_aes_ccm_128
impl Debug for tls12_crypto_info_aes_gcm_128
impl Debug for tls12_crypto_info_aes_gcm_256
impl Debug for tls12_crypto_info_aria_gcm_128
impl Debug for tls12_crypto_info_aria_gcm_256
impl Debug for tls12_crypto_info_chacha20_poly1305
impl Debug for tls12_crypto_info_sm4_ccm
impl Debug for tls12_crypto_info_sm4_gcm
impl Debug for tls_crypto_info
impl Debug for tpacket2_hdr
impl Debug for tpacket3_hdr
impl Debug for tpacket_auxdata
impl Debug for tpacket_bd_ts
impl Debug for tpacket_block_desc
impl Debug for tpacket_hdr
impl Debug for tpacket_hdr_v1
impl Debug for tpacket_hdr_variant1
impl Debug for tpacket_req3
impl Debug for tpacket_req
impl Debug for tpacket_rollover_stats
impl Debug for tpacket_stats
impl Debug for tpacket_stats_v3
impl Debug for ucred
impl Debug for uinput_abs_setup
impl Debug for uinput_ff_erase
impl Debug for uinput_ff_upload
impl Debug for uinput_setup
impl Debug for uinput_user_dev
impl Debug for xdp_desc
impl Debug for xdp_mmap_offsets
impl Debug for xdp_mmap_offsets_v1
impl Debug for xdp_options
impl Debug for xdp_ring_offset
impl Debug for xdp_ring_offset_v1
impl Debug for xdp_statistics
impl Debug for xdp_statistics_v1
impl Debug for xdp_umem_reg
impl Debug for xdp_umem_reg_v1
impl Debug for xsk_tx_metadata
impl Debug for xsk_tx_metadata_completion
impl Debug for xsk_tx_metadata_request
impl Debug for Dl_info
impl Debug for addrinfo
impl Debug for arphdr
impl Debug for arpreq
impl Debug for arpreq_old
impl Debug for epoll_event
impl Debug for fd_set
impl Debug for file_clone_range
impl Debug for ifaddrs
impl Debug for in6_rtmsg
impl Debug for in_addr
impl Debug for in_pktinfo
impl Debug for ip_mreq
impl Debug for ip_mreq_source
impl Debug for ip_mreqn
impl Debug for lconv
impl Debug for mmsghdr
impl Debug for sched_param
impl Debug for sigevent
impl Debug for sock_filter
impl Debug for sock_fprog
impl Debug for sockaddr
impl Debug for sockaddr_in6
impl Debug for sockaddr_in
impl Debug for sockaddr_ll
impl Debug for sockaddr_storage
impl Debug for sockaddr_un
impl Debug for statx
impl Debug for statx_timestamp
impl Debug for tm
impl Debug for utsname
impl Debug for group
impl Debug for hostent
impl Debug for in6_addr
impl Debug for iovec
impl Debug for ipv6_mreq
impl Debug for itimerval
impl Debug for linger
impl Debug for pollfd
impl Debug for protoent
impl Debug for rlimit
impl Debug for rusage
impl Debug for servent
impl Debug for sigval
impl Debug for timeval
impl Debug for tms
impl Debug for utimbuf
impl Debug for winsize
impl Debug for minicbor_serde::error::DecodeError
impl Debug for minicbor::bytes::ByteSlice
impl Debug for minicbor::bytes::ByteSlice
impl Debug for minicbor::bytes::ByteVec
impl Debug for minicbor::bytes::ByteVec
impl Debug for minicbor::data::Int
impl Debug for minicbor::data::Int
impl Debug for minicbor::data::Tag
impl Debug for minicbor::data::TryFromIntError
impl Debug for minicbor::data::TryFromIntError
impl Debug for UnknownTag
impl Debug for minicbor::decode::error::Error
impl Debug for minicbor::decode::error::Error
impl Debug for minicbor::encode::write::EndOfArray
impl Debug for minicbor::encode::write::EndOfArray
impl Debug for minicbor::encode::write::EndOfSlice
impl Debug for minicbor::encode::write::EndOfSlice
impl Debug for BigInt
impl Debug for BigUint
impl Debug for ParseBigIntError
impl Debug for num_traits::ParseFloatError
impl Debug for FormatterOptions
impl Debug for rand_core::error::Error
impl Debug for rust_decimal::decimal::Decimal
impl Debug for ByteBuf
impl Debug for serde_bytes::bytes::Bytes
impl Debug for serde_cbor::error::Error
impl Debug for IgnoredAny
impl Debug for serde_core::de::value::Error
impl Debug for Sha256VarCore
impl Debug for Sha512VarCore
impl Debug for DefaultKey
impl Debug for KeyData
impl Debug for Choice
impl Debug for time_core::convert::Day
impl Debug for time_core::convert::Hour
impl Debug for Microsecond
impl Debug for Millisecond
impl Debug for time_core::convert::Minute
impl Debug for Nanosecond
impl Debug for time_core::convert::Second
impl Debug for Week
impl Debug for time::date::Date
impl Debug for time::duration::Duration
impl Debug for ComponentRange
impl Debug for ConversionRange
impl Debug for DifferentVariant
impl Debug for InvalidVariant
impl Debug for time::format_description::modifier::Day
impl Debug for End
impl Debug for time::format_description::modifier::Hour
impl Debug for Ignore
impl Debug for time::format_description::modifier::Minute
impl Debug for time::format_description::modifier::Month
impl Debug for OffsetHour
impl Debug for OffsetMinute
impl Debug for OffsetSecond
impl Debug for Ordinal
impl Debug for Period
impl Debug for time::format_description::modifier::Second
impl Debug for Subsecond
impl Debug for UnixTimestamp
impl Debug for WeekNumber
impl Debug for time::format_description::modifier::Weekday
impl Debug for Year
impl Debug for Config
impl Debug for Rfc2822
impl Debug for Rfc3339
impl Debug for OffsetDateTime
impl Debug for PrimitiveDateTime
impl Debug for time::time::Time
impl Debug for UtcDateTime
impl Debug for UtcOffset
impl Debug for Counter
impl Debug for Probability
impl Debug for toml::de::error::Error
impl Debug for DeArray<'_>
impl Debug for Buffer
impl Debug for toml::ser::error::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 toml_parser::error::ParseError
impl Debug for Token
impl Debug for toml_parser::parser::event::Event
impl Debug for Span
impl Debug for TomlIntegerFormat
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 ulid::Ulid
impl Debug for GraphemeCursor
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 SanitizeContext
impl Debug for ValidateContext
impl Debug for __c_anonymous_sockaddr_can_can_addr
impl Debug for __c_anonymous_ptrace_syscall_info_data
impl Debug for __c_anonymous_ifc_ifcu
impl Debug for __c_anonymous_ifr_ifru
impl Debug for __c_anonymous_iwreq
impl Debug for __c_anonymous_ptp_perout_request_1
impl Debug for __c_anonymous_ptp_perout_request_2
impl Debug for __c_anonymous_xsk_tx_metadata_union
impl Debug for iwreq_data
impl Debug for tpacket_bd_header_u
impl Debug for tpacket_req_u
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for std::path::Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for Item<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for core::error::Request<'a>
impl<'a> Debug for core::error::Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for core::str::iter::Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for core::str::iter::EscapeDebug<'a>
impl<'a> Debug for core::str::iter::EscapeDefault<'a>
impl<'a> Debug for core::str::iter::EscapeUnicode<'a>
impl<'a> Debug for core::str::iter::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for StrftimeItems<'a>
impl<'a> Debug for data_encoding::Display<'a>
impl<'a> Debug for data_encoding::Encoder<'a>
impl<'a> Debug for MutSliceRead<'a>
impl<'a> Debug for SliceRead<'a>
impl<'a> Debug for SliceWrite<'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, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b> Debug for minicbor::decode::decoder::BytesIter<'a, 'b>
impl<'a, 'b> Debug for minicbor::decode::decoder::BytesIter<'a, 'b>
impl<'a, 'b> Debug for minicbor::decode::decoder::Probe<'a, 'b>
impl<'a, 'b> Debug for minicbor::decode::decoder::Probe<'a, 'b>
impl<'a, 'b> Debug for minicbor::decode::decoder::StrIter<'a, 'b>
impl<'a, 'b> Debug for minicbor::decode::decoder::StrIter<'a, 'b>
impl<'a, 'b> Debug for SliceReadFixed<'a, 'b>
impl<'a, 'b, C, K, V> Debug for minicbor::decode::decoder::MapIterWithCtx<'a, 'b, C, K, V>
impl<'a, 'b, C, K, V> Debug for minicbor::decode::decoder::MapIterWithCtx<'a, 'b, C, K, V>
impl<'a, 'b, C, T> Debug for minicbor::decode::decoder::ArrayIterWithCtx<'a, 'b, C, T>
impl<'a, 'b, C, T> Debug for minicbor::decode::decoder::ArrayIterWithCtx<'a, 'b, C, T>
impl<'a, 'b, K, V> Debug for minicbor::decode::decoder::MapIter<'a, 'b, K, V>
impl<'a, 'b, K, V> Debug for minicbor::decode::decoder::MapIter<'a, 'b, K, V>
impl<'a, 'b, T> Debug for minicbor::decode::decoder::ArrayIter<'a, 'b, T>where
T: Debug,
impl<'a, 'b, T> Debug for minicbor::decode::decoder::ArrayIter<'a, 'b, T>where
T: Debug,
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'f> Debug for VaList<'a, 'f>where
'f: 'a,
impl<'a, A> Debug for core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for BoxDoc<'a, A>where
A: Debug,
impl<'a, A> Debug for RcDoc<'a, A>where
A: Debug,
impl<'a, A> Debug for RefDoc<'a, A>where
A: Debug,
impl<'a, D, A> Debug for BuildDoc<'a, D, A>
impl<'a, D, A> Debug for DocBuilder<'a, D, A>
impl<'a, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
std or alloc only.impl<'a, E> Debug for StrDeserializer<'a, E>
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I, A> Debug for Splice<'a, I, A>
impl<'a, K, V> Debug for slotmap::secondary::Entry<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::Entry<'a, K, V>
impl<'a, K, V> Debug for ic_certification::rb_tree::Iter<'a, K, V>
impl<'a, K, V> Debug for ic_certification::rb_tree::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap::basic::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap::basic::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap::basic::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::basic::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap::basic::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap::basic::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap::dense::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap::hop::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::OccupiedEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::VacantEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap::secondary::ValuesMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::Drain<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::Iter<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::IterMut<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::Keys<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::OccupiedEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::VacantEntry<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::Values<'a, K, V>
impl<'a, K, V> Debug for slotmap::sparse_secondary::ValuesMut<'a, K, V>
impl<'a, P> Debug for MatchIndices<'a, P>
impl<'a, P> Debug for 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 SplitTerminator<'a, P>
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 Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for 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> Debug for smallvec::Drain<'a, T>
impl<'a, T, A> Debug for Doc<'a, T, 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, P> Debug for ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'b> Debug for convert_case::case::Case<'b>
impl<'b> Debug for minicbor::decode::decoder::Decoder<'b>
impl<'b> Debug for minicbor::decode::decoder::Decoder<'b>
impl<'de> Debug for minicbor_serde::de::Deserializer<'de>
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<'de, R, T> Debug for StreamDeserializer<'de, R, T>
impl<'f> Debug for VaListImpl<'f>
impl<'i> Debug for DeValue<'i>
impl<'i> Debug for DeFloat<'i>
impl<'i> Debug for DeInteger<'i>
impl<'i> Debug for Raw<'i>
impl<'i> Debug for toml_parser::source::Source<'i>
impl<'m, 'a> Debug for Call<'m, 'a>
impl<'m, 'a> Debug for CallFuture<'m, 'a>
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<'scope, T> Debug for ScopedJoinHandle<'scope, T>
impl<'tree> Debug for ic_certification::hash_tree::LookupResult<'tree>
impl<'tree> Debug for ic_certification::hash_tree::LookupResult<'tree>
impl<A> Debug for core::iter::sources::repeat::Repeat<A>where
A: Debug,
impl<A> Debug for 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> Debug for arrayvec::array_string::ArrayString<A>
impl<A> Debug for arrayvec::ArrayVec<A>
impl<A> Debug for arrayvec::IntoIter<A>
impl<A> Debug for ExtendedGcd<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, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for Zip<A, B>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for std::io::Lines<B>where
B: Debug,
impl<B> Debug for std::io::Split<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>
impl<BlockSize, Kind> Debug for BlockBuffer<BlockSize, Kind>where
BlockSize: Debug + ArrayLength<u8> + IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>,
Kind: Debug + BufferKind,
<BlockSize as IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>>::Output: NonZero,
impl<C> Debug for ContextError<C>where
C: Debug,
impl<Callback> Debug for ArchivedRange<Callback>where
Callback: Debug,
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for ErrMode<E>where
E: Debug,
impl<E> Debug for Report<E>
impl<E> Debug for minicbor_serde::error::EncodeError<E>where
E: Debug,
impl<E> Debug for minicbor::encode::error::Error<E>where
E: Debug,
impl<E> Debug for minicbor::encode::error::Error<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>
std or alloc only.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 + EntityKind> Debug for icydb_core::db::response::Response<E>
impl<F> Debug for core::fmt::builders::FromFn<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 Fwhere
F: FnPtr,
impl<F, const WINDOW_SIZE: usize> Debug for WnafScalar<F, WINDOW_SIZE>where
F: Debug + PrimeField,
impl<G> Debug for FromCoroutine<G>
impl<G, const WINDOW_SIZE: usize> Debug for WnafBase<G, WINDOW_SIZE>
impl<H> Debug for BuildHasherDefault<H>
impl<H> Debug for ExpandMsgXmd<H>
impl<H> Debug for ExpandMsgXof<H>where
H: ExtendableOutput,
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for Cloned<I>where
I: Debug,
impl<I> Debug for Copied<I>where
I: Debug,
impl<I> Debug for Cycle<I>where
I: Debug,
impl<I> Debug for Enumerate<I>where
I: Debug,
impl<I> Debug for Fuse<I>where
I: Debug,
impl<I> Debug for Intersperse<I>
impl<I> Debug for Peekable<I>
impl<I> Debug for Skip<I>where
I: Debug,
impl<I> Debug for StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<I> Debug for minicbor::encode::ArrayIter<I>where
I: Debug,
impl<I> Debug for minicbor::encode::ArrayIter<I>where
I: Debug,
impl<I> Debug for minicbor::encode::MapIter<I>where
I: Debug,
impl<I> Debug for minicbor::encode::MapIter<I>where
I: Debug,
impl<I> Debug for InputError<I>
impl<I> Debug for LocatingSlice<I>where
I: Debug,
impl<I> Debug for Partial<I>where
I: Debug,
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 FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for 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, P> Debug for 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, U> Debug for Flatten<I>
impl<I, U, F> Debug for FlatMap<I, U, F>
impl<I, const N: usize> Debug for ArrayChunks<I, N>
impl<Idx> Debug for Clamp<Idx>where
Idx: Debug,
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 core::ops::range::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<Idx> Debug for core::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<Input, Output> Debug for QueryArchiveFn<Input, Output>
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 alloc::collections::btree::set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, F> Debug for std::collections::hash::set::ExtractIf<'_, K, F>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for ic_certification::nested_rb_tree::NestedTree<K, V>where
K: NestedTreeKeyRequirements,
V: NestedTreeValueRequirements,
impl<K, V> Debug for ic_certification::nested_rb_tree::NestedTree<K, V>
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Drain<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for ic_certification::rb_tree::RbTree<K, V>
impl<K, V> Debug for ic_certification::rb_tree::RbTree<K, V>
impl<K, V> Debug for slotmap::basic::IntoIter<K, V>
impl<K, V> Debug for SlotMap<K, V>
impl<K, V> Debug for DenseSlotMap<K, V>
impl<K, V> Debug for slotmap::dense::IntoIter<K, V>
impl<K, V> Debug for HopSlotMap<K, V>
impl<K, V> Debug for slotmap::hop::IntoIter<K, V>
impl<K, V> Debug for slotmap::secondary::IntoIter<K, V>
impl<K, V> Debug for SecondaryMap<K, V>
impl<K, V> Debug for slotmap::sparse_secondary::IntoIter<K, V>
impl<K, V> Debug for toml::map::Map<K, V>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>
impl<K, V, F> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F>
impl<K, V, R, F, A> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S> Debug for HashMap<K, V, S>
impl<K, V, S> Debug for SparseSecondaryMap<K, V, S>
impl<K: Debug, V: Debug> Debug for MapPatch<K, V>
impl<M> Debug for BufferedStableReader<M>where
M: Debug + StableMemory,
impl<M> Debug for BufferedStableWriter<M>where
M: Debug + StableMemory,
impl<M> Debug for StableIO<M>where
M: Debug + StableMemory,
impl<M> Debug for StableReader<M>where
M: Debug + StableMemory,
impl<M> Debug for StableWriter<M>where
M: Debug + StableMemory,
impl<N> Debug for TomlInteger<N>where
N: Debug,
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<Ptr, BR> Debug for FilePtr<Ptr, BR>
impl<R> Debug for BufReader<R>
impl<R> Debug for std::io::Bytes<R>where
R: Debug,
impl<R> Debug for BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for serde_cbor::de::Deserializer<R>where
R: Debug,
impl<R> Debug for IoRead<R>
impl<Storage> Debug for ic_certification::hash_tree::HashTreeNode<Storage>
impl<Storage> Debug for ic_certification::hash_tree::HashTreeNode<Storage>
impl<Storage> Debug for ic_certification::hash_tree::SubtreeLookupResult<Storage>
impl<Storage> Debug for ic_certification::hash_tree::SubtreeLookupResult<Storage>
impl<Storage> Debug for ic_certification::certificate::Certificate<Storage>
impl<Storage> Debug for ic_certification::certificate::Certificate<Storage>
impl<Storage> Debug for ic_certification::certificate::Delegation<Storage>
impl<Storage> Debug for ic_certification::certificate::Delegation<Storage>
impl<Storage> Debug for ic_certification::hash_tree::HashTree<Storage>
impl<Storage> Debug for ic_certification::hash_tree::HashTree<Storage>
impl<Storage> Debug for ic_certification::hash_tree::Label<Storage>
impl<Storage> Debug for ic_certification::hash_tree::Label<Storage>
impl<T> Debug for core::ops::range::Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for TrySendError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for LocalResult<T>where
T: Debug,
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.
impl<T> Debug for EqualityFilter<T>
impl<T> Debug for ListFilter<T>where
T: IntoScopedFilterExpr + Debug,
impl<T> Debug for ListValueFilter<T>where
T: FieldValue + Debug,
impl<T> Debug for ThinBox<T>
impl<T> Debug for alloc::collections::binary_heap::Iter<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::btree::set::Iter<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::btree::set::SymmetricDifference<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::btree::set::Union<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::linked_list::Iter<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::linked_list::IterMut<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::vec_deque::iter::Iter<'_, T>where
T: Debug,
impl<T> Debug for alloc::collections::vec_deque::iter_mut::IterMut<'_, T>where
T: Debug,
impl<T> Debug for OnceCell<T>where
T: Debug,
impl<T> Debug for Cell<T>
impl<T> Debug for Ref<'_, T>
impl<T> Debug for RefCell<T>
impl<T> Debug for RefMut<'_, T>
impl<T> Debug for SyncUnsafeCell<T>where
T: ?Sized,
impl<T> Debug for UnsafeCell<T>where
T: ?Sized,
impl<T> Debug for Reverse<T>where
T: Debug,
impl<T> Debug for NumBuffer<T>where
T: Debug + NumBufferTrait,
impl<T> Debug for Pending<T>
impl<T> Debug for Ready<T>where
T: Debug,
impl<T> Debug for Rev<T>where
T: Debug,
impl<T> Debug for core::iter::sources::empty::Empty<T>
impl<T> Debug for core::iter::sources::once::Once<T>where
T: Debug,
impl<T> Debug for PhantomData<T>where
T: ?Sized,
impl<T> Debug for PhantomContravariant<T>where
T: ?Sized,
impl<T> Debug for PhantomCovariant<T>where
T: ?Sized,
impl<T> Debug for PhantomInvariant<T>where
T: ?Sized,
impl<T> Debug for ManuallyDrop<T>
impl<T> Debug for Discriminant<T>
impl<T> Debug for NonZero<T>where
T: ZeroablePrimitive + Debug,
impl<T> Debug for Saturating<T>where
T: Debug,
impl<T> Debug for Wrapping<T>where
T: Debug,
impl<T> Debug for Yeet<T>where
T: Debug,
impl<T> Debug for AssertUnwindSafe<T>where
T: Debug,
impl<T> Debug for UnsafePinned<T>where
T: ?Sized,
impl<T> Debug for NonNull<T>where
T: ?Sized,
impl<T> Debug for core::result::IntoIter<T>where
T: Debug,
impl<T> Debug for core::slice::iter::Iter<'_, T>where
T: Debug,
impl<T> Debug for core::slice::iter::IterMut<'_, T>where
T: Debug,
impl<T> Debug for AtomicPtr<T>
target_has_atomic_load_store=ptr only.