pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}
Expand description
?
formatting.
Debug
should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive
a Debug
implementation.
When used with the alternate format specifier #?
, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive]
if all fields implement Debug
. When
derive
d for structs, it will use the name of the struct
, then {
, then a
comma-separated list of each field’s name and Debug
value, then }
. For
enum
s, it will use the name of the variant and, if applicable, (
, then the
Debug
values of the fields, then )
.
§Stability
Derived Debug
formats are not stable, and so may change with future Rust
versions. Additionally, Debug
implementations of types provided by the
standard library (std
, core
, alloc
, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
There are a number of helper methods on the Formatter
struct to help you with manual
implementations, such as debug_struct
.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter
trait (debug_struct
, debug_tuple
,
debug_list
, debug_set
, debug_map
) can do something totally custom by
manually writing an arbitrary representation to the Formatter
.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}
Debug
implementations using either derive
or the debug builder API
on Formatter
support pretty-printing using the alternate flag: {:#?}
.
Pretty-printing with #?
:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);
Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err
if, and only if, the provided Formatter
returns Err
.
String formatting is considered an infallible operation; this function only
returns a Result
because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");
Implementors§
impl Debug for Code
impl Debug for CheckTxKind
impl Debug for ApplySnapshotChunkResult
impl Debug for tendermint::abci::response::OfferSnapshot
impl Debug for tendermint::abci::response::ProcessProposal
impl Debug for tendermint::abci::response::VerifyVoteExtension
impl Debug for BlockSignatureInfo
impl Debug for MisbehaviorKind
impl Debug for tendermint::block::commit_sig::CommitSig
impl Debug for tendermint::block::BlockIdFlag
impl Debug for tendermint::crypto::signature::Error
impl Debug for ErrorDetail
impl Debug for tendermint::evidence::Evidence
impl Debug for tendermint::hash::Algorithm
impl Debug for Hash
impl Debug for TxIndexStatus
impl Debug for tendermint::proposal::Type
impl Debug for tendermint::public_key::Algorithm
impl Debug for tendermint::public_key::PublicKey
impl Debug for TendermintKey
impl Debug for tendermint::v0_34::abci::request::ConsensusRequest
impl Debug for tendermint::v0_34::abci::request::InfoRequest
impl Debug for tendermint::v0_34::abci::request::MempoolRequest
impl Debug for tendermint::v0_34::abci::request::Request
impl Debug for tendermint::v0_34::abci::request::SnapshotRequest
impl Debug for tendermint::v0_34::abci::response::ConsensusResponse
impl Debug for tendermint::v0_34::abci::response::InfoResponse
impl Debug for tendermint::v0_34::abci::response::MempoolResponse
impl Debug for tendermint::v0_34::abci::response::Response
impl Debug for tendermint::v0_34::abci::response::SnapshotResponse
impl Debug for tendermint::v0_37::abci::request::ConsensusRequest
impl Debug for tendermint::v0_37::abci::request::InfoRequest
impl Debug for tendermint::v0_37::abci::request::MempoolRequest
impl Debug for tendermint::v0_37::abci::request::Request
impl Debug for tendermint::v0_37::abci::request::SnapshotRequest
impl Debug for tendermint::v0_37::abci::response::ConsensusResponse
impl Debug for tendermint::v0_37::abci::response::InfoResponse
impl Debug for tendermint::v0_37::abci::response::MempoolResponse
impl Debug for tendermint::v0_37::abci::response::Response
impl Debug for tendermint::v0_37::abci::response::SnapshotResponse
impl Debug for tendermint::v0_38::abci::request::ConsensusRequest
impl Debug for tendermint::v0_38::abci::request::InfoRequest
impl Debug for tendermint::v0_38::abci::request::MempoolRequest
impl Debug for tendermint::v0_38::abci::request::Request
impl Debug for tendermint::v0_38::abci::request::SnapshotRequest
impl Debug for tendermint::v0_38::abci::response::ConsensusResponse
impl Debug for tendermint::v0_38::abci::response::InfoResponse
impl Debug for tendermint::v0_38::abci::response::MempoolResponse
impl Debug for tendermint::v0_38::abci::response::Response
impl Debug for tendermint::v0_38::abci::response::SnapshotResponse
impl Debug for tendermint::vote::Type
impl Debug for tendermint::consensus::state::Ordering
impl Debug for tendermint::consensus::state::fmt::Alignment
impl Debug for TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for Infallible
impl Debug for c_void
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 SearchStep
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for SeekFrom
impl Debug for ErrorKind
impl Debug for Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for RecvTimeoutError
impl Debug for TryRecvError
impl Debug for _Unwind_Reason_Code
impl Debug for ed25519_consensus::error::Error
impl Debug for FromHexError
impl Debug for FloatErrorKind
impl Debug for Category
impl Debug for serde_json::value::Value
impl Debug for subtle_encoding::error::Error
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 tendermint::abci::request::ApplySnapshotChunk
impl Debug for tendermint::abci::request::BeginBlock
impl Debug for tendermint::abci::request::CheckTx
impl Debug for tendermint::abci::request::DeliverTx
impl Debug for tendermint::abci::request::Echo
impl Debug for tendermint::abci::request::EndBlock
impl Debug for tendermint::abci::request::ExtendVote
impl Debug for tendermint::abci::request::FinalizeBlock
impl Debug for tendermint::abci::request::Info
impl Debug for tendermint::abci::request::InitChain
impl Debug for tendermint::abci::request::LoadSnapshotChunk
impl Debug for tendermint::abci::request::OfferSnapshot
impl Debug for tendermint::abci::request::PrepareProposal
impl Debug for tendermint::abci::request::ProcessProposal
impl Debug for tendermint::abci::request::Query
impl Debug for tendermint::abci::request::SetOption
impl Debug for tendermint::abci::request::VerifyVoteExtension
impl Debug for tendermint::abci::response::ApplySnapshotChunk
impl Debug for tendermint::abci::response::BeginBlock
impl Debug for tendermint::abci::response::CheckTx
impl Debug for tendermint::abci::response::Commit
impl Debug for tendermint::abci::response::DeliverTx
impl Debug for tendermint::abci::response::Echo
impl Debug for tendermint::abci::response::EndBlock
impl Debug for Exception
impl Debug for tendermint::abci::response::ExtendVote
impl Debug for tendermint::abci::response::FinalizeBlock
impl Debug for tendermint::abci::response::Info
impl Debug for tendermint::abci::response::InitChain
impl Debug for ListSnapshots
impl Debug for tendermint::abci::response::LoadSnapshotChunk
impl Debug for tendermint::abci::response::PrepareProposal
impl Debug for tendermint::abci::response::Query
impl Debug for tendermint::abci::response::SetOption
impl Debug for tendermint::abci::Event
impl Debug for tendermint::abci::EventAttribute
impl Debug for tendermint::abci::types::CommitInfo
impl Debug for tendermint::abci::types::ExecTxResult
impl Debug for tendermint::abci::types::ExtendedCommitInfo
impl Debug for tendermint::abci::types::ExtendedVoteInfo
impl Debug for tendermint::abci::types::Misbehavior
impl Debug for tendermint::abci::types::Snapshot
impl Debug for tendermint::abci::types::Validator
impl Debug for tendermint::abci::types::VoteInfo
impl Debug for tendermint::account::Id
impl Debug for tendermint::block::header::Header
impl Debug for tendermint::block::header::Version
impl Debug for tendermint::block::parts::Header
impl Debug for tendermint::block::signed_header::SignedHeader
impl Debug for tendermint::block::Block
impl Debug for tendermint::block::Commit
impl Debug for Height
impl Debug for tendermint::block::Id
impl Debug for Meta
impl Debug for Round
impl Debug for Size
impl Debug for tendermint::chain::id::Id
impl Debug for tendermint::chain::Info
impl Debug for Channel
impl Debug for Channels
impl Debug for tendermint::channel::Id
impl Debug for Verifier
impl Debug for tendermint::crypto::ed25519::SigningKey
impl Debug for tendermint::crypto::ed25519::VerificationKey
impl Debug for BlockIdFlagSubdetail
impl Debug for CryptoSubdetail
impl Debug for DateOutOfRangeSubdetail
impl Debug for DurationOutOfRangeSubdetail
impl Debug for EmptySignatureSubdetail
impl Debug for tendermint::error::Errorwhere
DefaultTracer: Debug,
impl Debug for IntegerOverflowSubdetail
impl Debug for InvalidAbciRequestTypeSubdetail
impl Debug for InvalidAbciResponseTypeSubdetail
impl Debug for InvalidAccountIdLengthSubdetail
impl Debug for InvalidAppHashLengthSubdetail
impl Debug for InvalidBlockSubdetail
impl Debug for InvalidEvidenceSubdetail
impl Debug for InvalidFirstHeaderSubdetail
impl Debug for InvalidHashSizeSubdetail
impl Debug for InvalidKeySubdetail
impl Debug for InvalidMessageTypeSubdetail
impl Debug for InvalidPartSetHeaderSubdetail
impl Debug for InvalidSignatureIdLengthSubdetail
impl Debug for InvalidSignatureSubdetail
impl Debug for InvalidSignedHeaderSubdetail
impl Debug for InvalidTimestampSubdetail
impl Debug for InvalidValidatorAddressSubdetail
impl Debug for InvalidValidatorParamsSubdetail
impl Debug for InvalidVersionParamsSubdetail
impl Debug for LengthSubdetail
impl Debug for MissingConsensusParamsSubdetail
impl Debug for MissingDataSubdetail
impl Debug for MissingEvidenceSubdetail
impl Debug for MissingGenesisTimeSubdetail
impl Debug for MissingHeaderSubdetail
impl Debug for MissingLastCommitInfoSubdetail
impl Debug for MissingMaxAgeDurationSubdetail
impl Debug for MissingPublicKeySubdetail
impl Debug for MissingTimestampSubdetail
impl Debug for MissingValidatorSubdetail
impl Debug for MissingVersionSubdetail
impl Debug for NegativeHeightSubdetail
impl Debug for NegativeMaxAgeNumSubdetail
impl Debug for NegativePolRoundSubdetail
impl Debug for NegativePowerSubdetail
impl Debug for NegativeProofIndexSubdetail
impl Debug for NegativeProofTotalSubdetail
impl Debug for NegativeRoundSubdetail
impl Debug for NegativeValidatorIndexSubdetail
impl Debug for NoProposalFoundSubdetail
impl Debug for NoVoteFoundSubdetail
impl Debug for NonZeroTimestampSubdetail
impl Debug for ParseIntSubdetail
impl Debug for ParseSubdetail
impl Debug for ProposerNotFoundSubdetail
impl Debug for ProtocolSubdetail
impl Debug for SignatureInvalidSubdetail
impl Debug for SignatureSubdetail
impl Debug for SubtleEncodingSubdetail
impl Debug for TimeParseSubdetail
impl Debug for TimestampConversionSubdetail
impl Debug for TimestampNanosOutOfRangeSubdetail
impl Debug for TotalVotingPowerMismatchSubdetail
impl Debug for TotalVotingPowerOverflowSubdetail
impl Debug for TrustThresholdTooLargeSubdetail
impl Debug for TrustThresholdTooSmallSubdetail
impl Debug for UndefinedTrustThresholdSubdetail
impl Debug for UnsupportedApplySnapshotChunkResultSubdetail
impl Debug for UnsupportedCheckTxTypeSubdetail
impl Debug for UnsupportedKeyTypeSubdetail
impl Debug for UnsupportedOfferSnapshotChunkResultSubdetail
impl Debug for UnsupportedProcessProposalStatusSubdetail
impl Debug for UnsupportedVerifyVoteExtensionStatusSubdetail
impl Debug for ConflictingBlock
impl Debug for tendermint::evidence::DuplicateVoteEvidence
impl Debug for tendermint::evidence::Duration
impl Debug for tendermint::evidence::LightClientAttackEvidence
impl Debug for List
impl Debug for tendermint::evidence::Params
impl Debug for AppHash
impl Debug for tendermint::merkle::proof::Proof
impl Debug for tendermint::merkle::proof::ProofOp
impl Debug for tendermint::merkle::proof::ProofOps
impl Debug for tendermint::node::info::Info
impl Debug for ListenAddress
impl Debug for OtherInfo
impl Debug for ProtocolVersionInfo
impl Debug for tendermint::node::Id
impl Debug for tendermint::privval::RemoteSignerError
impl Debug for tendermint::proposal::Proposal
impl Debug for tendermint::proposal::SignProposalRequest
impl Debug for tendermint::proposal::SignedProposalResponse
impl Debug for tendermint::public_key::PubKeyRequest
impl Debug for tendermint::public_key::PubKeyResponse
impl Debug for tendermint::serializers::timestamp::Rfc3339
impl Debug for tendermint::signature::Ed25519Signature
impl Debug for tendermint::signature::Signature
impl Debug for Moniker
impl Debug for Timeout
impl Debug for tendermint::Version
impl Debug for tendermint::time::Time
impl Debug for TrustThresholdFraction
impl Debug for tendermint::tx::Proof
impl Debug for tendermint::validator::Info
impl Debug for ProposerPriority
impl Debug for Set
impl Debug for Update
impl Debug for tendermint::vote::CanonicalVote
impl Debug for Power
impl Debug for tendermint::vote::SignVoteRequest
impl Debug for tendermint::vote::SignedVoteResponse
impl Debug for ValidatorIndex
impl Debug for tendermint::vote::Vote
impl Debug for tendermint::consensus::params::AbciParams
impl Debug for tendermint::consensus::params::Params
impl Debug for tendermint::consensus::params::ValidatorParams
impl Debug for tendermint::consensus::params::VersionParams
impl Debug for tendermint::consensus::state::State
impl Debug for Global
impl Debug for UnorderedKeyError
impl Debug for TryReserveError
impl Debug for CString
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 String
impl Debug for Layout
impl Debug for LayoutError
impl Debug for AllocError
impl Debug for TypeId
impl Debug for TryFromSliceError
impl Debug for core::ascii::EscapeDefault
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 bf16
impl Debug for CStr
impl Debug for FromBytesUntilNulError
impl Debug for FromBytesWithNulError
impl Debug for SipHasher
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomPinned
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 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
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 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 Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for PipeReader
impl Debug for PipeWriter
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 Condvar
impl Debug for WaitTimeoutResult
impl Debug for RecvError
impl Debug for std::sync::once::Once
impl Debug for OnceState
impl Debug for AccessError
impl Debug for Scope<'_, '_>
impl Debug for Builder
impl Debug for Thread
impl Debug for ThreadId
impl Debug for std::time::Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for CompressedEdwardsY
impl Debug for EdwardsBasepointTable
impl Debug for EdwardsPoint
impl Debug for MontgomeryPoint
impl Debug for CompressedRistretto
impl Debug for RistrettoPoint
impl Debug for Scalar
impl Debug for Item
impl Debug for ed25519_consensus::signature::Signature
impl Debug for ed25519_consensus::signing_key::SigningKey
impl Debug for ed25519_consensus::verification_key::VerificationKey
impl Debug for VerificationKeyBytes
impl Debug for DefaultHandler
impl Debug for InstallError
impl Debug for eyre::Report
impl Debug for getrandom::error::Error
impl Debug for num_traits::ParseFloatError
impl Debug for DecodeError
impl Debug for EncodeError
impl Debug for IgnoredAny
impl Debug for serde::de::value::Error
impl Debug for serde_json::error::Error
impl Debug for serde_json::map::Map<String, Value>
impl Debug for Number
impl Debug for RawValue
impl Debug for CompactFormatter
impl Debug for Base64
impl Debug for Hex
impl Debug for Identity
impl Debug for subtle_ng::Choice
impl Debug for subtle::Choice
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 rand_core::error::Error
impl Debug for OsRng
impl Debug for Arguments<'_>
impl Debug for tendermint::consensus::state::fmt::Error
impl Debug for AbciParams
impl Debug for AbciResponses
impl Debug for AbciResponses
impl Debug for AbciResponsesInfo
impl Debug for AbciResponsesInfo
impl Debug for AbciResponsesInfo
impl Debug for App
impl Debug for App
impl Debug for App
impl Debug for AuthSigMessage
impl Debug for AuthSigMessage
impl Debug for AuthSigMessage
impl Debug for BigEndian
impl Debug for BitArray
impl Debug for BitArray
impl Debug for BitArray
impl Debug for Block
impl Debug for Block
impl Debug for Block
impl Debug for BlockId
impl Debug for BlockId
impl Debug for BlockId
impl Debug for BlockIdFlag
impl Debug for BlockIdFlag
impl Debug for BlockIdFlag
impl Debug for BlockMeta
impl Debug for BlockMeta
impl Debug for BlockMeta
impl Debug for BlockParams
impl Debug for BlockParams
impl Debug for BlockParams
impl Debug for BlockParams
impl Debug for BlockPart
impl Debug for BlockPart
impl Debug for BlockPart
impl Debug for BlockRequest
impl Debug for BlockRequest
impl Debug for BlockRequest
impl Debug for BlockResponse
impl Debug for BlockResponse
impl Debug for BlockResponse
impl Debug for BlockStoreState
impl Debug for BlockStoreState
impl Debug for BlockStoreState
impl Debug for BorrowedFormatItem<'_>
impl Debug for Bytes
impl Debug for BytesMut
impl Debug for CanonicalBlockId
impl Debug for CanonicalBlockId
impl Debug for CanonicalBlockId
impl Debug for CanonicalPartSetHeader
impl Debug for CanonicalPartSetHeader
impl Debug for CanonicalPartSetHeader
impl Debug for CanonicalProposal
impl Debug for CanonicalProposal
impl Debug for CanonicalProposal
impl Debug for CanonicalVote
impl Debug for CanonicalVote
impl Debug for CanonicalVote
impl Debug for CanonicalVoteExtension
impl Debug for CheckTxType
impl Debug for CheckTxType
impl Debug for CheckTxType
impl Debug for ChunkRequest
impl Debug for ChunkRequest
impl Debug for ChunkRequest
impl Debug for ChunkResponse
impl Debug for ChunkResponse
impl Debug for ChunkResponse
impl Debug for Commit
impl Debug for Commit
impl Debug for Commit
impl Debug for CommitInfo
impl Debug for CommitInfo
impl Debug for CommitSig
impl Debug for CommitSig
impl Debug for CommitSig
impl Debug for Component
impl Debug for ComponentRange
impl Debug for Config
impl Debug for Consensus
impl Debug for Consensus
impl Debug for Consensus
impl Debug for ConsensusParams
impl Debug for ConsensusParams
impl Debug for ConsensusParams
impl Debug for ConsensusParams
impl Debug for ConsensusParamsInfo
impl Debug for ConsensusParamsInfo
impl Debug for ConsensusParamsInfo
impl Debug for ConversionRange
impl Debug for Data
impl Debug for Data
impl Debug for Data
impl Debug for Date
impl Debug for DateKind
impl Debug for Day
impl Debug for Day
impl Debug for DefaultNodeInfo
impl Debug for DefaultNodeInfo
impl Debug for DefaultNodeInfo
impl Debug for DefaultNodeInfoOther
impl Debug for DefaultNodeInfoOther
impl Debug for DefaultNodeInfoOther
impl Debug for DifferentVariant
impl Debug for DominoOp
impl Debug for DominoOp
impl Debug for DominoOp
impl Debug for DuplicateVoteEvidence
impl Debug for DuplicateVoteEvidence
impl Debug for DuplicateVoteEvidence
impl Debug for Duration
impl Debug for Duration
impl Debug for Eager
impl Debug for End
impl Debug for EndHeight
impl Debug for EndHeight
impl Debug for EndHeight
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Errors
impl Debug for Errors
impl Debug for Errors
impl Debug for Event
impl Debug for Event
impl Debug for Event
impl Debug for EventAttribute
impl Debug for EventAttribute
impl Debug for EventAttribute
impl Debug for EventDataRoundState
impl Debug for EventDataRoundState
impl Debug for EventDataRoundState
impl Debug for Evidence
impl Debug for Evidence
impl Debug for Evidence
impl Debug for Evidence
impl Debug for EvidenceList
impl Debug for EvidenceList
impl Debug for EvidenceList
impl Debug for EvidenceParams
impl Debug for EvidenceParams
impl Debug for EvidenceParams
impl Debug for EvidenceType
impl Debug for ExecTxResult
impl Debug for ExtendedCommit
impl Debug for ExtendedCommitInfo
impl Debug for ExtendedCommitInfo
impl Debug for ExtendedCommitSig
impl Debug for ExtendedVoteInfo
impl Debug for ExtendedVoteInfo
impl Debug for Format
impl Debug for FormattedComponents
impl Debug for FormatterOptions
impl Debug for HasVote
impl Debug for HasVote
impl Debug for HasVote
impl Debug for HashedParams
impl Debug for HashedParams
impl Debug for HashedParams
impl Debug for Header
impl Debug for Header
impl Debug for Header
impl Debug for Hour
impl Debug for Hour
impl Debug for Ignore
impl Debug for Instant
impl Debug for InvalidBufferSize
impl Debug for InvalidFormatDescription
impl Debug for InvalidLength
impl Debug for InvalidOutputSize
impl Debug for InvalidOutputSize
impl Debug for InvalidVariant
impl Debug for LastCommitInfo
impl Debug for Lazy
impl Debug for LegacyAbciResponses
impl Debug for LightBlock
impl Debug for LightBlock
impl Debug for LightBlock
impl Debug for LightClientAttackEvidence
impl Debug for LightClientAttackEvidence
impl Debug for LightClientAttackEvidence
impl Debug for LittleEndian
impl Debug for MacError
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Message
impl Debug for Microsecond
impl Debug for Millisecond
impl Debug for Minute
impl Debug for Minute
impl Debug for Misbehavior
impl Debug for Misbehavior
impl Debug for MisbehaviorType
impl Debug for MisbehaviorType
impl Debug for Month
impl Debug for Month
impl Debug for MonthRepr
impl Debug for MsgInfo
impl Debug for MsgInfo
impl Debug for MsgInfo
impl Debug for Nanosecond
impl Debug for NetAddress
impl Debug for NetAddress
impl Debug for NetAddress
impl Debug for NewRoundStep
impl Debug for NewRoundStep
impl Debug for NewRoundStep
impl Debug for NewValidBlock
impl Debug for NewValidBlock
impl Debug for NewValidBlock
impl Debug for NoBlockResponse
impl Debug for NoBlockResponse
impl Debug for NoBlockResponse
impl Debug for ObjectIdentifier
impl Debug for OffsetDateTime
impl Debug for OffsetHour
impl Debug for OffsetMinute
impl Debug for OffsetPrecision
impl Debug for OffsetSecond
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for Ordinal
impl Debug for OwnedFormatItem
impl Debug for Packet
impl Debug for Packet
impl Debug for Packet
impl Debug for PacketMsg
impl Debug for PacketMsg
impl Debug for PacketMsg
impl Debug for PacketPing
impl Debug for PacketPing
impl Debug for PacketPing
impl Debug for PacketPong
impl Debug for PacketPong
impl Debug for PacketPong
impl Debug for Padding
impl Debug for Parse
impl Debug for ParseFromDescription
impl Debug for ParseIntError
impl Debug for Parsed
impl Debug for Part
impl Debug for Part
impl Debug for Part
impl Debug for PartSetHeader
impl Debug for PartSetHeader
impl Debug for PartSetHeader
impl Debug for Period
impl Debug for PexAddrs
impl Debug for PexAddrs
impl Debug for PexAddrs
impl Debug for PexRequest
impl Debug for PexRequest
impl Debug for PexRequest
impl Debug for PingRequest
impl Debug for PingRequest
impl Debug for PingRequest
impl Debug for PingResponse
impl Debug for PingResponse
impl Debug for PingResponse
impl Debug for PrimitiveDateTime
impl Debug for Proof
impl Debug for Proof
impl Debug for Proof
impl Debug for ProofOp
impl Debug for ProofOp
impl Debug for ProofOp
impl Debug for ProofOps
impl Debug for ProofOps
impl Debug for ProofOps
impl Debug for Proposal
impl Debug for Proposal
impl Debug for Proposal
impl Debug for Proposal
impl Debug for Proposal
impl Debug for Proposal
impl Debug for ProposalPol
impl Debug for ProposalPol
impl Debug for ProposalPol
impl Debug for ProposalStatus
impl Debug for ProposalStatus
impl Debug for ProtocolVersion
impl Debug for ProtocolVersion
impl Debug for ProtocolVersion
impl Debug for PubKeyRequest
impl Debug for PubKeyRequest
impl Debug for PubKeyRequest
impl Debug for PubKeyResponse
impl Debug for PubKeyResponse
impl Debug for PubKeyResponse
impl Debug for PublicKey
impl Debug for PublicKey
impl Debug for PublicKey
impl Debug for RemoteSignerError
impl Debug for RemoteSignerError
impl Debug for RemoteSignerError
impl Debug for Request
impl Debug for Request
impl Debug for Request
impl Debug for RequestApplySnapshotChunk
impl Debug for RequestApplySnapshotChunk
impl Debug for RequestApplySnapshotChunk
impl Debug for RequestBeginBlock
impl Debug for RequestBeginBlock
impl Debug for RequestBroadcastTx
impl Debug for RequestBroadcastTx
impl Debug for RequestBroadcastTx
impl Debug for RequestCheckTx
impl Debug for RequestCheckTx
impl Debug for RequestCheckTx
impl Debug for RequestCommit
impl Debug for RequestCommit
impl Debug for RequestCommit
impl Debug for RequestDeliverTx
impl Debug for RequestDeliverTx
impl Debug for RequestEcho
impl Debug for RequestEcho
impl Debug for RequestEcho
impl Debug for RequestEndBlock
impl Debug for RequestEndBlock
impl Debug for RequestExtendVote
impl Debug for RequestFinalizeBlock
impl Debug for RequestFlush
impl Debug for RequestFlush
impl Debug for RequestFlush
impl Debug for RequestInfo
impl Debug for RequestInfo
impl Debug for RequestInfo
impl Debug for RequestInitChain
impl Debug for RequestInitChain
impl Debug for RequestInitChain
impl Debug for RequestListSnapshots
impl Debug for RequestListSnapshots
impl Debug for RequestListSnapshots
impl Debug for RequestLoadSnapshotChunk
impl Debug for RequestLoadSnapshotChunk
impl Debug for RequestLoadSnapshotChunk
impl Debug for RequestOfferSnapshot
impl Debug for RequestOfferSnapshot
impl Debug for RequestOfferSnapshot
impl Debug for RequestPing
impl Debug for RequestPing
impl Debug for RequestPing
impl Debug for RequestPrepareProposal
impl Debug for RequestPrepareProposal
impl Debug for RequestProcessProposal
impl Debug for RequestProcessProposal
impl Debug for RequestQuery
impl Debug for RequestQuery
impl Debug for RequestQuery
impl Debug for RequestSetOption
impl Debug for RequestVerifyVoteExtension
impl Debug for Response
impl Debug for Response
impl Debug for Response
impl Debug for ResponseApplySnapshotChunk
impl Debug for ResponseApplySnapshotChunk
impl Debug for ResponseApplySnapshotChunk
impl Debug for ResponseBeginBlock
impl Debug for ResponseBeginBlock
impl Debug for ResponseBeginBlock
impl Debug for ResponseBroadcastTx
impl Debug for ResponseBroadcastTx
impl Debug for ResponseBroadcastTx
impl Debug for ResponseCheckTx
impl Debug for ResponseCheckTx
impl Debug for ResponseCheckTx
impl Debug for ResponseCommit
impl Debug for ResponseCommit
impl Debug for ResponseCommit
impl Debug for ResponseDeliverTx
impl Debug for ResponseDeliverTx
impl Debug for ResponseEcho
impl Debug for ResponseEcho
impl Debug for ResponseEcho
impl Debug for ResponseEndBlock
impl Debug for ResponseEndBlock
impl Debug for ResponseEndBlock
impl Debug for ResponseException
impl Debug for ResponseException
impl Debug for ResponseException
impl Debug for ResponseExtendVote
impl Debug for ResponseFinalizeBlock
impl Debug for ResponseFlush
impl Debug for ResponseFlush
impl Debug for ResponseFlush
impl Debug for ResponseInfo
impl Debug for ResponseInfo
impl Debug for ResponseInfo
impl Debug for ResponseInitChain
impl Debug for ResponseInitChain
impl Debug for ResponseInitChain
impl Debug for ResponseListSnapshots
impl Debug for ResponseListSnapshots
impl Debug for ResponseListSnapshots
impl Debug for ResponseLoadSnapshotChunk
impl Debug for ResponseLoadSnapshotChunk
impl Debug for ResponseLoadSnapshotChunk
impl Debug for ResponseOfferSnapshot
impl Debug for ResponseOfferSnapshot
impl Debug for ResponseOfferSnapshot
impl Debug for ResponsePing
impl Debug for ResponsePing
impl Debug for ResponsePing
impl Debug for ResponsePrepareProposal
impl Debug for ResponsePrepareProposal
impl Debug for ResponseProcessProposal
impl Debug for ResponseProcessProposal
impl Debug for ResponseQuery
impl Debug for ResponseQuery
impl Debug for ResponseQuery
impl Debug for ResponseSetOption
impl Debug for ResponseVerifyVoteExtension
impl Debug for Result
impl Debug for Result
impl Debug for Result
impl Debug for Result
impl Debug for Result
impl Debug for Result
impl Debug for Rfc2822
impl Debug for Rfc3339
impl Debug for Second
impl Debug for Second
impl Debug for Sha224
impl Debug for Sha256
impl Debug for Sha384
impl Debug for Sha512
impl Debug for Sha256VarCore
impl Debug for Sha512Trunc224
impl Debug for Sha512Trunc256
impl Debug for Sha512VarCore
impl Debug for SignProposalRequest
impl Debug for SignProposalRequest
impl Debug for SignProposalRequest
impl Debug for SignVoteRequest
impl Debug for SignVoteRequest
impl Debug for SignVoteRequest
impl Debug for SignedHeader
impl Debug for SignedHeader
impl Debug for SignedHeader
impl Debug for SignedMsgType
impl Debug for SignedMsgType
impl Debug for SignedMsgType
impl Debug for SignedProposalResponse
impl Debug for SignedProposalResponse
impl Debug for SignedProposalResponse
impl Debug for SignedVoteResponse
impl Debug for SignedVoteResponse
impl Debug for SignedVoteResponse
impl Debug for SimpleValidator
impl Debug for SimpleValidator
impl Debug for SimpleValidator
impl Debug for Snapshot
impl Debug for Snapshot
impl Debug for Snapshot
impl Debug for SnapshotsRequest
impl Debug for SnapshotsRequest
impl Debug for SnapshotsRequest
impl Debug for SnapshotsResponse
impl Debug for SnapshotsResponse
impl Debug for SnapshotsResponse
impl Debug for State
impl Debug for State
impl Debug for State
impl Debug for StatusRequest
impl Debug for StatusRequest
impl Debug for StatusRequest
impl Debug for StatusResponse
impl Debug for StatusResponse
impl Debug for StatusResponse
impl Debug for StringTracer
impl Debug for Subsecond
impl Debug for SubsecondDigits
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Sum
impl Debug for Time
impl Debug for TimePrecision
impl Debug for TimedWalMessage
impl Debug for TimedWalMessage
impl Debug for TimedWalMessage
impl Debug for TimeoutInfo
impl Debug for TimeoutInfo
impl Debug for TimeoutInfo
impl Debug for Timestamp
impl Debug for TruncSide
impl Debug for TryFromIntError
impl Debug for TryFromParsed
impl Debug for TxProof
impl Debug for TxProof
impl Debug for TxProof
impl Debug for TxResult
impl Debug for TxResult
impl Debug for TxResult
impl Debug for Txs
impl Debug for Txs
impl Debug for Txs
impl Debug for UninitSlice
impl Debug for UnixTimestamp
impl Debug for UnixTimestampPrecision
impl Debug for UtcOffset
impl Debug for Validator
impl Debug for Validator
impl Debug for Validator
impl Debug for Validator
impl Debug for Validator
impl Debug for Validator
impl Debug for ValidatorParams
impl Debug for ValidatorParams
impl Debug for ValidatorParams
impl Debug for ValidatorSet
impl Debug for ValidatorSet
impl Debug for ValidatorSet
impl Debug for ValidatorUpdate
impl Debug for ValidatorUpdate
impl Debug for ValidatorUpdate
impl Debug for ValidatorsInfo
impl Debug for ValidatorsInfo
impl Debug for ValidatorsInfo
impl Debug for Value
impl Debug for Value
impl Debug for Value
impl Debug for Value
impl Debug for Value
impl Debug for Value
impl Debug for ValueOp
impl Debug for ValueOp
impl Debug for ValueOp
impl Debug for VerifyStatus
impl Debug for Version
impl Debug for Version
impl Debug for Version
impl Debug for VersionParams
impl Debug for VersionParams
impl Debug for VersionParams
impl Debug for Vote
impl Debug for Vote
impl Debug for Vote
impl Debug for Vote
impl Debug for Vote
impl Debug for Vote
impl Debug for VoteInfo
impl Debug for VoteInfo
impl Debug for VoteInfo
impl Debug for VoteSetBits
impl Debug for VoteSetBits
impl Debug for VoteSetBits
impl Debug for VoteSetMaj23
impl Debug for VoteSetMaj23
impl Debug for VoteSetMaj23
impl Debug for WalMessage
impl Debug for WalMessage
impl Debug for WalMessage
impl Debug for Week
impl Debug for WeekNumber
impl Debug for WeekNumberRepr
impl Debug for Weekday
impl Debug for Weekday
impl Debug for WeekdayRepr
impl Debug for Year
impl Debug for YearRepr
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Sync + Send
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for std::path::Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for core::error::Request<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for Location<'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 PrettyFormatter<'a>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'f> Debug for VaList<'a, 'f>where
'f: 'a,
impl<'a, 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, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
impl<'a, E> Debug for StrDeserializer<'a, E>
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I, A> Debug for Splice<'a, I, A>
impl<'a, K, F> Debug for std::collections::hash::set::ExtractIf<'a, K, F>
impl<'a, K, V, F> Debug for std::collections::hash::map::ExtractIf<'a, K, V, F>
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 OnceRef<'a, T>
impl<'a, T, A> Debug for alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, F, A> Debug for alloc::vec::extract_if::ExtractIf<'a, T, F, 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 core::slice::iter::ArrayChunks<'a, T, N>where
T: Debug + 'a,
impl<'a, T, const N: usize> Debug for ArrayChunksMut<'a, T, N>where
T: Debug + 'a,
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<'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<'f> Debug for VaListImpl<'f>
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 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 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, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for Zip<A, B>
impl<AppState: Debug> Debug for Genesis<AppState>
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> Debug for Reader<B>where
B: Debug,
impl<B> Debug for Writer<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<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for std::error::Report<E>
impl<E> Debug for BoolDeserializer<E>
impl<E> Debug for CharDeserializer<E>
impl<E> Debug for F32Deserializer<E>
impl<E> Debug for F64Deserializer<E>
impl<E> Debug for I8Deserializer<E>
impl<E> Debug for I16Deserializer<E>
impl<E> Debug for I32Deserializer<E>
impl<E> Debug for I64Deserializer<E>
impl<E> Debug for I128Deserializer<E>
impl<E> Debug for IsizeDeserializer<E>
impl<E> Debug for StringDeserializer<E>
impl<E> Debug for U8Deserializer<E>
impl<E> Debug for U16Deserializer<E>
impl<E> Debug for U32Deserializer<E>
impl<E> Debug for U64Deserializer<E>
impl<E> Debug for U128Deserializer<E>
impl<E> Debug for UnitDeserializer<E>
impl<E> Debug for UsizeDeserializer<E>
impl<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 tendermint::consensus::state::fmt::FromFn<F>
impl<F> Debug for Fwhere
F: FnPtr,
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 core::iter::adapters::array_chunks::ArrayChunks<I, N>
impl<Idx> Debug for core::ops::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<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, 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::Drain<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for 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 alloc::collections::btree::map::ExtractIf<'_, K, V, F>
impl<K, V, S> Debug for RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for HashMap<K, V, S>
impl<K, V, S> Debug for RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for RawVacantEntryMut<'_, K, V, S>
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
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<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for TrySendError<T>
impl<T> Debug for TryLockError<T>
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)
This trait is implemented for tuples up to twelve items long.