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 icydb::base::types::ic::icrc3::Value
impl Debug for EntityRelationCardinality
impl Debug for EntityRelationStrength
impl Debug for ExplainExecutionNodeType
impl Debug for ExplainExecutionOrderingSource
impl Debug for MutationMode
impl Debug for CompareOp
impl Debug for MissingRowPolicy
impl Debug for icydb::db::query::expr::FilterExpr
impl Debug for icydb::db::query::expr::OrderDirection
impl Debug for SqlQueryResult
impl Debug for icydb::error::ErrorKind
impl Debug for icydb::error::ErrorOrigin
impl Debug for QueryErrorKind
impl Debug for RuntimeErrorKind
impl Debug for AccountEncodeError
impl Debug for Float32DecodeError
impl Debug for Float64DecodeError
impl Debug for Predicate
impl Debug for PrincipalDecodeError
impl Debug for PrincipalEncodeError
impl Debug for icydb::prelude::PrincipalError
impl Debug for UlidDecodeError
impl Debug for UlidError
impl Debug for icydb::prelude::Value
impl Debug for icydb::visitor::PathSegment
impl Debug for SanitizeWriteMode
impl Debug for FieldValueKind
impl Debug for icydb::traits::Ordering
impl Debug for TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for CharCase
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 Locality
impl Debug for AtomicOrdering
impl Debug for SimdAlign
impl Debug for core::mem::type_info::Abi
impl Debug for Generic
impl Debug for TypeKind
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 Level
impl Debug for ConversionErrorKind
impl Debug for proc_macro::Delimiter
impl Debug for proc_macro::Spacing
impl Debug for proc_macro::TokenTree
Prints token tree in a form convenient for debugging.
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 std::sync::mpsc::RecvTimeoutError
impl Debug for std::sync::mpsc::TryRecvError
impl Debug for Endian
impl Debug for binread::error::Error
impl Debug for binread::io::error::ErrorKind
impl Debug for byteorder::BigEndian
impl Debug for byteorder::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 SnsRole
impl Debug for SnsType
impl Debug for TransferFromError
impl Debug for ConsentMessage
impl Debug for DisplayMessageType
impl Debug for canic_cdk::spec::standards::icrc::icrc21::Value
impl Debug for Icrc21Error
impl Debug for AssetClass
impl Debug for ExchangeRateError
impl Debug for GetExchangeRateResult
impl Debug for HttpStatus
impl Debug for MemoryRegistryError
impl Debug for canic_memory::serialize::SerializeError
impl Debug for const_oid::error::Error
impl Debug for Boundary
impl Debug for Pattern
impl Debug for Style
impl Debug for NestedMeta
impl Debug for Purpose
impl Debug for Shape
impl Debug for BitOrder
impl Debug for DecodeKind
impl Debug for BinaryError
impl Debug for digest::block_api::TruncSide
impl Debug for digest::core_api::TruncSide
impl Debug for FromHexError
impl Debug for SignCallError
impl Debug for CanisterStatusCode
impl Debug for PerformanceCounterType
impl Debug for SignCostError
impl Debug for CallFailed
impl Debug for ic_cdk::call::Error
impl Debug for OnewayError
impl Debug for StableMemoryError
impl Debug for ErrorCode
impl Debug for RejectCode
impl Debug for TryFromError
impl Debug for CanisterInstallMode
impl Debug for CanisterLogFilter
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_stable_structures::base_vec::InitError
impl Debug for ic_stable_structures::cell::InitError
impl Debug for ValueError
impl Debug for ic_stable_structures::log::InitError
impl Debug for WriteError
impl Debug for ic_stable_structures::storable::Bound
impl Debug for ic_principal::PrincipalError
impl Debug for ExecutionAccessPathVariant
impl Debug for ExecutionOptimization
impl Debug for RouteExecutionMode
impl Debug for ExecutionFamily
impl Debug for IndexState
impl Debug for MigrationRunState
impl Debug for CoercionId
impl Debug for UnsupportedQueryFeature
impl Debug for IntentError
impl Debug for QueryError
impl Debug for QueryExecutionError
impl Debug for icydb_core::db::query::plan::model::OrderDirection
impl Debug for QueryMode
impl Debug for PlanError
impl Debug for ResponseError
impl Debug for ValidateError
impl Debug for SqlStatementResult
impl Debug for ErrorClass
impl Debug for ErrorDetail
impl Debug for icydb_core::error::ErrorOrigin
impl Debug for QueryErrorDetail
impl Debug for StoreError
impl Debug for FieldInsertGeneration
impl Debug for FieldKind
impl Debug for FieldStorageDecode
impl Debug for icydb_core::model::field::FieldWriteManagement
impl Debug for RelationStrength
impl Debug for icydb_core::model::index::IndexExpression
impl Debug for icydb_core::model::index::IndexKeyItem
impl Debug for icydb_core::model::index::IndexKeyItemsRef
impl Debug for icydb_core::serialize::SerializeError
impl Debug for SerializeErrorKind
impl Debug for CoercionFamily
impl Debug for MapValueError
impl Debug for SchemaInvariantError
impl Debug for TextMode
impl Debug for StorageKey
impl Debug for StorageKeyDecodeError
impl Debug for StorageKeyEncodeError
impl Debug for ValueTag
impl Debug for ScalarCoercionFamily
impl Debug for ScalarKind
impl Debug for BuildError
impl Debug for icydb_schema::Error
impl Debug for Arg
impl Debug for ArgNumber
impl Debug for NodeError
impl Debug for FieldGeneration
impl Debug for icydb_schema::node::field::FieldWriteManagement
impl Debug for icydb_schema::node::index::IndexExpression
impl Debug for icydb_schema::node::index::IndexKeyItem
impl Debug for icydb_schema::node::index::IndexKeyItemsRef
impl Debug for ItemTarget
impl Debug for PrimaryKeySource
impl Debug for SchemaNode
impl Debug for Cardinality
impl Debug for Primitive
impl Debug for Event
impl Debug for icydb_utils::case::Case
impl Debug for RngError
impl Debug for RenameRule
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 num_bigint::bigint::Sign
impl Debug for FloatErrorKind
impl Debug for proc_macro2::Delimiter
impl Debug for proc_macro2::Spacing
impl Debug for proc_macro2::TokenTree
Prints token tree in a form convenient for debugging.
impl Debug for StackDirection
impl Debug for Category
impl Debug for serde_cbor::value::Value
impl Debug for CollectionAllocErr
impl Debug for StrSimError
impl Debug for ParseError
impl Debug for AttrStyle
derive or full only.impl Debug for Meta
derive or full only.impl Debug for syn::data::Fields
derive or full only.impl Debug for syn::derive::Data
derive only.impl Debug for Expr
derive or full only.impl Debug for Member
derive or full only.impl Debug for PointerMutability
full only.impl Debug for RangeLimits
full only.impl Debug for CapturedParam
full only.impl Debug for syn::generics::GenericParam
derive or full only.impl Debug for TraitBoundModifier
derive or full only.impl Debug for TypeParamBound
derive or full only.impl Debug for WherePredicate
derive or full only.impl Debug for FnArg
full only.impl Debug for ForeignItem
full only.impl Debug for ImplItem
full only.impl Debug for ImplRestriction
full only.impl Debug for syn::item::Item
full only.impl Debug for StaticMutability
full only.impl Debug for TraitItem
full only.impl Debug for UseTree
full only.impl Debug for Lit
impl Debug for MacroDelimiter
derive or full only.impl Debug for BinOp
derive or full only.impl Debug for UnOp
derive or full only.impl Debug for Pat
full only.impl Debug for GenericArgument
derive or full only.impl Debug for PathArguments
derive or full only.impl Debug for FieldMutability
derive or full only.impl Debug for Visibility
derive or full only.impl Debug for Stmt
full only.impl Debug for ReturnType
derive or full only.impl Debug for syn::ty::Type
derive or full only.impl Debug for time::error::Error
impl Debug for Format
impl Debug for InvalidFormatDescription
impl Debug for Parse
impl Debug for ParseFromDescription
impl Debug for TryFromParsed
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 TrailingInput
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 OffsetPrecision
impl Debug for TimePrecision
impl Debug for time::month::Month
impl Debug for time::weekday::Weekday
impl Debug for ulid::base32::DecodeError
impl Debug for EncodeError
impl Debug for GraphemeIncomplete
impl Debug for zerocopy::byteorder::BigEndian
impl Debug for zerocopy::byteorder::LittleEndian
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 icydb::base::sanitizer::intl::iso::Iso639_1
impl Debug for icydb::base::sanitizer::intl::iso::Iso3166_1A2
impl Debug for icydb::base::sanitizer::intl::phone::E164PhoneNumber
impl Debug for icydb::base::sanitizer::num::Clamp
impl Debug for RoundDecimalPlaces
impl Debug for AlphaNumeric
impl Debug for Numeric
impl Debug for icydb::base::sanitizer::text::case::Kebab
impl Debug for icydb::base::sanitizer::text::case::Lower
impl Debug for icydb::base::sanitizer::text::case::Snake
impl Debug for icydb::base::sanitizer::text::case::Title
impl Debug for icydb::base::sanitizer::text::case::Upper
impl Debug for icydb::base::sanitizer::text::case::UpperCamel
impl Debug for icydb::base::sanitizer::text::case::UpperSnake
impl Debug for icydb::base::sanitizer::text::color::RgbHex
impl Debug for icydb::base::sanitizer::text::color::RgbaHex
impl Debug for Trim
impl Debug for icydb::base::sanitizer::time::CreatedAt
impl Debug for icydb::base::sanitizer::time::UpdatedAt
impl Debug for icydb::base::sanitizer::web::MimeType
impl Debug for icydb::base::sanitizer::web::Url
impl Debug for icydb::base::types::bytes::Utf8
impl Debug for Rgb
impl Debug for icydb::base::types::color::RgbHex
impl Debug for Rgba
impl Debug for icydb::base::types::color::RgbaHex
impl Debug for E8s
impl Debug for E18s
impl Debug for Usd
impl Debug for AddressLine
impl Debug for CityName
impl Debug for PostalCode
impl Debug for RegionName
impl Debug for icydb::base::types::hash::Sha256
impl Debug for icydb::base::types::ic::icp::Payment
impl Debug for icydb::base::types::ic::icp::Tokens
impl Debug for icydb::base::types::ic::icrc1::Payment
impl Debug for TokenAmount
impl Debug for icydb::base::types::ic::icrc1::Tokens
impl Debug for icydb::base::types::ic::icrc3::value::Map
impl Debug for Memo
impl Debug for Constant
impl Debug for icydb::base::types::ident::Field
impl Debug for icydb::base::types::ident::Function
impl Debug for Variable
impl Debug for icydb::base::types::ident::Variant
impl Debug for CountryCode
impl Debug for LanguageCode
impl Debug for PhoneNumber
impl Debug for Code
impl Debug for DecimalRange
impl Debug for Degrees
impl Debug for DurationRange
impl Debug for Int32Range
impl Debug for Nat32Range
impl Debug for icydb::base::types::num::Percent
impl Debug for PercentModifier
impl Debug for icydb::base::types::time::CreatedAt
impl Debug for Milliseconds
impl Debug for Minutes
impl Debug for Seconds
impl Debug for icydb::base::types::time::UpdatedAt
impl Debug for icydb::base::types::web::MimeType
impl Debug for icydb::base::types::web::Url
impl Debug for icydb::base::validator::bytes::Utf8
impl Debug for MaxDecimalPlaces
impl Debug for icydb::base::validator::hash::Sha256
impl Debug for icydb::base::validator::intl::iso::Iso639_1
impl Debug for icydb::base::validator::intl::iso::Iso3166_1A2
impl Debug for icydb::base::validator::intl::phone::E164PhoneNumber
impl Debug for icydb::base::validator::len::Equal
impl Debug for Max
impl Debug for Min
impl Debug for icydb::base::validator::len::Range
impl Debug for icydb::base::validator::num::Equal
impl Debug for icydb::base::validator::num::Gt
impl Debug for Gte
impl Debug for icydb::base::validator::num::Lt
impl Debug for Lte
impl Debug for MultipleOf
impl Debug for NotEqual
impl Debug for icydb::base::validator::num::Range
impl Debug for icydb::base::validator::text::case::Kebab
impl Debug for icydb::base::validator::text::case::Lower
impl Debug for LowerUscore
impl Debug for icydb::base::validator::text::case::Snake
impl Debug for icydb::base::validator::text::case::Title
impl Debug for icydb::base::validator::text::case::Upper
impl Debug for icydb::base::validator::text::case::UpperCamel
impl Debug for icydb::base::validator::text::case::UpperSnake
impl Debug for icydb::base::validator::text::color::RgbHex
impl Debug for icydb::base::validator::text::color::RgbaHex
impl Debug for AlphaUscore
impl Debug for AlphanumUscore
impl Debug for Ascii
impl Debug for icydb::base::validator::web::MimeType
impl Debug for icydb::base::validator::web::Url
impl Debug for icydb::db::query::expr::SortExpr
impl Debug for AggregateExpr
impl Debug for ExplainPlan
impl Debug for NumericProjectionExpr
impl Debug for RoundProjectionExpr
impl Debug for TextProjectionExpr
impl Debug for PagedGroupedResponse
impl Debug for SqlGroupedRowsOutput
impl Debug for SqlProjectionRows
impl Debug for SqlQueryRowsOutput
impl Debug for EntityFieldDescription
impl Debug for EntityIndexDescription
impl Debug for EntityRelationDescription
impl Debug for EntitySchemaDescription
impl Debug for ExplainAggregateTerminalPlan
impl Debug for ExplainExecutionDescriptor
impl Debug for ExplainExecutionNodeDescriptor
impl Debug for QueryTracePlan
impl Debug for StorageReport
impl Debug for icydb::error::Error
impl Debug for icydb::prelude::Account
impl Debug for icydb::prelude::Blob
impl Debug for icydb::prelude::Date
impl Debug for Decimal
impl Debug for DecimalParts
impl Debug for icydb::prelude::Duration
impl Debug for EntityTag
impl Debug for Float32
impl Debug for Float64
impl Debug for Int128
impl Debug for icydb::prelude::Int
impl Debug for Nat128
impl Debug for icydb::prelude::Nat
impl Debug for ParseDecimalError
impl Debug for icydb::prelude::Principal
impl Debug for ProjectedIdentity
impl Debug for Subaccount
impl Debug for Timestamp
impl Debug for icydb::prelude::Ulid
impl Debug for Unit
impl Debug for Issue
impl Debug for SanitizeWriteContext
impl Debug for VisitorError
impl Debug for VisitorIssues
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 core::alloc::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 ToTitlecase
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 VaList<'_>
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 core::mem::alignment::Alignment
impl Debug for Assume
impl Debug for core::mem::type_info::Array
impl Debug for Bool
impl Debug for Char
impl Debug for core::mem::type_info::Const
impl Debug for DynTrait
impl Debug for DynTraitPredicate
impl Debug for core::mem::type_info::Enum
impl Debug for core::mem::type_info::Field
impl Debug for Float
impl Debug for FnPtr
impl Debug for GenericType
impl Debug for core::mem::type_info::Int
impl Debug for core::mem::type_info::Lifetime
impl Debug for Pointer
impl Debug for Reference
impl Debug for Slice
impl Debug for Str
impl Debug for core::mem::type_info::Struct
impl Debug for core::mem::type_info::Trait
impl Debug for core::mem::type_info::Tuple
impl Debug for core::mem::type_info::Type
impl Debug for core::mem::type_info::Union
impl Debug for core::mem::type_info::Variant
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::error::ParseIntError
impl Debug for core::num::error::TryFromIntError
impl Debug for core::num::float_parse::ParseFloatError
impl Debug for RangeFull
impl Debug for Location<'_>
impl Debug for PanicMessage<'_>
impl Debug for ParseBoolError
impl Debug for Utf8Error
impl Debug for Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for Utf8Chunks<'_>
impl Debug for Atomic<bool>
target_has_atomic_load_store=8 only.impl Debug for Atomic<i8>
impl Debug for Atomic<i16>
impl Debug for Atomic<i32>
impl Debug for Atomic<i64>
impl Debug for Atomic<isize>
impl Debug for Atomic<u8>
impl Debug for Atomic<u16>
impl Debug for Atomic<u32>
impl Debug for Atomic<u64>
impl Debug for Atomic<usize>
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 Diagnostic
impl Debug for ExpandError
impl Debug for proc_macro::Group
impl Debug for proc_macro::Ident
impl Debug for proc_macro::LexError
impl Debug for proc_macro::Literal
impl Debug for proc_macro::Punct
impl Debug for proc_macro::Span
Prints a span in a form convenient for debugging.
impl Debug for proc_macro::TokenStream
Prints tokens in a form convenient for debugging.
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for std::env::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 Dir
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for std::fs::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 std::path::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 block_buffer::Eager
impl Debug for block_buffer::Eager
impl Debug for block_buffer::Error
impl Debug for block_buffer::Error
impl Debug for block_buffer::Lazy
impl Debug for block_buffer::Lazy
impl Debug for Header
impl Debug for candid::error::Label
impl Debug for DocComments
impl Debug for candid::types::internal::Field
impl Debug for FieldDoc
impl Debug for candid::types::internal::Function
impl Debug for candid::types::internal::Type
impl Debug for TypeDoc
impl Debug for TypeDocs
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 Incompatibility
impl Debug for TypeEnv
impl Debug for SnsCanisters
impl Debug for GetSubnetForCanisterPayload
impl Debug for GetSubnetForCanisterRequest
impl Debug for NeuronId
impl Debug for AllowanceArgs
impl Debug for Icrc10SupportedStandard
impl Debug for ErrorInfo
impl Debug for ConsentInfo
impl Debug for ConsentMessageMetadata
impl Debug for ConsentMessageRequest
impl Debug for ConsentMessageSpec
impl Debug for FieldsDisplay
impl Debug for Asset
impl Debug for ExchangeRate
impl Debug for ExchangeRateMetadata
impl Debug for GetExchangeRateRequest
impl Debug for IcpXdrConversionRate
impl Debug for IcpXdrConversionRateCertifiedResponse
impl Debug for IcpXdrConversionRateResponse
impl Debug for CallbackFunc
impl Debug for canic_cdk::types::account::Account
impl Debug for Cycles
impl Debug for WasmModule
impl Debug for MemoryInspection
impl Debug for RegisteredMemory
impl Debug for MemoryRange
impl Debug for MemoryRangeEntry
impl Debug for MemoryRangeSnapshot
impl Debug for MemoryRegistryEntry
impl Debug for ObjectIdentifierRef
impl Debug for Hasher
impl Debug for DeserializeStateError
impl Debug for InvalidKey
impl Debug for crypto_common::InvalidLength
impl Debug for crypto_common::InvalidLength
impl Debug for Accumulator
impl Debug for darling_core::error::Error
impl Debug for Options
impl Debug for Callable
impl Debug for Flag
impl Debug for IdentString
impl Debug for Ignored
impl Debug for PathList
impl Debug for PreservedStrExpr
impl Debug for ShapeSet
impl Debug for data_encoding::DecodeError
impl Debug for DecodePartial
impl Debug for 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 digest::InvalidBufferSize
impl Debug for digest::InvalidBufferSize
impl Debug for digest::InvalidOutputSize
impl Debug for digest::InvalidOutputSize
impl Debug for half::bfloat::bf16
impl Debug for f16
impl Debug for TryFromIteratorError
impl Debug for MethodHandle
impl Debug for TaskHandle
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 TaskId
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 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 FetchCanisterLogsArgs
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 RenameCanisterRecord
impl Debug for RenameToRecord
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 NoSuchEntry
impl Debug for MemoryId
impl Debug for OutOfBounds
impl Debug for ic_stable_structures::storable::TryFromSliceError
impl Debug for GrowFailed
impl Debug for ic_principal::Principal
impl Debug for UpdatePatch
impl Debug for ExecutionMetrics
impl Debug for ExecutionTrace
impl Debug for IntegrityReport
impl Debug for IntegrityStoreSnapshot
impl Debug for IntegrityTotals
impl Debug for EntityAuthority
impl Debug for EntityName
impl Debug for IndexName
impl Debug for MigrationCursor
impl Debug for MigrationPlan
impl Debug for MigrationRowOp
impl Debug for MigrationRunOutcome
impl Debug for MigrationStep
impl Debug for CompareFieldsPredicate
impl Debug for ComparePredicate
impl Debug for icydb_core::db::query::expr::FilterExpr
impl Debug for icydb_core::db::query::expr::SortExpr
impl Debug for DeleteSpec
impl Debug for LoadSpec
impl Debug for GroupedRow
impl Debug for PagedGroupedExecution
impl Debug for PagedGroupedExecutionWithTrace
impl Debug for LoweredSqlCommand
impl Debug for InternalError
impl Debug for EventCounters
impl Debug for EventReport
impl Debug for EntityModel
impl Debug for EnumVariantModel
impl Debug for FieldModel
impl Debug for IndexModel
impl Debug for IndexPredicateMetadata
impl Debug for ValueEnum
impl Debug for ScalarMetadata
impl Debug for ErrorTree
impl Debug for icydb_schema::node::arg::Args
impl Debug for Canister
impl Debug for Def
impl Debug for Entity
impl Debug for icydb_schema::node::enum::Enum
impl Debug for EnumVariant
impl Debug for icydb_schema::node::field::Field
impl Debug for FieldList
impl Debug for icydb_schema::node::index::Index
impl Debug for icydb_schema::node::item::Item
impl Debug for List
impl Debug for icydb_schema::node::map::Map
impl Debug for Newtype
impl Debug for PrimaryKey
impl Debug for Record
impl Debug for Sanitizer
impl Debug for Schema
impl Debug for Set
impl Debug for Store
impl Debug for icydb_schema::node::tuple::Tuple
impl Debug for icydb_schema::node::type::Type
impl Debug for TypeSanitizer
impl Debug for TypeValidator
impl Debug for Validator
impl Debug for icydb_schema::node::value::Value
impl Debug for ValidateVisitor
impl Debug for rtentry
impl Debug for bcm_msg_head
impl Debug for bcm_timeval
impl Debug for j1939_filter
impl Debug for can_berr_counter
impl Debug for can_bittiming
impl Debug for can_bittiming_const
impl Debug for can_clock
impl Debug for can_ctrlmode
impl Debug for can_device_stats
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 nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for sockaddr_nl
impl Debug for pidfd_info
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 ethhdr
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 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 __c_anonymous__kernel_fsid_t
impl Debug for af_alg_iv
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 file_handle
impl Debug for genlmsghdr
impl Debug for hwtstamp_config
impl Debug for ifinfomsg
impl Debug for in6_ifreq
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 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 mount_attr
impl Debug for mq_attr
impl Debug for msginfo
impl Debug for open_how
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 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 signalfd_siginfo
impl Debug for sock_extended_err
impl Debug for sock_txtime
impl Debug for sockaddr_alg
impl Debug for sockaddr_pkt
impl Debug for sockaddr_vm
impl Debug for sockaddr_xdp
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 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 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_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 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 fsid_t
impl Debug for glob_t
impl Debug for ifconf
impl Debug for ifreq
impl Debug for in6_pktinfo
impl Debug for itimerspec
impl Debug for mntent
impl Debug for option
impl Debug for packet_mreq
impl Debug for passwd
impl Debug for regmatch_t
impl Debug for rlimit64
impl Debug for sembuf
impl Debug for spwd
impl Debug for ucred
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 if_nameindex
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 BigInt
impl Debug for BigUint
impl Debug for ParseBigIntError
impl Debug for num_traits::ParseFloatError
impl Debug for FormatterOptions
impl Debug for DelimSpan
impl Debug for proc_macro2::Group
impl Debug for proc_macro2::Ident
impl Debug for proc_macro2::LexError
impl Debug for proc_macro2::Literal
impl Debug for proc_macro2::Punct
impl Debug for proc_macro2::Span
Prints a span in a form convenient for debugging.
impl Debug for proc_macro2::TokenStream
Prints token in a form convenient for debugging.
impl Debug for proc_macro2::token_stream::IntoIter
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 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 sha2::block_api::Sha256VarCore
impl Debug for sha2::block_api::Sha512VarCore
impl Debug for sha2::core_api::Sha256VarCore
impl Debug for sha2::core_api::Sha512VarCore
impl Debug for Sha224
impl Debug for sha2::Sha256
impl Debug for Sha384
impl Debug for Sha512
impl Debug for Sha512_224
impl Debug for Sha512_256
impl Debug for DefaultKey
impl Debug for KeyData
impl Debug for Attribute
derive or full only.impl Debug for MetaList
derive or full only.impl Debug for MetaNameValue
derive or full only.impl Debug for syn::data::Field
derive or full only.impl Debug for FieldsNamed
derive or full only.impl Debug for FieldsUnnamed
derive or full only.impl Debug for syn::data::Variant
derive or full only.impl Debug for DataEnum
derive only.impl Debug for DataStruct
derive only.impl Debug for DataUnion
derive only.impl Debug for DeriveInput
derive only.impl Debug for syn::error::Error
impl Debug for Arm
full only.impl Debug for ExprArray
full only.impl Debug for ExprAssign
full only.impl Debug for ExprAsync
full only.impl Debug for ExprAwait
full only.impl Debug for ExprBinary
derive or full only.impl Debug for ExprBlock
full only.impl Debug for ExprBreak
full only.impl Debug for ExprCall
derive or full only.impl Debug for ExprCast
derive or full only.impl Debug for ExprClosure
full only.impl Debug for ExprConst
full only.impl Debug for ExprContinue
full only.impl Debug for ExprField
derive or full only.impl Debug for ExprForLoop
full only.impl Debug for ExprGroup
derive or full only.impl Debug for ExprIf
full only.impl Debug for ExprIndex
derive or full only.impl Debug for ExprInfer
full only.impl Debug for ExprLet
full only.impl Debug for ExprLit
derive or full only.impl Debug for ExprLoop
full only.impl Debug for ExprMacro
derive or full only.impl Debug for ExprMatch
full only.impl Debug for ExprMethodCall
derive or full only.impl Debug for ExprParen
derive or full only.impl Debug for ExprPath
derive or full only.impl Debug for ExprRange
full only.impl Debug for ExprRawAddr
full only.impl Debug for ExprReference
derive or full only.impl Debug for ExprRepeat
full only.impl Debug for ExprReturn
full only.impl Debug for ExprStruct
derive or full only.impl Debug for ExprTry
full only.impl Debug for ExprTryBlock
full only.impl Debug for ExprTuple
derive or full only.impl Debug for ExprUnary
derive or full only.impl Debug for ExprUnsafe
full only.impl Debug for ExprWhile
full only.impl Debug for ExprYield
full only.impl Debug for FieldValue
derive or full only.impl Debug for syn::expr::Index
derive or full only.impl Debug for syn::expr::Label
full only.impl Debug for syn::file::File
full only.impl Debug for BoundLifetimes
derive or full only.impl Debug for ConstParam
derive or full only.impl Debug for syn::generics::Generics
derive or full only.impl Debug for LifetimeParam
derive or full only.impl Debug for PreciseCapture
full only.impl Debug for PredicateLifetime
derive or full only.impl Debug for PredicateType
derive or full only.impl Debug for TraitBound
derive or full only.impl Debug for TypeParam
derive or full only.impl Debug for WhereClause
derive or full only.impl Debug for ForeignItemFn
full only.impl Debug for ForeignItemMacro
full only.impl Debug for ForeignItemStatic
full only.impl Debug for ForeignItemType
full only.impl Debug for ImplItemConst
full only.impl Debug for ImplItemFn
full only.impl Debug for ImplItemMacro
full only.impl Debug for ImplItemType
full only.impl Debug for ItemConst
full only.impl Debug for ItemEnum
full only.impl Debug for ItemExternCrate
full only.impl Debug for ItemFn
full only.impl Debug for ItemForeignMod
full only.impl Debug for ItemImpl
full only.impl Debug for ItemMacro
full only.impl Debug for ItemMod
full only.impl Debug for ItemStatic
full only.impl Debug for ItemStruct
full only.impl Debug for ItemTrait
full only.impl Debug for ItemTraitAlias
full only.impl Debug for ItemType
full only.impl Debug for ItemUnion
full only.impl Debug for ItemUse
full only.impl Debug for syn::item::Receiver
full only.impl Debug for Signature
full only.impl Debug for TraitItemConst
full only.impl Debug for TraitItemFn
full only.impl Debug for TraitItemMacro
full only.impl Debug for TraitItemType
full only.impl Debug for UseGlob
full only.impl Debug for UseGroup
full only.impl Debug for UseName
full only.impl Debug for UsePath
full only.impl Debug for UseRename
full only.impl Debug for Variadic
full only.impl Debug for syn::lifetime::Lifetime
impl Debug for LitBool
impl Debug for LitByte
impl Debug for LitByteStr
impl Debug for LitCStr
impl Debug for LitChar
impl Debug for LitFloat
impl Debug for LitInt
impl Debug for LitStr
impl Debug for syn::mac::Macro
derive or full only.impl Debug for Nothing
extra-traits only.impl Debug for FieldPat
full only.impl Debug for PatIdent
full only.impl Debug for PatOr
full only.impl Debug for PatParen
full only.impl Debug for PatReference
full only.impl Debug for PatRest
full only.impl Debug for PatSlice
full only.impl Debug for PatStruct
full only.impl Debug for PatTuple
full only.impl Debug for PatTupleStruct
full only.impl Debug for PatType
full only.impl Debug for PatWild
full only.impl Debug for AngleBracketedGenericArguments
derive or full only.impl Debug for AssocConst
derive or full only.impl Debug for AssocType
derive or full only.impl Debug for Constraint
derive or full only.impl Debug for ParenthesizedGenericArguments
derive or full only.impl Debug for syn::path::Path
derive or full only.impl Debug for syn::path::PathSegment
derive or full only.impl Debug for QSelf
derive or full only.impl Debug for VisRestricted
derive or full only.impl Debug for Block
full only.impl Debug for Local
full only.impl Debug for LocalInit
full only.impl Debug for StmtMacro
full only.impl Debug for Abstract
extra-traits only.impl Debug for And
extra-traits only.impl Debug for AndAnd
extra-traits only.impl Debug for AndEq
extra-traits only.impl Debug for As
extra-traits only.impl Debug for Async
extra-traits only.impl Debug for At
extra-traits only.impl Debug for Auto
extra-traits only.impl Debug for Await
extra-traits only.impl Debug for Become
extra-traits only.impl Debug for syn::token::Box
extra-traits only.impl Debug for Brace
extra-traits only.impl Debug for Bracket
extra-traits only.impl Debug for Break
extra-traits only.impl Debug for Caret
extra-traits only.impl Debug for CaretEq
extra-traits only.impl Debug for Colon
extra-traits only.impl Debug for Comma
extra-traits only.impl Debug for syn::token::Const
extra-traits only.impl Debug for Continue
extra-traits only.impl Debug for Crate
extra-traits only.impl Debug for Default
extra-traits only.impl Debug for Do
extra-traits only.impl Debug for Dollar
extra-traits only.impl Debug for Dot
extra-traits only.impl Debug for DotDot
extra-traits only.impl Debug for DotDotDot
extra-traits only.impl Debug for DotDotEq
extra-traits only.impl Debug for Dyn
extra-traits only.impl Debug for Else
extra-traits only.impl Debug for syn::token::Enum
extra-traits only.impl Debug for Eq
extra-traits only.impl Debug for EqEq
extra-traits only.impl Debug for Extern
extra-traits only.impl Debug for FatArrow
extra-traits only.impl Debug for Final
extra-traits only.impl Debug for Fn
extra-traits only.impl Debug for For
extra-traits only.impl Debug for Ge
extra-traits only.impl Debug for syn::token::Group
extra-traits only.impl Debug for syn::token::Gt
extra-traits only.impl Debug for If
extra-traits only.impl Debug for Impl
extra-traits only.impl Debug for In
extra-traits only.impl Debug for LArrow
extra-traits only.impl Debug for Le
extra-traits only.impl Debug for Let
extra-traits only.impl Debug for Loop
extra-traits only.impl Debug for syn::token::Lt
extra-traits only.impl Debug for syn::token::Macro
extra-traits only.impl Debug for Match
extra-traits only.impl Debug for Minus
extra-traits only.impl Debug for MinusEq
extra-traits only.impl Debug for Mod
extra-traits only.impl Debug for Move
extra-traits only.impl Debug for Mut
extra-traits only.impl Debug for Ne
extra-traits only.impl Debug for Not
extra-traits only.impl Debug for Or
extra-traits only.impl Debug for OrEq
extra-traits only.impl Debug for OrOr
extra-traits only.impl Debug for syn::token::Override
extra-traits only.impl Debug for Paren
extra-traits only.impl Debug for PathSep
extra-traits only.impl Debug for syn::token::Percent
extra-traits only.impl Debug for PercentEq
extra-traits only.impl Debug for Plus
extra-traits only.impl Debug for PlusEq
extra-traits only.impl Debug for Pound
extra-traits only.impl Debug for Priv
extra-traits only.impl Debug for Pub
extra-traits only.impl Debug for Question
extra-traits only.impl Debug for RArrow
extra-traits only.impl Debug for Raw
extra-traits only.impl Debug for syn::token::Ref
extra-traits only.impl Debug for Return
extra-traits only.impl Debug for SelfType
extra-traits only.impl Debug for SelfValue
extra-traits only.impl Debug for Semi
extra-traits only.impl Debug for Shl
extra-traits only.impl Debug for ShlEq
extra-traits only.impl Debug for Shr
extra-traits only.impl Debug for ShrEq
extra-traits only.impl Debug for Slash
extra-traits only.impl Debug for SlashEq
extra-traits only.impl Debug for Star
extra-traits only.impl Debug for StarEq
extra-traits only.impl Debug for Static
extra-traits only.impl Debug for syn::token::Struct
extra-traits only.impl Debug for Super
extra-traits only.impl Debug for Tilde
extra-traits only.impl Debug for syn::token::Trait
extra-traits only.impl Debug for Try
extra-traits only.impl Debug for syn::token::Type
extra-traits only.impl Debug for Typeof
extra-traits only.impl Debug for Underscore
extra-traits only.impl Debug for syn::token::Union
extra-traits only.impl Debug for Unsafe
extra-traits only.impl Debug for Unsized
extra-traits only.impl Debug for Use
extra-traits only.impl Debug for Virtual
extra-traits only.impl Debug for Where
extra-traits only.impl Debug for While
extra-traits only.impl Debug for Yield
extra-traits only.impl Debug for syn::ty::Abi
derive or full only.impl Debug for BareFnArg
derive or full only.impl Debug for BareVariadic
derive or full only.impl Debug for TypeArray
derive or full only.impl Debug for TypeBareFn
derive or full only.impl Debug for TypeGroup
derive or full only.impl Debug for TypeImplTrait
derive or full only.impl Debug for TypeInfer
derive or full only.impl Debug for TypeMacro
derive or full only.impl Debug for TypeNever
derive or full only.impl Debug for TypeParen
derive or full only.impl Debug for TypePath
derive or full only.impl Debug for TypePtr
derive or full only.impl Debug for TypeReference
derive or full only.impl Debug for TypeSlice
derive or full only.impl Debug for TypeTraitObject
derive or full only.impl Debug for TypeTuple
derive or full only.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 Parsed
impl Debug for PrimitiveDateTime
impl Debug for Time
impl Debug for UtcDateTime
impl Debug for UtcOffset
impl Debug for ATerm
impl Debug for B0
impl Debug for B1
impl Debug for Z0
impl Debug for typenum::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 zerocopy::error::AllocError
impl Debug for __c_anonymous_sockaddr_can_can_addr
impl Debug for __c_anonymous_ptrace_syscall_info_data
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 __c_anonymous_ifc_ifcu
impl Debug for __c_anonymous_ifr_ifru
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 ScalarSlotValueRef<'a>
impl<'a> Debug for ScalarValueRef<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for Request<'a>
impl<'a> Debug for 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 data_encoding::Display<'a>
impl<'a> Debug for Encoder<'a>
impl<'a> Debug for MutSliceRead<'a>
impl<'a> Debug for SliceRead<'a>
impl<'a> Debug for SliceWrite<'a>
impl<'a> Debug for ImplGenerics<'a>
extra-traits only.impl<'a> Debug for Turbofish<'a>
extra-traits only.impl<'a> Debug for TypeGenerics<'a>
extra-traits only.impl<'a> Debug for ParseBuffer<'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 SliceReadFixed<'a, 'b>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
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 alloc::collections::vec_deque::splice::Splice<'a, I, A>
impl<'a, I, A> Debug for alloc::vec::splice::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 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, I> Debug for Ptr<'a, T, I>where
T: 'a + ?Sized,
I: Invariants,
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<'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<'m, 'a> Debug for Call<'m, 'a>
impl<'m, 'a> Debug for CallFuture<'m, 'a>
impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>
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 OptionFlatten<A>where
A: Debug,
impl<A> Debug for RangeFromIter<A>where
A: Debug,
impl<A> Debug for RangeInclusiveIter<A>where
A: Debug,
impl<A> Debug for RangeIter<A>where
A: Debug,
impl<A> Debug for ArrayString<A>
impl<A> Debug for 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<A, S, V> Debug for ConvertError<A, S, V>
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<BS> Debug for ReadBuffer<BS>where
BS: BlockSizes,
impl<BS, K> Debug for block_buffer::BlockBuffer<BS, K>where
BS: BlockSizes,
K: BufferKind,
impl<BlockSize, Kind> Debug for block_buffer::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<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for LoadQueryResult<E>where
E: Debug + EntityKind,
impl<E> Debug for CompiledQuery<E>where
E: Debug + EntityKind,
impl<E> Debug for PlannedQuery<E>where
E: Debug + EntityKind,
impl<E> Debug for Query<E>where
E: Debug + EntityKind,
impl<E> Debug for Row<E>where
E: Debug + EntityKind,
impl<E> Debug for Id<E>
impl<E> Debug for Report<E>
impl<E> Debug for PagedLoadExecution<E>where
E: Debug + EntityKind,
impl<E> Debug for PagedLoadExecutionWithTrace<E>where
E: Debug + EntityKind,
impl<E> Debug for ProjectedRow<E>where
E: Debug + EntityKind,
impl<E> Debug for WriteBatchResponse<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 MutationResult<E>
impl<E: Debug + EntityKind> Debug for QueryResponse<E>
impl<E: Debug + EntityKind> Debug for ProjectionResponse<E>
impl<E: Debug + EntityKind> Debug for icydb::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<G> Debug for FromCoroutine<G>
impl<G> Debug for BlockRng<G>
impl<H> Debug for BuildHasherDefault<H>
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, E> Debug for SeqDeserializer<I, E>where
I: Debug,
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, 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 core::index::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<K> Debug for alloc::collections::btree::set::Cursor<'_, 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, A> Debug for std::collections::hash::set::Drain<'_, K, A>
impl<K, A> Debug for std::collections::hash::set::IntoIter<K, A>
impl<K, F, A> Debug for std::collections::hash::set::ExtractIf<'_, K, F, A>
impl<K, V> Debug for std::collections::hash::map::Entry<'_, 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::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::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 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, 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, A> Debug for std::collections::hash::map::Drain<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::IntoIter<K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::IntoValues<K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::VacantEntry<'_, K, V, A>
impl<K, V, F, A> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F, A>
impl<K, V, R, F, A> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S> Debug for SparseSecondaryMap<K, V, S>
impl<K, V, S, A> Debug for HashMap<K, V, S, A>
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<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<P> Debug for MaybeDangling<P>
impl<P, W> Debug for darling_core::ast::generics::Generics<P, W>
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 icydb_core::db::response::Response<R>where
R: Debug + ResponseRow,
impl<R> Debug for UnwrapErr<R>
impl<R> Debug for Deserializer<R>where
R: Debug,
impl<R> Debug for IoRead<R>
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<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::oneshot::RecvTimeoutError<T>
impl<T> Debug for std::sync::oneshot::TryRecvError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for darling_core::util::over_ride::Override<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 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 core::cell::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 TraitImpl<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 Atomic<*mut T>
target_has_atomic_load_store=ptr only.impl<T> Debug for SyncView<T>where
T: ?Sized,
impl<T> Debug for std::io::cursor::Cursor<T>where
T: Debug,
impl<T> Debug for std::io::Take<T>where
T: Debug,
impl<T> Debug for std::sync::mpmc::IntoIter<T>where
T: Debug,
impl<T> Debug for std::sync::mpmc::Receiver<T>
impl<T> Debug for std::sync::mpmc::Sender<T>
impl<T> Debug for std::sync::mpsc::IntoIter<T>where
T: Debug,
impl<T> Debug for std::sync::mpsc::Receiver<T>
impl<T> Debug for SendError<T>
impl<T> Debug for std::sync::mpsc::Sender<T>
impl<T> Debug for SyncSender<T>
impl<T> Debug for std::sync::nonpoison::mutex::MappedMutexGuard<'_, T>
impl<T> Debug for std::sync::nonpoison::mutex::Mutex<T>
impl<T> Debug for std::sync::nonpoison::mutex::MutexGuard<'_, T>
impl<T> Debug for std::sync::nonpoison::rwlock::MappedRwLockReadGuard<'_, T>
impl<T> Debug for std::sync::nonpoison::rwlock::MappedRwLockWriteGuard<'_, T>
impl<T> Debug for std::sync::nonpoison::rwlock::RwLock<T>
impl<T> Debug for std::sync::nonpoison::rwlock::RwLockReadGuard<'_, T>
impl<T> Debug for std::sync::nonpoison::rwlock::RwLockWriteGuard<'_, T>
impl<T> Debug for OnceLock<T>where
T: Debug,
impl<T> Debug for std::sync::oneshot::Receiver<T>
impl<T> Debug for std::sync::oneshot::Sender<T>
impl<T> Debug for std::sync::poison::mutex::MappedMutexGuard<'_, T>
impl<T> Debug for std::sync::poison::mutex::Mutex<T>
impl<T> Debug for std::sync::poison::mutex::MutexGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::MappedRwLockReadGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::MappedRwLockWriteGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::RwLock<T>
impl<T> Debug for std::sync::poison::rwlock::RwLockReadGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::RwLockWriteGuard<'_, T>
impl<T> Debug for PoisonError<T>
impl<T> Debug for ReentrantLock<T>
impl<T> Debug for ReentrantLockGuard<'_, T>
impl<T> Debug for JoinHandle<T>
impl<T> Debug for LocalKey<T>where
T: 'static,
impl<T> Debug for CapacityError<T>
impl<T> Debug for PosValue<T>where
T: Debug,
impl<T> Debug for darling_core::ast::data::Fields<T>where
T: Debug,
impl<T> Debug for SpannedValue<T>where
T: Debug,
impl<T> Debug for RtVariableCoreWrapper<T>where
T: VariableOutputCore + UpdateCore + AlgorithmName,
<T as BlockSizeUser>::BlockSize: IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>,
<<T as BlockSizeUser>::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<T> Debug for CoreWrapper<T>where
T: BufferKindUser + AlgorithmName,
<T as BlockSizeUser>::BlockSize: IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>,
<<T as BlockSizeUser>::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<T> Debug for XofReaderCoreWrapper<T>where
T: XofReaderCore + AlgorithmName,
<T as BlockSizeUser>::BlockSize: IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>,
<<T as BlockSizeUser>::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<T> Debug for TryFromBigIntError<T>where
T: Debug,
impl<T> Debug for powerfmt::smart_display::Metadata<'_, T>
impl<T> Debug for zerocopy::split_at::Split<T>where
T: Debug,
impl<T> Debug for ReadOnly<T>
impl<T> Debug for Unalign<T>
impl<T> Debug for MaybeUninit<T>
impl<T, A> Debug for alloc::collections::btree::set::entry::Entry<'_, T, A>
impl<T, A> Debug for alloc::boxed::Box<T, A>
impl<T, A> Debug for BinaryHeap<T, A>
impl<T, A> Debug for alloc::collections::binary_heap::IntoIter<T, A>
impl<T, A> Debug for IntoIterSorted<T, A>
impl<T, A> Debug for alloc::collections::binary_heap::PeekMut<'_, T, A>
impl<T, A> Debug for alloc::collections::btree::set::entry::OccupiedEntry<'_, T, A>
impl<T, A> Debug for alloc::collections::btree::set::entry::VacantEntry<'_, T, A>
impl<T, A> Debug for BTreeSet<T, A>
impl<T, A> Debug for alloc::collections::btree::set::Difference<'_, T, A>
impl<T, A> Debug for alloc::collections::btree::set::Intersection<'_, T, A>
impl<T, A> Debug for alloc::collections::btree::set::IntoIter<T, A>
impl<T, A> Debug for alloc::collections::linked_list::Cursor<'_, T, A>
impl<T, A> Debug for alloc::collections::linked_list::CursorMut<'_, T, A>
impl<T, A> Debug for alloc::collections::linked_list::IntoIter<T, A>
impl<T, A> Debug for LinkedList<T, A>
impl<T, A> Debug for alloc::collections::vec_deque::drain::Drain<'_, T, A>
impl<T, A> Debug for alloc::collections::vec_deque::into_iter::IntoIter<T, A>
impl<T, A> Debug for VecDeque<T, A>
impl<T, A> Debug for Rc<T, A>
impl<T, A> Debug for UniqueRc<T, A>
impl<T, A> Debug for alloc::rc::Weak<T, A>
impl<T, A> Debug for Arc<T, A>
impl<T, A> Debug for UniqueArc<T, A>
impl<T, A> Debug for alloc::sync::Weak<T, A>
impl<T, A> Debug for alloc::vec::drain::Drain<'_, T, A>
impl<T, A> Debug for alloc::vec::into_iter::IntoIter<T, A>
impl<T, A> Debug for alloc::vec::peek_mut::PeekMut<'_, T, A>
impl<T, A> Debug for alloc::vec::Vec<T, A>
impl<T, B> Debug for zerocopy::ref::def::Ref<B, T>
impl<T, E> Debug for Result<T, E>
impl<T, E> Debug for MotokoResult<T, E>
impl<T, F> Debug for LazyCell<T, F>where
T: Debug,
impl<T, F> Debug for Successors<T, F>where
T: Debug,
impl<T, F> Debug for DropGuard<T, F>
impl<T, F> Debug for LazyLock<T, F>where
T: Debug,
impl<T, F, A> Debug for alloc::collections::linked_list::ExtractIf<'_, T, F, A>
impl<T, F, A> Debug for alloc::collections::vec_deque::extract_if::ExtractIf<'_, T, F, A>
impl<T, F, A> Debug for alloc::vec::extract_if::ExtractIf<'_, T, F, A>
impl<T, L, C> Debug for darling_core::ast::generics::GenericParam<T, L, C>
impl<T, M> Debug for MinHeap<T, M>
impl<T, M> Debug for ic_stable_structures::vec::Vec<T, M>
impl<T, N> Debug for GenericArrayIter<T, N>where
T: Debug,
N: ArrayLength<T>,
impl<T, N> Debug for GenericArray<T, N>where
T: Debug,
N: ArrayLength<T>,
impl<T, O> Debug for WithOriginal<T, O>
impl<T, OutSize> Debug for CtOutWrapper<T, OutSize>where
T: VariableOutputCore + AlgorithmName,
OutSize: ArraySize + IsLessOrEqual<<T as OutputSizeUser>::OutputSize, Output = B1>,
impl<T, P> Debug for core::slice::iter::RSplit<'_, T, P>
impl<T, P> Debug for RSplitMut<'_, T, P>
impl<T, P> Debug for core::slice::iter::RSplitN<'_, T, P>
impl<T, P> Debug for RSplitNMut<'_, T, P>
impl<T, P> Debug for core::slice::iter::Split<'_, T, P>
impl<T, P> Debug for core::slice::iter::SplitInclusive<'_, T, P>
impl<T, P> Debug for SplitInclusiveMut<'_, T, P>
impl<T, P> Debug for SplitMut<'_, T, P>
impl<T, P> Debug for core::slice::iter::SplitN<'_, T, P>
impl<T, P> Debug for SplitNMut<'_, T, P>
impl<T, P> Debug for binread::punctuated::Punctuated<T, P>
impl<T, P> Debug for syn::punctuated::Punctuated<T, P>
extra-traits only.