Trait acter_core::models::Debug
1.0.0 · source · pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}
Expand description
?
formatting.
Debug
should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive
a Debug
implementation.
When used with the alternate format specifier #?
, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive]
if all fields implement Debug
. When
derive
d for structs, it will use the name of the struct
, then {
, then a
comma-separated list of each field’s name and Debug
value, then }
. For
enum
s, it will use the name of the variant and, if applicable, (
, then the
Debug
values of the fields, then )
.
§Stability
Derived Debug
formats are not stable, and so may change with future Rust
versions. Additionally, Debug
implementations of types provided by the
standard library (std
, core
, alloc
, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);
There are a number of helper methods on the Formatter
struct to help you with manual
implementations, such as debug_struct
.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter
trait (debug_struct
, debug_tuple
,
debug_list
, debug_set
, debug_map
) can do something totally custom by
manually writing an arbitrary representation to the Formatter
.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}
Debug
implementations using either derive
or the debug builder API
on Formatter
support pretty-printing using the alternate flag: {:#?}
.
Pretty-printing with #?
:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);
Required Methods§
1.0.0 · sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err
if, and only if, the provided Formatter
returns Err
.
String formatting is considered an infallible operation; this function only
returns a Result
because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");
Implementors§
impl Debug for AhoCorasickKind
impl Debug for aho_corasick::packed::api::MatchKind
impl Debug for aho_corasick::util::error::MatchErrorKind
impl Debug for aho_corasick::util::prefilter::Candidate
impl Debug for aho_corasick::util::search::Anchored
impl Debug for aho_corasick::util::search::MatchKind
impl Debug for StartKind
impl Debug for async_compression::Level
impl Debug for ParseAlphabetError
impl Debug for base64::decode::DecodeError
impl Debug for DecodeSliceError
impl Debug for EncodeSliceError
impl Debug for DecodePaddingMode
impl Debug for base64ct::errors::Error
impl Debug for LineEnding
impl Debug for PadType
impl Debug for bs58::alphabet::Error
impl Debug for bs58::decode::Error
impl Debug for bs58::encode::Error
impl Debug for BigEndian
impl Debug for LittleEndian
impl Debug for Colons
impl Debug for Fixed
impl Debug for Numeric
impl Debug for chrono::format::OffsetPrecision
impl Debug for Pad
impl Debug for ParseErrorKind
impl Debug for SecondsFormat
impl Debug for chrono::month::Month
impl Debug for RoundingError
impl Debug for chrono::weekday::Weekday
impl Debug for Tz
impl Debug for FmtKind
impl Debug for NumberFmt
impl Debug for deadpool::managed::builder::BuildError
impl Debug for QueueMode
impl Debug for TimeoutType
impl Debug for deadpool_runtime::Runtime
impl Debug for SpawnBlockingError
impl Debug for InteractError
impl Debug for TruncSide
impl Debug for FlushCompress
impl Debug for FlushDecompress
impl Debug for flate2::mem::Status
impl Debug for Meaning
impl Debug for PollNext
impl Debug for hashbrown::TryReserveError
impl Debug for hashbrown::TryReserveError
impl Debug for TagKind
impl Debug for html5ever::tokenizer::interface::Token
impl Debug for AttrValueKind
impl Debug for DoctypeIdKind
impl Debug for RawKind
impl Debug for ScriptEscapeKind
impl Debug for html5ever::tokenizer::states::State
impl Debug for httparse::Error
impl Debug for GetTimezoneError
impl Debug for CalendarComponent
impl Debug for Related
impl Debug for Trigger
impl Debug for CalendarDateTime
impl Debug for DatePerhapsTime
impl Debug for icalendar::properties::Class
impl Debug for EventStatus
impl Debug for TodoStatus
impl Debug for ValueType
impl Debug for IpAddrRange
impl Debug for IpNet
impl Debug for IpSubnets
impl Debug for iso8601::Date
impl Debug for iso8601::Duration
impl Debug for itertools::with_position::Position
impl Debug for konst::parsing::parse_errors::ErrorKind
impl Debug for ParseDirection
impl Debug for ErrorCode
impl Debug for fsconfig_command
impl Debug for membarrier_cmd
impl Debug for membarrier_cmd_flag
impl Debug for log::Level
impl Debug for log::LevelFilter
impl Debug for NextParserState
impl Debug for QuirksMode
impl Debug for SetResult
impl Debug for matrix_pickle::error::DecodeError
impl Debug for matrix_pickle::error::EncodeError
impl Debug for AttachmentInfo
impl Debug for AuthApi
impl Debug for AuthSession
impl Debug for ClientBuildError
impl Debug for LoopCtrl
impl Debug for SessionChange
impl Debug for SteadyStateError
impl Debug for BackupState
impl Debug for UploadState
impl Debug for BackupDownloadStrategy
impl Debug for CrossSigningResetAuthType
impl Debug for matrix_sdk::encryption::VerificationState
impl Debug for ManualVerifyError
impl Debug for RequestVerificationError
impl Debug for EnableProgress
impl Debug for RecoveryError
impl Debug for RecoveryState
impl Debug for matrix_sdk::encryption::secret_storage::DecryptionError
impl Debug for SecretStorageError
impl Debug for matrix_sdk::encryption::verification::Verification
impl Debug for matrix_sdk::encryption::verification::requests::VerificationRequestState
impl Debug for matrix_sdk::error::Error
impl Debug for HttpError
impl Debug for NotificationSettingsError
impl Debug for RefreshTokenError
impl Debug for RoomKeyImportError
impl Debug for RumaApiError
impl Debug for EventCacheError
impl Debug for EventsOrigin
impl Debug for RoomEventCacheUpdate
impl Debug for TimelineHasBeenResetWhilePaginating
impl Debug for PaginatorError
impl Debug for PaginatorState
impl Debug for SsoError
impl Debug for MediaError
impl Debug for IsEncrypted
impl Debug for IsOneToOne
impl Debug for EditError
impl Debug for EditedContent
impl Debug for ParentSpace
impl Debug for RoomMemberRole
impl Debug for LocalEchoContent
impl Debug for RoomSendQueueError
impl Debug for RoomSendQueueStorageError
impl Debug for RoomSendQueueUpdate
impl Debug for matrix_sdk::sliding_sync::client::Version
impl Debug for VersionBuilder
impl Debug for VersionBuilderError
impl Debug for matrix_sdk::sliding_sync::error::Error
impl Debug for SlidingSyncListLoadingState
impl Debug for SlidingSyncMode
impl Debug for SlidingSyncRoomState
impl Debug for RoomUpdate
impl Debug for AnySyncOrStrippedState
impl Debug for RawAnySyncOrStrippedState
impl Debug for RawAnySyncOrStrippedTimelineEvent
impl Debug for matrix_sdk_base::error::Error
impl Debug for EventCacheStoreError
impl Debug for MediaFormat
impl Debug for RoomNotificationMode
impl Debug for DisplayName
impl Debug for RoomState
impl Debug for StoreError
impl Debug for DependentQueuedRequestKind
impl Debug for QueueWedgeError
impl Debug for QueuedRequestKind
impl Debug for ComposerDraftType
impl Debug for StateStoreDataValue
impl Debug for AlgorithmInfo
impl Debug for DeviceLinkProblem
impl Debug for ShieldState
impl Debug for ShieldStateCode
impl Debug for TimelineEventKind
impl Debug for UnableToDecryptReason
impl Debug for UnsignedDecryptionResult
impl Debug for UnsignedEventLocation
impl Debug for VerificationLevel
impl Debug for matrix_sdk_common::deserialized_responses::VerificationState
impl Debug for LockStoreError
impl Debug for SignatureState
impl Debug for matrix_sdk_crypto::backups::keys::decryption::DecodeError
impl Debug for matrix_sdk_crypto::backups::keys::decryption::DecryptionError
impl Debug for DehydrationError
impl Debug for RoomEventDecryptionResult
impl Debug for TrustRequirement
impl Debug for EventError
impl Debug for MegolmError
impl Debug for OlmError
impl Debug for matrix_sdk_crypto::error::SessionCreationError
impl Debug for SessionRecipientCollectionError
impl Debug for SetRoomSettingsError
impl Debug for matrix_sdk_crypto::error::SignatureError
impl Debug for DecryptorError
impl Debug for KeyExportError
impl Debug for SecretInfo
impl Debug for LocalTrust
impl Debug for IdentityState
impl Debug for RoomIdentityChange
impl Debug for matrix_sdk_crypto::identities::user::UserIdentity
impl Debug for UserIdentityData
impl Debug for matrix_sdk_crypto::olm::group_sessions::SessionCreationError
impl Debug for SessionExportError
impl Debug for SenderData
impl Debug for SenderDataType
impl Debug for OutgoingRequests
impl Debug for OutgoingVerificationRequest
impl Debug for matrix_sdk_crypto::secret_storage::DecodeError
impl Debug for CollectStrategy
impl Debug for SecretImportError
impl Debug for SecretsBundleExportError
impl Debug for CryptoStoreError
impl Debug for RoomKeyBackupInfo
impl Debug for matrix_sdk_crypto::types::cross_signing::common::SigningKey
impl Debug for DeviceKey
impl Debug for BackupSecrets
impl Debug for matrix_sdk_crypto::types::EventEncryptionAlgorithm
impl Debug for matrix_sdk_crypto::types::Signature
impl Debug for ForwardedRoomKeyContent
impl Debug for AnyDecryptedOlmEvent
impl Debug for RoomEventEncryptionScheme
impl Debug for ToDeviceEncryptedEventContent
impl Debug for RoomKeyContent
impl Debug for matrix_sdk_crypto::types::events::room_key_request::Action
impl Debug for matrix_sdk_crypto::types::events::room_key_request::RequestedKeyInfo
impl Debug for SupportedKeyInfo
impl Debug for MegolmV1AesSha2WithheldContent
impl Debug for RoomKeyWithheldContent
impl Debug for WithheldCode
impl Debug for ToDeviceEvents
impl Debug for UtdCause
impl Debug for matrix_sdk_crypto::types::one_time_keys::OneTimeKey
impl Debug for LoginQrCodeDecodeError
impl Debug for QrCodeMode
impl Debug for QrCodeModeData
impl Debug for matrix_sdk_crypto::verification::Verification
impl Debug for matrix_sdk_crypto::verification::requests::VerificationRequestState
impl Debug for SasState
impl Debug for OpenStoreError
impl Debug for EncryptedValueBase64DecodeError
impl Debug for matrix_sdk_store_encryption::Error
impl Debug for PrefilterConfig
impl Debug for minijinja::error::ErrorKind
impl Debug for AutoEscape
impl Debug for UndefinedBehavior
impl Debug for ValueKind
impl Debug for ObjectRepr
impl Debug for CompressionStrategy
impl Debug for TDEFLFlush
impl Debug for TDEFLStatus
impl Debug for miniz_oxide::deflate::CompressionLevel
impl Debug for DataFormat
impl Debug for MZError
impl Debug for MZFlush
impl Debug for MZStatus
impl Debug for TINFLStatus
impl Debug for nom::error::ErrorKind
impl Debug for VerboseErrorKind
impl Debug for nom::internal::Needed
impl Debug for nom::number::Endianness
impl Debug for nom::traits::CompareResult
impl Debug for FloatErrorKind
impl Debug for parking_lot::once::OnceState
impl Debug for FilterOp
impl Debug for ParkResult
impl Debug for RequeueOp
impl Debug for pulldown_cmark::Alignment
impl Debug for BlockQuoteKind
impl Debug for HeadingLevel
impl Debug for LinkType
impl Debug for MetadataBlockKind
impl Debug for TagEnd
impl Debug for BernoulliError
impl Debug for WeightedError
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
impl Debug for regex::error::Error
impl Debug for StartError
impl Debug for WhichCaptures
impl Debug for regex_automata::nfa::thompson::nfa::State
impl Debug for regex_automata::util::look::Look
impl Debug for regex_automata::util::search::Anchored
impl Debug for regex_automata::util::search::MatchErrorKind
impl Debug for regex_automata::util::search::MatchKind
impl Debug for AssertionKind
impl Debug for Ast
impl Debug for ClassAsciiKind
impl Debug for ClassPerlKind
impl Debug for ClassSet
impl Debug for ClassSetBinaryOpKind
impl Debug for ClassSetItem
impl Debug for ClassUnicodeKind
impl Debug for ClassUnicodeOpKind
impl Debug for regex_syntax::ast::ErrorKind
impl Debug for regex_syntax::ast::Flag
impl Debug for FlagsItemKind
impl Debug for GroupKind
impl Debug for HexLiteralKind
impl Debug for LiteralKind
impl Debug for RepetitionKind
impl Debug for RepetitionRange
impl Debug for SpecialLiteralKind
impl Debug for regex_syntax::error::Error
impl Debug for regex_syntax::hir::Class
impl Debug for Dot
impl Debug for regex_syntax::hir::ErrorKind
impl Debug for HirKind
impl Debug for regex_syntax::hir::Look
impl Debug for ExtractKind
impl Debug for Utf8Sequence
impl Debug for BytesReadError
impl Debug for Marker
impl Debug for BytesMode
impl Debug for rmp_serde::decode::Error
impl Debug for rmp_serde::encode::Error
impl Debug for ThirdPartyIdRemovalStatus
impl Debug for ruma_client_api::account::register::LoginType
impl Debug for RegistrationKind
impl Debug for BackupAlgorithm
impl Debug for DehydratedDeviceData
impl Debug for DeviceDehydrationAlgorithm
impl Debug for DelayParameters
impl Debug for UpdateAction
impl Debug for ContactRole
impl Debug for RoomVersionStability
impl Debug for ErrorBody
impl Debug for ruma_client_api::error::ErrorKind
impl Debug for RetryAfter
impl Debug for EventFormat
impl Debug for LazyLoadOptions
impl Debug for UrlFilter
impl Debug for FailureErrorCode
impl Debug for MembershipEventFilter
impl Debug for InvitationRecipient
impl Debug for PusherKind
impl Debug for PusherAction
impl Debug for ruma_client_api::receipt::create_receipt::v3::ReceiptType
impl Debug for RoomPreset
impl Debug for Visibility
impl Debug for GroupingKey
impl Debug for OrderBy
impl Debug for OwnedRoomIdOrUserId
impl Debug for SearchKeys
impl Debug for IdentityProviderBrand
impl Debug for ruma_client_api::session::get_login_types::v3::LoginType
impl Debug for LoginInfo
impl Debug for ruma_client_api::sync::sync_events::v3::Filter
impl Debug for RoomReceiptConfig
impl Debug for SlidingOp
impl Debug for ReceiptsRoom
impl Debug for IncludeThreads
impl Debug for ruma_client_api::typing::create_typing_event::v3::Typing
impl Debug for AuthData
impl Debug for AuthType
impl Debug for UiaaResponse
impl Debug for UserIdentifier
impl Debug for ruma_client_api::uiaa::get_uiaa_fallback_page::v3::Response
impl Debug for AuthScheme
impl Debug for ruma_common::api::Direction
impl Debug for DeserializationError
impl Debug for FromHttpRequestError
impl Debug for HeaderDeserializationError
impl Debug for HeaderSerializationError
impl Debug for IntoHttpError
impl Debug for MatrixErrorBody
impl Debug for MultipartMixedDeserializationError
impl Debug for MatrixVersion
impl Debug for VersioningDecision
impl Debug for TokenType
impl Debug for CanonicalJsonError
impl Debug for JsonType
impl Debug for RedactionError
impl Debug for CanonicalJsonValue
impl Debug for PublicRoomJoinRule
impl Debug for RoomNetwork
impl Debug for RoomTypeFilter
impl Debug for KeyUsage
impl Debug for ruma_common::encryption::OneTimeKey
impl Debug for ContentDispositionParseError
impl Debug for ContentDispositionType
impl Debug for TokenStringParseError
impl Debug for DeviceKeyAlgorithm
impl Debug for ruma_common::identifiers::crypto_algorithms::EventEncryptionAlgorithm
impl Debug for KeyDerivationAlgorithm
impl Debug for OneTimeKeyAlgorithm
impl Debug for SigningKeyAlgorithm
impl Debug for MatrixId
impl Debug for UriAction
impl Debug for RoomVersionId
impl Debug for VoipVersionId
impl Debug for ruma_common::media::Method
impl Debug for PresenceState
impl Debug for ruma_common::push::action::Action
impl Debug for Tweak
impl Debug for PushCondition
impl Debug for FlattenedJsonValue
impl Debug for ScalarJsonValue
impl Debug for ComparisonOperator
impl Debug for InsertPushRuleError
impl Debug for NewPushRule
impl Debug for PushFormat
impl Debug for RemovePushRuleError
impl Debug for RuleKind
impl Debug for AnyPushRule
impl Debug for PredefinedContentRuleId
impl Debug for PredefinedOverrideRuleId
impl Debug for PredefinedRuleId
impl Debug for PredefinedUnderrideRuleId
impl Debug for RoomType
impl Debug for SpaceRoomJoinRule
impl Debug for Medium
impl Debug for DeviceIdOrAllDevices
impl Debug for StreamPurpose
impl Debug for Reason
impl Debug for CallMemberEventContent
impl Debug for LeaveReason
impl Debug for ActiveFocus
impl Debug for Focus
impl Debug for FocusSelection
impl Debug for Application
impl Debug for CallScope
impl Debug for KeyParseError
impl Debug for ApplicationType
impl Debug for NotifyType
impl Debug for AnyEphemeralRoomEvent
impl Debug for AnyEphemeralRoomEventContent
impl Debug for AnyFullStateEventContent
impl Debug for AnyGlobalAccountDataEvent
impl Debug for AnyGlobalAccountDataEventContent
impl Debug for AnyInitialStateEvent
impl Debug for AnyMessageLikeEvent
impl Debug for AnyMessageLikeEventContent
impl Debug for AnyRoomAccountDataEvent
impl Debug for AnyRoomAccountDataEventContent
impl Debug for AnyStateEvent
impl Debug for AnyStateEventContent
impl Debug for AnyStrippedStateEvent
impl Debug for AnySyncEphemeralRoomEvent
impl Debug for AnySyncMessageLikeEvent
impl Debug for AnySyncStateEvent
impl Debug for AnySyncTimelineEvent
impl Debug for AnyTimelineEvent
impl Debug for AnyToDeviceEvent
impl Debug for AnyToDeviceEventContent
impl Debug for EphemeralRoomEventType
impl Debug for GlobalAccountDataEventType
impl Debug for MessageLikeEventType
impl Debug for RoomAccountDataEventType
impl Debug for StateEventType
impl Debug for TimelineEventType
impl Debug for ToDeviceEventType
impl Debug for AcceptMethod
impl Debug for CancelCode
impl Debug for ruma_events::key::verification::HashAlgorithm
impl Debug for KeyAgreementProtocol
impl Debug for MessageAuthenticationCode
impl Debug for ShortAuthenticationString
impl Debug for VerificationMethod
impl Debug for StartMethod
impl Debug for AssetType
impl Debug for ZoomLevelError
impl Debug for Recommendation
impl Debug for PollAnswersError
impl Debug for PollKind
impl Debug for UnstablePollStartEventContent
impl Debug for ReceiptThread
impl Debug for ruma_events::receipt::ReceiptType
impl Debug for RelationType
impl Debug for EncryptedEventScheme
impl Debug for ruma_events::room::encrypted::Relation
impl Debug for MediaSource
impl Debug for GuestAccess
impl Debug for HistoryVisibility
impl Debug for AllowRule
impl Debug for JoinRule
impl Debug for MembershipState
impl Debug for AddMentions
impl Debug for ForwardThread
impl Debug for MessageFormat
impl Debug for ruma_events::room::message::MessageType
impl Debug for ReplyWithinThread
impl Debug for RelationWithoutReplacement
impl Debug for LimitType
impl Debug for ServerNoticeType
impl Debug for NotificationPowerLevelType
impl Debug for PowerLevelAction
impl Debug for PowerLevelUserAction
impl Debug for RoomRedactionEvent
impl Debug for SyncRoomRedactionEvent
impl Debug for ruma_events::room_key_request::Action
impl Debug for RequestAction
impl Debug for SecretName
impl Debug for SecretStorageEncryptionAlgorithm
impl Debug for SecretEncryptedData
impl Debug for StickerMediaSource
impl Debug for TagName
impl Debug for HtmlSanitizerMode
impl Debug for RemoveReplyFallback
impl Debug for NodeData
impl Debug for ListBehavior
impl Debug for ruma_identifiers_validation::error::Error
impl Debug for MatrixIdError
impl Debug for MatrixToError
impl Debug for MatrixUriError
impl Debug for MxcUriError
impl Debug for VoipVersionIdError
impl Debug for DbConfig
impl Debug for rusqlite::error::Error
impl Debug for rusqlite::limits::Limit
impl Debug for DropBehavior
impl Debug for TransactionState
impl Debug for rusqlite::types::Type
impl Debug for FromSqlError
impl Debug for rusqlite::types::value::Value
impl Debug for Advice
impl Debug for rustix::backend::fs::types::FileType
impl Debug for FlockOperation
impl Debug for rustix::fs::seek_from::SeekFrom
impl Debug for rustix::ioctl::Direction
impl Debug for EarlyDataError
impl Debug for Tls12Resumption
impl Debug for EchMode
impl Debug for EchStatus
impl Debug for HandshakeKind
impl Debug for Side
impl Debug for CompressionCache
impl Debug for rustls::compress::CompressionLevel
impl Debug for rustls::conn::connection::Connection
impl Debug for rustls::conn::unbuffered::EncodeError
impl Debug for EncryptError
impl Debug for AlertDescription
impl Debug for CertificateCompressionAlgorithm
impl Debug for CipherSuite
impl Debug for ContentType
impl Debug for HandshakeType
impl Debug for ProtocolVersion
impl Debug for SignatureAlgorithm
impl Debug for SignatureScheme
impl Debug for CertRevocationListError
impl Debug for CertificateError
impl Debug for EncryptedClientHelloError
impl Debug for rustls::error::Error
impl Debug for InconsistentKeys
impl Debug for InvalidMessage
impl Debug for PeerIncompatible
impl Debug for PeerMisbehaved
impl Debug for rustls::msgs::enums::HashAlgorithm
impl Debug for NamedGroup
impl Debug for KeyExchangeAlgorithm
impl Debug for rustls::quic::connection::Connection
impl Debug for rustls::quic::Version
impl Debug for SupportedCipherSuite
impl Debug for VerifierBuilderError
impl Debug for rustls_pemfile::pemfile::Error
impl Debug for rustls_pemfile::pemfile::Item
impl Debug for rustls_pki_types::pem::Error
impl Debug for SectionKind
impl Debug for rustls_pki_types::server_name::IpAddr
impl Debug for Always
impl Debug for sdd::tag::Tag
impl Debug for serde_json::error::Category
impl Debug for serde_json::value::Value
impl Debug for serde_urlencoded::ser::Error
impl Debug for CollectionAllocErr
impl Debug for InterfaceIndexOrAddress
impl Debug for strum::ParseError
impl Debug for SubtendrilError
impl Debug for time::error::Error
impl Debug for time::error::format::Format
impl Debug for InvalidFormatDescription
impl Debug for BorrowedFormatItem<'_>
impl Debug for time::format_description::component::Component
impl Debug for MonthRepr
impl Debug for Padding
impl Debug for SubsecondDigits
impl Debug for UnixTimestampPrecision
impl Debug for WeekNumberRepr
impl Debug for WeekdayRepr
impl Debug for YearRepr
impl Debug for OwnedFormatItem
impl Debug for DateKind
impl Debug for FormattedComponents
impl Debug for time::format_description::well_known::iso8601::OffsetPrecision
impl Debug for TimePrecision
impl Debug for time::month::Month
impl Debug for time::weekday::Weekday
impl Debug for RuntimeFlavor
impl Debug for TryAcquireError
impl Debug for tokio::sync::broadcast::error::RecvError
impl Debug for tokio::sync::broadcast::error::TryRecvError
impl Debug for tokio::sync::mpsc::error::TryRecvError
impl Debug for tokio::sync::oneshot::error::TryRecvError
impl Debug for MissedTickBehavior
impl Debug for BroadcastStreamRecvError
impl Debug for AnyDelimiterCodecError
impl Debug for LinesCodecError
impl Debug for toml::value::Value
impl Debug for Offset
impl Debug for toml_edit::item::Item
impl Debug for toml_edit::ser::Error
impl Debug for toml_edit::value::Value
impl Debug for ulid::base32::DecodeError
impl Debug for ulid::base32::EncodeError
impl Debug for MonotonicError
impl Debug for BidiClass
impl Debug for unicode_bidi::Direction
impl Debug for unicode_bidi::level::Error
impl Debug for IsNormalized
impl Debug for Origin
impl Debug for url::parser::ParseError
impl Debug for SyntaxViolation
impl Debug for url::slicing::Position
impl Debug for Variant
impl Debug for uuid::Version
impl Debug for vodozemac::ecies::Error
impl Debug for vodozemac::ecies::messages::MessageDecodeError
impl Debug for vodozemac::DecodeError
impl Debug for LibolmPickleError
impl Debug for PickleError
impl Debug for vodozemac::megolm::inbound_group_session::DecryptionError
impl Debug for SessionOrdering
impl Debug for SessionKeyDecodeError
impl Debug for vodozemac::olm::account::SessionCreationError
impl Debug for vodozemac::olm::messages::MessageType
impl Debug for OlmMessage
impl Debug for vodozemac::olm::session::DecryptionError
impl Debug for vodozemac::pk_encryption::Error
impl Debug for vodozemac::pk_encryption::MessageDecodeError
impl Debug for SasError
impl Debug for vodozemac::types::ed25519::SignatureError
impl Debug for KeyError
impl Debug for ExpirationPolicy
impl Debug for RevocationCheckDepth
impl Debug for UnknownStatusPolicy
impl Debug for RevocationReason
impl Debug for DerTypeId
impl Debug for webpki::error::Error
impl Debug for winnow::binary::Endianness
impl Debug for winnow::error::ErrorKind
impl Debug for winnow::error::Needed
impl Debug for StrContext
impl Debug for StrContextValue
impl Debug for winnow::stream::CompareResult
impl Debug for acter_core::error::Error
impl Debug for AttachmentBuilderError
impl Debug for AttachmentContent
impl Debug for AttachmentUpdateBuilderError
impl Debug for FallbackAttachmentContent
impl Debug for CalendarEventBuilderError
impl Debug for CalendarEventUpdateBuilderError
impl Debug for EventLocation
impl Debug for CommentBuilderError
impl Debug for CommentUpdateBuilderError
impl Debug for ActerIcon
impl Debug for AnyActerEvent
impl Debug for BrandLogo
impl Debug for CalendarEventAction
impl Debug for Icon
impl Debug for acter_core::events::Position
impl Debug for RefDetails
impl Debug for TaskAction
impl Debug for TaskListAction
impl Debug for FallbackNewsContent
impl Debug for NewsContent
impl Debug for NewsEntryBuilderError
impl Debug for NewsEntryUpdateBuilderError
impl Debug for NewsSlideBuilderError
impl Debug for PinBuilderError
impl Debug for PinUpdateBuilderError
impl Debug for SubscribeBuilderError
impl Debug for RsvpBuilderError
impl Debug for RsvpStatus
impl Debug for ActerAppSettingsContentBuilderError
impl Debug for AutoDownload
impl Debug for Priority
impl Debug for SpecialTaskListRole
impl Debug for TaskBuilderError
impl Debug for TaskListBuilderError
impl Debug for TaskListUpdateBuilderError
impl Debug for TaskSelfAssignBuilderError
impl Debug for TaskSelfUnassignBuilderError
impl Debug for TaskUpdateBuilderError
impl Debug for CreateSpaceSettingsBuilderError
impl Debug for RelationTargetType
impl Debug for acter_core::templates::Error
impl Debug for AnyActerModel
impl Debug for Capability
impl Debug for TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for core::cmp::Ordering
impl Debug for Infallible
impl Debug for c_void
impl Debug for core::fmt::Alignment
impl Debug for core::net::ip_addr::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 std::io::SeekFrom
impl Debug for std::io::error::ErrorKind
impl Debug for Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for RecvTimeoutError
impl Debug for std::sync::mpsc::TryRecvError
impl Debug for _Unwind_Reason_Code
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 Adler32
impl Debug for aead::Error
impl Debug for Aes128
impl Debug for Aes128Dec
impl Debug for Aes128Enc
impl Debug for Aes192
impl Debug for Aes192Dec
impl Debug for Aes192Enc
impl Debug for Aes256
impl Debug for Aes256Dec
impl Debug for Aes256Enc
impl Debug for AhoCorasick
impl Debug for AhoCorasickBuilder
impl Debug for aho_corasick::automaton::OverlappingState
impl Debug for aho_corasick::dfa::Builder
impl Debug for aho_corasick::dfa::DFA
impl Debug for aho_corasick::nfa::contiguous::Builder
impl Debug for aho_corasick::nfa::contiguous::NFA
impl Debug for aho_corasick::nfa::noncontiguous::Builder
impl Debug for aho_corasick::nfa::noncontiguous::NFA
impl Debug for aho_corasick::packed::api::Builder
impl Debug for aho_corasick::packed::api::Config
impl Debug for aho_corasick::packed::api::Searcher
impl Debug for aho_corasick::util::error::BuildError
impl Debug for aho_corasick::util::error::MatchError
impl Debug for aho_corasick::util::prefilter::Prefilter
impl Debug for aho_corasick::util::primitives::PatternID
impl Debug for aho_corasick::util::primitives::PatternIDError
impl Debug for aho_corasick::util::primitives::StateID
impl Debug for aho_corasick::util::primitives::StateIDError
impl Debug for aho_corasick::util::search::Match
impl Debug for aho_corasick::util::search::Span
impl Debug for anyhow::Error
impl Debug for Constant
impl Debug for Stop
impl Debug for Zero
impl Debug for SystemClock
impl Debug for base64::alphabet::Alphabet
impl Debug for GeneralPurpose
impl Debug for GeneralPurposeConfig
impl Debug for DecodeMetadata
impl Debug for Base64Bcrypt
impl Debug for Base64Crypt
impl Debug for Base64ShaCrypt
impl Debug for base64ct::alphabet::standard::Base64
impl Debug for Base64Unpadded
impl Debug for Base64Url
impl Debug for Base64UrlUnpadded
impl Debug for InvalidEncodingError
impl Debug for InvalidLengthError
impl Debug for bitflags::parser::ParseError
impl Debug for Hash
impl Debug for blake3::Hasher
impl Debug for HexError
impl Debug for OutputReader
impl Debug for Eager
impl Debug for block_buffer::Error
impl Debug for block_buffer::Lazy
impl Debug for AnsiX923
impl Debug for Iso7816
impl Debug for Iso10126
impl Debug for NoPadding
impl Debug for Pkcs7
impl Debug for UnpadError
impl Debug for ZeroPadding
impl Debug for bs58::alphabet::Alphabet
impl Debug for UninitSlice
impl Debug for bytes::bytes::Bytes
impl Debug for BytesMut
impl Debug for ByteSize
impl Debug for Parsed
impl Debug for InternalFixed
impl Debug for InternalNumeric
impl Debug for OffsetFormat
impl Debug for chrono::format::ParseError
impl Debug for Months
impl Debug for ParseMonthError
impl Debug for NaiveDate
The Debug
output of the naive date d
is the same as
d.format("%Y-%m-%d")
.
The string printed can be readily parsed via the parse
method on str
.
§Example
use chrono::NaiveDate;
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(2015, 9, 5).unwrap()), "2015-09-05");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 1).unwrap()), "0000-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(9999, 12, 31).unwrap()), "9999-12-31");
ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(-1, 1, 1).unwrap()), "-0001-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(10000, 12, 31).unwrap()), "+10000-12-31");
impl Debug for NaiveDateDaysIterator
impl Debug for NaiveDateWeeksIterator
impl Debug for NaiveDateTime
The Debug
output of the naive date and time dt
is the same as
dt.format("%Y-%m-%dT%H:%M:%S%.f")
.
The string printed can be readily parsed via the parse
method on str
.
It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)
§Example
use chrono::NaiveDate;
let dt = NaiveDate::from_ymd_opt(2016, 11, 15).unwrap().and_hms_opt(7, 39, 24).unwrap();
assert_eq!(format!("{:?}", dt), "2016-11-15T07:39:24");
Leap seconds may also be used.
let dt =
NaiveDate::from_ymd_opt(2015, 6, 30).unwrap().and_hms_milli_opt(23, 59, 59, 1_500).unwrap();
assert_eq!(format!("{:?}", dt), "2015-06-30T23:59:60.500");
impl Debug for IsoWeek
The Debug
output of the ISO week w
is the same as
d.format("%G-W%V")
where d
is any NaiveDate
value in that week.
§Example
use chrono::{Datelike, NaiveDate};
assert_eq!(
format!("{:?}", NaiveDate::from_ymd_opt(2015, 9, 5).unwrap().iso_week()),
"2015-W36"
);
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 3).unwrap().iso_week()), "0000-W01");
assert_eq!(
format!("{:?}", NaiveDate::from_ymd_opt(9999, 12, 31).unwrap().iso_week()),
"9999-W52"
);
ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 2).unwrap().iso_week()), "-0001-W52");
assert_eq!(
format!("{:?}", NaiveDate::from_ymd_opt(10000, 12, 31).unwrap().iso_week()),
"+10000-W52"
);
impl Debug for Days
impl Debug for NaiveWeek
impl Debug for NaiveTime
The Debug
output of the naive time t
is the same as
t.format("%H:%M:%S%.f")
.
The string printed can be readily parsed via the parse
method on str
.
It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)
§Example
use chrono::NaiveTime;
assert_eq!(format!("{:?}", NaiveTime::from_hms_opt(23, 56, 4).unwrap()), "23:56:04");
assert_eq!(
format!("{:?}", NaiveTime::from_hms_milli_opt(23, 56, 4, 12).unwrap()),
"23:56:04.012"
);
assert_eq!(
format!("{:?}", NaiveTime::from_hms_micro_opt(23, 56, 4, 1234).unwrap()),
"23:56:04.001234"
);
assert_eq!(
format!("{:?}", NaiveTime::from_hms_nano_opt(23, 56, 4, 123456).unwrap()),
"23:56:04.000123456"
);
Leap seconds may also be used.
assert_eq!(
format!("{:?}", NaiveTime::from_hms_milli_opt(6, 59, 59, 1_500).unwrap()),
"06:59:60.500"
);
impl Debug for FixedOffset
impl Debug for Local
impl Debug for Utc
impl Debug for OutOfRange
impl Debug for OutOfRangeError
impl Debug for TimeDelta
impl Debug for ParseWeekdayError
impl Debug for chrono_tz::timezones::ParseError
impl Debug for OverflowError
impl Debug for StreamCipherError
impl Debug for FmtArg
impl Debug for crc32fast::Hasher
impl Debug for crypto_common::InvalidLength
impl Debug for CompressedEdwardsY
impl Debug for EdwardsBasepointTable
impl Debug for EdwardsBasepointTableRadix32
impl Debug for EdwardsBasepointTableRadix64
impl Debug for EdwardsBasepointTableRadix128
impl Debug for EdwardsBasepointTableRadix256
impl Debug for EdwardsPoint
impl Debug for MontgomeryPoint
impl Debug for CompressedRistretto
impl Debug for RistrettoPoint
impl Debug for Scalar
impl Debug for InvalidDate
impl Debug for TooFuturistic
impl Debug for PoolConfig
impl Debug for Timeouts
impl Debug for Metrics
impl Debug for deadpool::Status
impl Debug for deadpool_sqlite::config::Config
impl Debug for Manager
impl Debug for deranged::ParseIntError
impl Debug for deranged::TryFromIntError
impl Debug for UninitializedFieldError
impl Debug for MacError
impl Debug for InvalidBufferSize
impl Debug for InvalidOutputSize
impl Debug for ed25519::Signature
impl Debug for ed25519_dalek::signing::SigningKey
impl Debug for VerifyingKey
impl Debug for Rng
impl Debug for Crc
impl Debug for GzBuilder
impl Debug for GzHeader
impl Debug for Compress
impl Debug for CompressError
impl Debug for Decompress
impl Debug for flate2::mem::DecompressError
impl Debug for Compression
impl Debug for futures_channel::mpsc::SendError
impl Debug for futures_channel::mpsc::TryRecvError
impl Debug for Canceled
impl Debug for AtomicWaker
impl Debug for Enter
impl Debug for EnterError
impl Debug for LocalPool
impl Debug for LocalSpawner
impl Debug for SpawnError
impl Debug for futures_util::abortable::AbortHandle
impl Debug for AbortRegistration
impl Debug for Aborted
impl Debug for futures_util::io::empty::Empty
impl Debug for futures_util::io::repeat::Repeat
impl Debug for futures_util::io::sink::Sink
impl Debug for getrandom::error::Error
impl Debug for GrowableBloom
impl Debug for hkdf::errors::InvalidLength
impl Debug for InvalidPrkLength
impl Debug for Doctype
impl Debug for html5ever::tokenizer::interface::Tag
impl Debug for http::error::Error
impl Debug for http::extensions::Extensions
impl Debug for MaxSizeReached
impl Debug for HeaderName
impl Debug for InvalidHeaderName
impl Debug for HeaderValue
impl Debug for InvalidHeaderValue
impl Debug for ToStrError
impl Debug for InvalidMethod
impl Debug for http::method::Method
impl Debug for http::request::Builder
impl Debug for http::request::Parts
impl Debug for http::response::Builder
impl Debug for http::response::Parts
impl Debug for InvalidStatusCode
impl Debug for StatusCode
impl Debug for Authority
impl Debug for http::uri::builder::Builder
impl Debug for PathAndQuery
impl Debug for Scheme
impl Debug for InvalidUri
impl Debug for InvalidUriParts
impl Debug for http::uri::Parts
impl Debug for Uri
impl Debug for http::version::Version
impl Debug for SizeHint
impl Debug for LengthLimitError
impl Debug for InvalidChunkSize
impl Debug for ParserConfig
impl Debug for hyper::body::incoming::Incoming
impl Debug for hyper::client::conn::http1::Builder
impl Debug for hyper::error::Error
impl Debug for ReasonPhrase
impl Debug for OnUpgrade
impl Debug for hyper::upgrade::Upgraded
impl Debug for hyper_util::client::legacy::client::Builder
impl Debug for hyper_util::client::legacy::client::Error
impl Debug for ResponseFuture
impl Debug for CaptureConnection
impl Debug for GaiAddrs
impl Debug for GaiFuture
impl Debug for GaiResolver
impl Debug for InvalidNameError
impl Debug for hyper_util::client::legacy::connect::dns::Name
impl Debug for HttpInfo
impl Debug for Connected
impl Debug for TokioExecutor
impl Debug for TokioTimer
impl Debug for icalendar::calendar::Calendar
impl Debug for Alarm
impl Debug for icalendar::components::event::Event
impl Debug for Todo
impl Debug for Venue
impl Debug for icalendar::properties::Parameter
impl Debug for icalendar::properties::Property
impl Debug for Errors
impl Debug for indexmap::TryReserveError
impl Debug for IntoArrayError
impl Debug for NotEqualError
impl Debug for OutIsTooSmallError
impl Debug for PadError
impl Debug for Ipv4AddrRange
impl Debug for Ipv6AddrRange
impl Debug for Ipv4Net
impl Debug for Ipv4Subnets
impl Debug for Ipv6Net
impl Debug for Ipv6Subnets
impl Debug for PrefixLenError
impl Debug for ipnet::parser::AddrParseError
impl Debug for iso8601::DateTime
impl Debug for iso8601::Time
impl Debug for js_int::error::ParseIntError
impl Debug for js_int::error::TryFromIntError
impl Debug for Int
impl Debug for js_int::uint::UInt
impl Debug for konst::ffi::cstr::FromBytesUntilNulError
impl Debug for konst::ffi::cstr::FromBytesWithNulError
impl Debug for konst::primitive::parse::ParseBoolError
impl Debug for konst::primitive::parse::ParseIntError
impl Debug for konst::string::Utf8Error
impl Debug for TryIntoArrayError
impl Debug for Fts5Context
impl Debug for Fts5ExtensionApi
impl Debug for Fts5PhraseIter
impl Debug for Fts5Tokenizer
impl Debug for fts5_api
impl Debug for fts5_tokenizer
impl Debug for sqlite3
impl Debug for sqlite3_api_routines
impl Debug for sqlite3_backup
impl Debug for sqlite3_blob
impl Debug for sqlite3_changegroup
impl Debug for sqlite3_changeset_iter
impl Debug for sqlite3_context
impl Debug for sqlite3_file
impl Debug for sqlite3_index_constraint
impl Debug for sqlite3_index_constraint_usage
impl Debug for sqlite3_index_info
impl Debug for sqlite3_index_orderby
impl Debug for sqlite3_io_methods
impl Debug for sqlite3_mem_methods
impl Debug for sqlite3_module
impl Debug for sqlite3_mutex
impl Debug for sqlite3_mutex_methods
impl Debug for sqlite3_pcache
impl Debug for sqlite3_pcache_methods2
impl Debug for sqlite3_pcache_methods
impl Debug for sqlite3_pcache_page
impl Debug for sqlite3_rebaser
impl Debug for sqlite3_rtree_geometry
impl Debug for sqlite3_rtree_query_info
impl Debug for sqlite3_session
impl Debug for sqlite3_snapshot
impl Debug for sqlite3_stmt
impl Debug for sqlite3_str
impl Debug for sqlite3_value
impl Debug for sqlite3_vfs
impl Debug for sqlite3_vtab
impl Debug for sqlite3_vtab_cursor
impl Debug for libsqlite3_sys::error::Error
impl Debug for __kernel_fd_set
impl Debug for __kernel_fsid_t
impl Debug for __kernel_itimerspec
impl Debug for __kernel_old_itimerval
impl Debug for __kernel_old_timespec
impl Debug for __kernel_old_timeval
impl Debug for __kernel_sock_timeval
impl Debug for __kernel_timespec
impl Debug for __old_kernel_stat
impl Debug for __sifields__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_4
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3
impl Debug for __sifields__bindgen_ty_6
impl Debug for __sifields__bindgen_ty_7
impl Debug for __user_cap_data_struct
impl Debug for __user_cap_header_struct
impl Debug for clone_args
impl Debug for compat_statfs64
impl Debug for epoll_event
impl Debug for f_owner_ex
impl Debug for file_clone_range
impl Debug for file_dedupe_range
impl Debug for file_dedupe_range_info
impl Debug for files_stat_struct
impl Debug for flock64
impl Debug for flock
impl Debug for fscrypt_key
impl Debug for fscrypt_policy_v1
impl Debug for fscrypt_policy_v2
impl Debug for fscrypt_provisioning_key_payload
impl Debug for fstrim_range
impl Debug for fsxattr
impl Debug for futex_waitv
impl Debug for inodes_stat_t
impl Debug for inotify_event
impl Debug for iovec
impl Debug for itimerspec
impl Debug for itimerval
impl Debug for kernel_sigaction
impl Debug for kernel_sigset_t
impl Debug for ktermios
impl Debug for linux_dirent64
impl Debug for mount_attr
impl Debug for open_how
impl Debug for pollfd
impl Debug for rand_pool_info
impl Debug for rlimit64
impl Debug for rlimit
impl Debug for robust_list
impl Debug for robust_list_head
impl Debug for rusage
impl Debug for sigaction
impl Debug for sigaltstack
impl Debug for sigevent__bindgen_ty_1__bindgen_ty_1
impl Debug for stat
impl Debug for statfs64
impl Debug for statfs
impl Debug for statx
impl Debug for statx_timestamp
impl Debug for termio
impl Debug for termios2
impl Debug for termios
impl Debug for timespec
impl Debug for timeval
impl Debug for timezone
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_2
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_3
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_4
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_5
impl Debug for uffdio_api
impl Debug for uffdio_continue
impl Debug for uffdio_copy
impl Debug for uffdio_range
impl Debug for uffdio_register
impl Debug for uffdio_writeprotect
impl Debug for uffdio_zeropage
impl Debug for user_desc
impl Debug for vfs_cap_data
impl Debug for vfs_cap_data__bindgen_ty_1
impl Debug for vfs_ns_cap_data
impl Debug for vfs_ns_cap_data__bindgen_ty_1
impl Debug for winsize
impl Debug for log::ParseLevelError
impl Debug for SetLoggerError
impl Debug for Attribute
impl Debug for QualName
impl Debug for BufferQueue
impl Debug for SmallCharSet
impl Debug for matrix_sdk::account::Account
impl Debug for AttachmentConfig
impl Debug for BaseAudioInfo
impl Debug for BaseFileInfo
impl Debug for BaseImageInfo
impl Debug for BaseThumbnailInfo
impl Debug for BaseVideoInfo
impl Debug for Thumbnail
impl Debug for matrix_sdk::client::builder::ClientBuilder
impl Debug for matrix_sdk::client::Client
impl Debug for RequestConfig
impl Debug for SyncSettings
impl Debug for Backups
impl Debug for matrix_sdk::encryption::identities::devices::Device
impl Debug for matrix_sdk::encryption::identities::devices::DeviceUpdates
impl Debug for matrix_sdk::encryption::identities::devices::UserDevices
impl Debug for matrix_sdk::encryption::identities::users::IdentityUpdates
impl Debug for matrix_sdk::encryption::identities::users::UserIdentity
impl Debug for IdentityResetHandle
impl Debug for Recovery
impl Debug for SecretStore
impl Debug for SecretStorage
impl Debug for CrossProcessLockStoreGuardWithGeneration
impl Debug for CrossSigningResetHandle
impl Debug for Encryption
impl Debug for matrix_sdk::encryption::EncryptionSettings
impl Debug for OidcCrossSigningResetInfo
impl Debug for matrix_sdk::encryption::verification::requests::VerificationRequest
impl Debug for SasVerification
impl Debug for PaginationResult
impl Debug for StartFromResult
impl Debug for RoomEventCache
impl Debug for BackPaginationOutcome
impl Debug for EventCache
impl Debug for EventCacheDropHandles
impl Debug for RawEvent
impl Debug for EventHandlerDropGuard
impl Debug for EventHandlerHandle
impl Debug for TransmissionProgress
impl Debug for MatrixAuth
impl Debug for MatrixSession
impl Debug for Media
impl Debug for MediaFileHandle
impl Debug for matrix_sdk::media::PersistError
impl Debug for PreallocatedMxcUri
impl Debug for NotificationSettings
impl Debug for matrix_sdk::pusher::Pusher
impl Debug for IdentityStatusChanges
impl Debug for matrix_sdk::room::member::RoomMember
impl Debug for EventWithContextResponse
impl Debug for Messages
impl Debug for MessagesOptions
impl Debug for RoomPowerLevelChanges
impl Debug for Invite
impl Debug for matrix_sdk::room::Receipts
impl Debug for ReportedContentScore
impl Debug for matrix_sdk::room::Room
impl Debug for TryFromReportedContentScoreError
impl Debug for RoomDescription
impl Debug for RoomDirectorySearch
impl Debug for RoomPreview
impl Debug for LocalEcho
impl Debug for RoomSendQueue
impl Debug for SendHandle
impl Debug for SendQueue
impl Debug for SendQueueRoomError
impl Debug for SendReactionHandle
impl Debug for SlidingSyncBuilder
impl Debug for SlidingSyncListBuilder
impl Debug for SlidingSyncList
impl Debug for SlidingSyncSelectiveModeBuilder
impl Debug for SlidingSyncWindowedModeBuilder
impl Debug for matrix_sdk::sliding_sync::room::SlidingSyncRoom
impl Debug for SlidingSync
impl Debug for UpdateSummary
impl Debug for matrix_sdk::sync::SyncResponse
impl Debug for BaseClient
impl Debug for AmbiguityChange
impl Debug for AmbiguityChanges
impl Debug for MembersResponse
impl Debug for matrix_sdk_base::event_cache_store::memory_store::MemoryStore
impl Debug for LatestEvent
impl Debug for MediaRequest
impl Debug for MediaThumbnailSettings
impl Debug for MediaThumbnailSize
impl Debug for RoomReadReceipts
impl Debug for matrix_sdk_base::rooms::members::RoomMember
impl Debug for matrix_sdk_base::rooms::normal::Room
impl Debug for RoomHero
impl Debug for RoomInfo
impl Debug for RoomInfoNotableUpdate
impl Debug for RoomInfoNotableUpdateReasons
impl Debug for RoomStateFilter
impl Debug for RoomCreateWithCreatorEventContent
impl Debug for RoomMemberships
impl Debug for matrix_sdk_base::store::memory_store::MemoryStore
impl Debug for RoomInfoV1
impl Debug for ChildTransactionId
impl Debug for DependentQueuedRequest
impl Debug for QueuedRequest
impl Debug for SerializableEventContent
impl Debug for StateChanges
impl Debug for StoreConfig
impl Debug for ComposerDraft
impl Debug for ServerCapabilities
impl Debug for SessionMeta
impl Debug for JoinedRoomUpdate
impl Debug for LeftRoomUpdate
impl Debug for matrix_sdk_base::sync::Notification
impl Debug for RoomUpdates
impl Debug for matrix_sdk_base::sync::SyncResponse
impl Debug for matrix_sdk_base::sync::Timeline
impl Debug for matrix_sdk_base::sync::UnreadNotificationsCount
impl Debug for DecryptedRoomEvent
impl Debug for EncryptionInfo
impl Debug for SyncTimelineEvent
impl Debug for TimelineEvent
impl Debug for UnableToDecryptInfo
impl Debug for CrossProcessStoreLockGuard
impl Debug for ElapsedError
impl Debug for TracingTimer
impl Debug for MegolmV1BackupKey
impl Debug for BackupMachine
impl Debug for SignatureVerification
impl Debug for DehydratedDevice
impl Debug for DehydratedDevices
impl Debug for RehydratedDevice
impl Debug for MediaEncryptionInfo
impl Debug for GossipRequest
impl Debug for GossippedSecret
impl Debug for matrix_sdk_crypto::identities::device::Device
impl Debug for DeviceData
impl Debug for matrix_sdk_crypto::identities::device::UserDevices
impl Debug for IdentityStatusChange
impl Debug for OtherUserIdentity
impl Debug for OtherUserIdentityData
impl Debug for OwnUserIdentity
impl Debug for OwnUserIdentityData
impl Debug for CrossSigningBootstrapRequests
impl Debug for OlmMachine
impl Debug for matrix_sdk_crypto::olm::account::Account
impl Debug for OlmMessageHash
impl Debug for StaticAccountData
impl Debug for InboundGroupSession
impl Debug for matrix_sdk_crypto::olm::group_sessions::outbound::EncryptionSettings
impl Debug for OutboundGroupSession
impl Debug for KnownSenderData
impl Debug for matrix_sdk_crypto::olm::session::Session
impl Debug for CrossSigningStatus
impl Debug for PrivateCrossSigningIdentity
impl Debug for KeysBackupRequest
impl Debug for KeysQueryRequest
impl Debug for OutgoingRequest
impl Debug for RoomMessageRequest
impl Debug for ToDeviceRequest
impl Debug for UploadSigningKeysRequest
impl Debug for AesHmacSha2EncryptedData
impl Debug for SecretStorageKey
impl Debug for DeviceStore
impl Debug for GroupSessionStore
impl Debug for SequenceNumber
impl Debug for SessionStore
impl Debug for matrix_sdk_crypto::store::memorystore::MemoryStore
impl Debug for BackupDecryptionKey
impl Debug for BackupKeys
impl Debug for Changes
impl Debug for CrossSigningKeyExport
impl Debug for DeviceChanges
impl Debug for matrix_sdk_crypto::store::DeviceUpdates
impl Debug for IdentityChanges
impl Debug for matrix_sdk_crypto::store::IdentityUpdates
impl Debug for LockableCryptoStore
impl Debug for PendingChanges
impl Debug for RoomKeyCounts
impl Debug for RoomKeyInfo
impl Debug for RoomKeyWithheldInfo
impl Debug for RoomSettings
impl Debug for matrix_sdk_crypto::store::Store
impl Debug for TrackedUser
impl Debug for DecryptionSettings
impl Debug for RoomKeyImportResult
impl Debug for MegolmV1AuthData
impl Debug for matrix_sdk_crypto::types::cross_signing::common::CrossSigningKey
impl Debug for MasterPubkey
impl Debug for SelfSigningPubkey
impl Debug for UserSigningPubkey
impl Debug for matrix_sdk_crypto::types::device_keys::DeviceKeys
impl Debug for matrix_sdk_crypto::types::device_keys::UnsignedDeviceInfo
impl Debug for DummyEventContent
impl Debug for ForwardedMegolmV1AesSha2Content
impl Debug for ForwardedMegolmV2AesSha2Content
impl Debug for UnknownRoomKeyContent
impl Debug for matrix_sdk_crypto::types::events::olm_v1::OlmV1Keys
impl Debug for matrix_sdk_crypto::types::events::olm_v1::ToDeviceCustomEvent
impl Debug for matrix_sdk_crypto::types::events::room::encrypted::MegolmV1AesSha2Content
impl Debug for matrix_sdk_crypto::types::events::room::encrypted::OlmV1Curve25519AesSha2Content
impl Debug for matrix_sdk_crypto::types::events::room::encrypted::RoomEncryptedEventContent
impl Debug for UnknownEncryptedContent
impl Debug for matrix_sdk_crypto::types::events::room_key::MegolmV1AesSha2Content
impl Debug for UnknownRoomKey
impl Debug for matrix_sdk_crypto::types::events::room_key_request::MegolmV1AesSha2Content
impl Debug for RoomKeyRequestContent
impl Debug for UnknownRoomKeyRequest
impl Debug for CommonWithheldCodeContent
impl Debug for NoOlmWithheldContent
impl Debug for UnknownRoomKeyWithHeld
impl Debug for SecretSendContent
impl Debug for matrix_sdk_crypto::types::events::to_device::ToDeviceCustomEvent
impl Debug for matrix_sdk_crypto::types::one_time_keys::SignedKey
impl Debug for QrCodeData
impl Debug for CrossSigningSecrets
impl Debug for matrix_sdk_crypto::types::InvalidSignature
impl Debug for MegolmBackupV1Curve25519AesSha2Secrets
impl Debug for SecretsBundle
impl Debug for matrix_sdk_crypto::types::Signatures
impl Debug for matrix_sdk_crypto::verification::requests::VerificationRequest
impl Debug for AcceptedProtocols
impl Debug for AcceptSettings
impl Debug for EmojiShortAuthString
impl Debug for Sas
impl Debug for CancelInfo
impl Debug for Emoji
impl Debug for SqliteCryptoStore
impl Debug for SqliteEventCacheStore
impl Debug for SqliteStateStore
impl Debug for EncryptedValue
impl Debug for EncryptedValueBase64
impl Debug for memchr::arch::all::memchr::One
impl Debug for memchr::arch::all::memchr::Three
impl Debug for memchr::arch::all::memchr::Two
impl Debug for memchr::arch::all::packedpair::Finder
impl Debug for Pair
impl Debug for memchr::arch::all::rabinkarp::Finder
impl Debug for memchr::arch::all::rabinkarp::FinderRev
impl Debug for memchr::arch::all::shiftor::Finder
impl Debug for memchr::arch::all::twoway::Finder
impl Debug for memchr::arch::all::twoway::FinderRev
impl Debug for memchr::arch::x86_64::avx2::memchr::One
impl Debug for memchr::arch::x86_64::avx2::memchr::Three
impl Debug for memchr::arch::x86_64::avx2::memchr::Two
impl Debug for memchr::arch::x86_64::avx2::packedpair::Finder
impl Debug for memchr::arch::x86_64::sse2::memchr::One
impl Debug for memchr::arch::x86_64::sse2::memchr::Three
impl Debug for memchr::arch::x86_64::sse2::memchr::Two
impl Debug for memchr::arch::x86_64::sse2::packedpair::Finder
impl Debug for FinderBuilder
impl Debug for FromStrError
impl Debug for Mime
impl Debug for mime_guess::Iter
impl Debug for IterRaw
impl Debug for MimeGuess
impl Debug for minijinja::error::Error
impl Debug for SyntaxConfig
impl Debug for Kwargs
impl Debug for DynObject
impl Debug for minijinja::value::ValueIter
impl Debug for miniz_oxide::inflate::DecompressError
impl Debug for StreamResult
impl Debug for mio::event::event::Event
When the alternate flag is enabled this will print platform specific
details, for example the fields of the kevent
structure on platforms that
use kqueue(2)
. Note however that the output of this implementation is
not consider a part of the stable API.
impl Debug for Events
impl Debug for mio::interest::Interest
impl Debug for mio::net::tcp::listener::TcpListener
impl Debug for mio::net::tcp::stream::TcpStream
impl Debug for mio::net::udp::UdpSocket
impl Debug for mio::net::uds::datagram::UnixDatagram
impl Debug for mio::net::uds::listener::UnixListener
impl Debug for mio::net::uds::stream::UnixStream
impl Debug for mio::poll::Poll
impl Debug for Registry
impl Debug for mio::sys::unix::pipe::Receiver
impl Debug for mio::sys::unix::pipe::Sender
impl Debug for mio::token::Token
impl Debug for mio::waker::Waker
impl Debug for num_traits::ParseFloatError
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for Parker
impl Debug for Unparker
impl Debug for parking_lot::condvar::Condvar
impl Debug for parking_lot::condvar::WaitTimeoutResult
impl Debug for parking_lot::once::Once
impl Debug for ParkToken
impl Debug for UnparkResult
impl Debug for UnparkToken
impl Debug for Poly1305
impl Debug for FormatterOptions
impl Debug for prost::error::DecodeError
impl Debug for prost::error::EncodeError
impl Debug for UnknownEnumValue
impl Debug for DefaultBrokenLinkCallback
impl Debug for InlineStr
impl Debug for InvalidHeadingLevel
impl Debug for Options
impl Debug for Bernoulli
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for Alphanumeric
impl Debug for Standard
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for ReadError
impl Debug for StepRng
impl Debug for StdRng
impl Debug for ThreadRng
impl Debug for ChaCha8Core
impl Debug for ChaCha8Rng
impl Debug for ChaCha12Core
impl Debug for ChaCha12Rng
impl Debug for ChaCha20Core
impl Debug for ChaCha20Rng
impl Debug for rand_core::error::Error
impl Debug for OsRng
impl Debug for Seed512
impl Debug for SplitMix64
impl Debug for Xoroshiro64Star
impl Debug for Xoroshiro64StarStar
impl Debug for Xoroshiro128Plus
impl Debug for Xoroshiro128PlusPlus
impl Debug for Xoroshiro128StarStar
impl Debug for Xoshiro128Plus
impl Debug for Xoshiro128PlusPlus
impl Debug for Xoshiro128StarStar
impl Debug for Xoshiro256Plus
impl Debug for Xoshiro256PlusPlus
impl Debug for Xoshiro256StarStar
impl Debug for Xoshiro512Plus
impl Debug for Xoshiro512PlusPlus
impl Debug for Xoshiro512StarStar
impl Debug for regex::builders::bytes::RegexBuilder
impl Debug for regex::builders::bytes::RegexSetBuilder
impl Debug for regex::builders::string::RegexBuilder
impl Debug for regex::builders::string::RegexSetBuilder
impl Debug for regex::regex::bytes::CaptureLocations
impl Debug for regex::regex::bytes::Regex
impl Debug for regex::regex::string::CaptureLocations
impl Debug for regex::regex::string::Regex
impl Debug for regex::regexset::bytes::RegexSet
impl Debug for regex::regexset::bytes::SetMatches
impl Debug for regex::regexset::bytes::SetMatchesIntoIter
impl Debug for regex::regexset::string::RegexSet
impl Debug for regex::regexset::string::SetMatches
impl Debug for regex::regexset::string::SetMatchesIntoIter
impl Debug for regex_automata::dfa::onepass::BuildError
impl Debug for regex_automata::dfa::onepass::Builder
impl Debug for regex_automata::dfa::onepass::Cache
impl Debug for regex_automata::dfa::onepass::Config
impl Debug for regex_automata::dfa::onepass::DFA
impl Debug for regex_automata::hybrid::dfa::Builder
impl Debug for regex_automata::hybrid::dfa::Cache
impl Debug for regex_automata::hybrid::dfa::Config
impl Debug for regex_automata::hybrid::dfa::DFA
impl Debug for regex_automata::hybrid::dfa::OverlappingState
impl Debug for regex_automata::hybrid::error::BuildError
impl Debug for CacheError
impl Debug for LazyStateID
impl Debug for regex_automata::hybrid::regex::Builder
impl Debug for regex_automata::hybrid::regex::Cache
impl Debug for regex_automata::hybrid::regex::Regex
impl Debug for regex_automata::meta::error::BuildError
impl Debug for regex_automata::meta::regex::Builder
impl Debug for regex_automata::meta::regex::Cache
impl Debug for regex_automata::meta::regex::Config
impl Debug for regex_automata::meta::regex::Regex
impl Debug for BoundedBacktracker
impl Debug for regex_automata::nfa::thompson::backtrack::Builder
impl Debug for regex_automata::nfa::thompson::backtrack::Cache
impl Debug for regex_automata::nfa::thompson::backtrack::Config
impl Debug for regex_automata::nfa::thompson::builder::Builder
impl Debug for Compiler
impl Debug for regex_automata::nfa::thompson::compiler::Config
impl Debug for regex_automata::nfa::thompson::error::BuildError
impl Debug for DenseTransitions
impl Debug for regex_automata::nfa::thompson::nfa::NFA
impl Debug for SparseTransitions
impl Debug for Transition
impl Debug for regex_automata::nfa::thompson::pikevm::Builder
impl Debug for regex_automata::nfa::thompson::pikevm::Cache
impl Debug for regex_automata::nfa::thompson::pikevm::Config
impl Debug for PikeVM
impl Debug for ByteClasses
impl Debug for Unit
impl Debug for regex_automata::util::captures::Captures
impl Debug for GroupInfo
impl Debug for GroupInfoError
impl Debug for DebugByte
impl Debug for LookMatcher
impl Debug for regex_automata::util::look::LookSet
impl Debug for regex_automata::util::look::LookSetIter
impl Debug for UnicodeWordBoundaryError
impl Debug for regex_automata::util::prefilter::Prefilter
impl Debug for NonMaxUsize
impl Debug for regex_automata::util::primitives::PatternID
impl Debug for regex_automata::util::primitives::PatternIDError
impl Debug for SmallIndex
impl Debug for SmallIndexError
impl Debug for regex_automata::util::primitives::StateID
impl Debug for regex_automata::util::primitives::StateIDError
impl Debug for HalfMatch
impl Debug for regex_automata::util::search::Match
impl Debug for regex_automata::util::search::MatchError
impl Debug for PatternSet
impl Debug for PatternSetInsertError
impl Debug for regex_automata::util::search::Span
impl Debug for regex_automata::util::start::Config
impl Debug for regex_automata::util::syntax::Config
impl Debug for DeserializeError
impl Debug for SerializeError
impl Debug for regex_syntax::ast::parse::Parser
impl Debug for regex_syntax::ast::parse::ParserBuilder
impl Debug for regex_syntax::ast::print::Printer
impl Debug for Alternation
impl Debug for Assertion
impl Debug for CaptureName
impl Debug for ClassAscii
impl Debug for ClassBracketed
impl Debug for ClassPerl
impl Debug for ClassSetBinaryOp
impl Debug for ClassSetRange
impl Debug for ClassSetUnion
impl Debug for regex_syntax::ast::ClassUnicode
impl Debug for regex_syntax::ast::Comment
impl Debug for regex_syntax::ast::Concat
impl Debug for regex_syntax::ast::Error
impl Debug for Flags
impl Debug for FlagsItem
impl Debug for Group
impl Debug for regex_syntax::ast::Literal
impl Debug for regex_syntax::ast::Position
impl Debug for regex_syntax::ast::Repetition
impl Debug for RepetitionOp
impl Debug for SetFlags
impl Debug for regex_syntax::ast::Span
impl Debug for WithComments
impl Debug for Extractor
impl Debug for regex_syntax::hir::literal::Literal
impl Debug for Seq
impl Debug for regex_syntax::hir::print::Printer
impl Debug for Capture
impl Debug for ClassBytes
impl Debug for ClassBytesRange
impl Debug for regex_syntax::hir::ClassUnicode
impl Debug for ClassUnicodeRange
impl Debug for regex_syntax::hir::Error
impl Debug for Hir
impl Debug for regex_syntax::hir::Literal
impl Debug for regex_syntax::hir::LookSet
impl Debug for regex_syntax::hir::LookSetIter
impl Debug for Properties
impl Debug for regex_syntax::hir::Repetition
impl Debug for Translator
impl Debug for TranslatorBuilder
impl Debug for regex_syntax::parser::Parser
impl Debug for regex_syntax::parser::ParserBuilder
impl Debug for CaseFoldError
impl Debug for UnicodeWordError
impl Debug for Utf8Range
impl Debug for Utf8Sequences
impl Debug for Body
impl Debug for reqwest::async_impl::client::Client
impl Debug for reqwest::async_impl::client::ClientBuilder
impl Debug for reqwest::async_impl::request::Request
impl Debug for RequestBuilder
impl Debug for reqwest::async_impl::response::Response
impl Debug for reqwest::async_impl::upgrade::Upgraded
impl Debug for reqwest::dns::resolve::Name
impl Debug for reqwest::error::Error
impl Debug for NoProxy
impl Debug for Proxy
impl Debug for reqwest::redirect::Action
impl Debug for Policy
impl Debug for Certificate
impl Debug for Identity
impl Debug for TlsInfo
impl Debug for reqwest::tls::Version
impl Debug for LessSafeKey
impl Debug for ring::aead::quic::Algorithm
impl Debug for ring::aead::Algorithm
impl Debug for UnboundKey
impl Debug for ring::agreement::Algorithm
impl Debug for EphemeralPrivateKey
impl Debug for ring::agreement::PublicKey
impl Debug for ring::digest::Algorithm
impl Debug for Digest
impl Debug for Ed25519KeyPair
impl Debug for EdDSAParameters
impl Debug for EcdsaKeyPair
impl Debug for EcdsaSigningAlgorithm
impl Debug for EcdsaVerificationAlgorithm
impl Debug for KeyRejected
impl Debug for Unspecified
impl Debug for ring::hkdf::Algorithm
impl Debug for Prk
impl Debug for Salt
impl Debug for ring::hmac::Algorithm
impl Debug for ring::hmac::Context
impl Debug for ring::hmac::Key
impl Debug for ring::hmac::Tag
impl Debug for SystemRandom
impl Debug for KeyPair
impl Debug for ring::rsa::public_key::PublicKey
impl Debug for RsaParameters
impl Debug for TestCase
impl Debug for ExtMeta
impl Debug for rmp::encode::buffer::ByteBuf
impl Debug for DefaultConfig
impl Debug for ruma_client_api::account::add_3pid::v3::Request
impl Debug for ruma_client_api::account::add_3pid::v3::Response
impl Debug for ruma_client_api::account::bind_3pid::v3::Request
impl Debug for ruma_client_api::account::bind_3pid::v3::Response
impl Debug for ruma_client_api::account::change_password::v3::Request
impl Debug for ruma_client_api::account::change_password::v3::Response
impl Debug for ruma_client_api::account::check_registration_token_validity::v1::Request
impl Debug for ruma_client_api::account::check_registration_token_validity::v1::Response
impl Debug for ruma_client_api::account::deactivate::v3::Request
impl Debug for ruma_client_api::account::deactivate::v3::Response
impl Debug for ruma_client_api::account::delete_3pid::v3::Request
impl Debug for ruma_client_api::account::delete_3pid::v3::Response
impl Debug for ruma_client_api::account::get_3pids::v3::Request
impl Debug for ruma_client_api::account::get_3pids::v3::Response
impl Debug for ruma_client_api::account::get_username_availability::v3::Request
impl Debug for ruma_client_api::account::get_username_availability::v3::Response
impl Debug for ruma_client_api::account::register::v3::Request
impl Debug for ruma_client_api::account::register::v3::Response
impl Debug for ruma_client_api::account::request_3pid_management_token_via_email::v3::Request
impl Debug for ruma_client_api::account::request_3pid_management_token_via_email::v3::Response
impl Debug for ruma_client_api::account::request_3pid_management_token_via_msisdn::v3::Request
impl Debug for ruma_client_api::account::request_3pid_management_token_via_msisdn::v3::Response
impl Debug for ruma_client_api::account::request_openid_token::v3::Request
impl Debug for ruma_client_api::account::request_openid_token::v3::Response
impl Debug for ruma_client_api::account::request_password_change_token_via_email::v3::Request
impl Debug for ruma_client_api::account::request_password_change_token_via_email::v3::Response
impl Debug for ruma_client_api::account::request_password_change_token_via_msisdn::v3::Request
impl Debug for ruma_client_api::account::request_password_change_token_via_msisdn::v3::Response
impl Debug for ruma_client_api::account::request_registration_token_via_email::v3::Request
impl Debug for ruma_client_api::account::request_registration_token_via_email::v3::Response
impl Debug for ruma_client_api::account::request_registration_token_via_msisdn::v3::Request
impl Debug for ruma_client_api::account::request_registration_token_via_msisdn::v3::Response
impl Debug for ruma_client_api::account::IdentityServerInfo
impl Debug for ruma_client_api::account::unbind_3pid::v3::Request
impl Debug for ruma_client_api::account::unbind_3pid::v3::Response
impl Debug for ruma_client_api::account::whoami::v3::Request
impl Debug for ruma_client_api::account::whoami::v3::Response
impl Debug for ruma_client_api::alias::create_alias::v3::Request
impl Debug for ruma_client_api::alias::create_alias::v3::Response
impl Debug for ruma_client_api::alias::delete_alias::v3::Request
impl Debug for ruma_client_api::alias::delete_alias::v3::Response
impl Debug for ruma_client_api::alias::get_alias::v3::Request
impl Debug for ruma_client_api::alias::get_alias::v3::Response
impl Debug for ruma_client_api::appservice::request_ping::v1::Request
impl Debug for ruma_client_api::appservice::request_ping::v1::Response
impl Debug for ruma_client_api::appservice::set_room_visibility::v3::Request
impl Debug for ruma_client_api::appservice::set_room_visibility::v3::Response
impl Debug for ruma_client_api::authenticated_media::get_content::v1::Request
impl Debug for ruma_client_api::authenticated_media::get_content::v1::Response
impl Debug for ruma_client_api::authenticated_media::get_content_as_filename::v1::Request
impl Debug for ruma_client_api::authenticated_media::get_content_as_filename::v1::Response
impl Debug for ruma_client_api::authenticated_media::get_content_thumbnail::v1::Request
impl Debug for ruma_client_api::authenticated_media::get_content_thumbnail::v1::Response
impl Debug for ruma_client_api::authenticated_media::get_media_config::v1::Request
impl Debug for ruma_client_api::authenticated_media::get_media_config::v1::Response
impl Debug for ruma_client_api::authenticated_media::get_media_preview::v1::Request
impl Debug for ruma_client_api::authenticated_media::get_media_preview::v1::Response
impl Debug for ruma_client_api::backup::add_backup_keys::v3::Request
impl Debug for ruma_client_api::backup::add_backup_keys::v3::Response
impl Debug for ruma_client_api::backup::add_backup_keys_for_room::v3::Request
impl Debug for ruma_client_api::backup::add_backup_keys_for_room::v3::Response
impl Debug for ruma_client_api::backup::add_backup_keys_for_session::v3::Request
impl Debug for ruma_client_api::backup::add_backup_keys_for_session::v3::Response
impl Debug for ruma_client_api::backup::create_backup_version::v3::Request
impl Debug for ruma_client_api::backup::create_backup_version::v3::Response
impl Debug for ruma_client_api::backup::delete_backup_keys::v3::Request
impl Debug for ruma_client_api::backup::delete_backup_keys::v3::Response
impl Debug for ruma_client_api::backup::delete_backup_keys_for_room::v3::Request
impl Debug for ruma_client_api::backup::delete_backup_keys_for_room::v3::Response
impl Debug for ruma_client_api::backup::delete_backup_keys_for_session::v3::Request
impl Debug for ruma_client_api::backup::delete_backup_keys_for_session::v3::Response
impl Debug for ruma_client_api::backup::delete_backup_version::v3::Request
impl Debug for ruma_client_api::backup::delete_backup_version::v3::Response
impl Debug for ruma_client_api::backup::get_backup_info::v3::Request
impl Debug for ruma_client_api::backup::get_backup_info::v3::Response
impl Debug for ruma_client_api::backup::get_backup_keys::v3::Request
impl Debug for ruma_client_api::backup::get_backup_keys::v3::Response
impl Debug for ruma_client_api::backup::get_backup_keys_for_room::v3::Request
impl Debug for ruma_client_api::backup::get_backup_keys_for_room::v3::Response
impl Debug for ruma_client_api::backup::get_backup_keys_for_session::v3::Request
impl Debug for ruma_client_api::backup::get_backup_keys_for_session::v3::Response
impl Debug for ruma_client_api::backup::get_latest_backup_info::v3::Request
impl Debug for ruma_client_api::backup::get_latest_backup_info::v3::Response
impl Debug for EncryptedSessionData
impl Debug for EncryptedSessionDataInit
impl Debug for KeyBackupData
impl Debug for KeyBackupDataInit
impl Debug for RoomKeyBackup
impl Debug for ruma_client_api::backup::update_backup_version::v3::Request
impl Debug for ruma_client_api::backup::update_backup_version::v3::Response
impl Debug for ruma_client_api::config::get_global_account_data::v3::Request
impl Debug for ruma_client_api::config::get_global_account_data::v3::Response
impl Debug for ruma_client_api::config::get_room_account_data::v3::Request
impl Debug for ruma_client_api::config::get_room_account_data::v3::Response
impl Debug for ruma_client_api::config::set_global_account_data::v3::Request
impl Debug for ruma_client_api::config::set_global_account_data::v3::Response
impl Debug for ruma_client_api::config::set_room_account_data::v3::Request
impl Debug for ruma_client_api::config::set_room_account_data::v3::Response
impl Debug for ruma_client_api::context::get_context::v3::Request
impl Debug for ruma_client_api::context::get_context::v3::Response
impl Debug for ruma_client_api::dehydrated_device::delete_dehydrated_device::unstable::Request
impl Debug for ruma_client_api::dehydrated_device::delete_dehydrated_device::unstable::Response
impl Debug for ruma_client_api::dehydrated_device::get_dehydrated_device::unstable::Request
impl Debug for ruma_client_api::dehydrated_device::get_dehydrated_device::unstable::Response
impl Debug for ruma_client_api::dehydrated_device::get_events::unstable::Request
impl Debug for ruma_client_api::dehydrated_device::get_events::unstable::Response
impl Debug for ruma_client_api::dehydrated_device::put_dehydrated_device::unstable::Request
impl Debug for ruma_client_api::dehydrated_device::put_dehydrated_device::unstable::Response
impl Debug for DehydratedDeviceV1
impl Debug for ruma_client_api::delayed_events::delayed_message_event::unstable::Request
impl Debug for ruma_client_api::delayed_events::delayed_message_event::unstable::Response
impl Debug for ruma_client_api::delayed_events::delayed_state_event::unstable::Request
impl Debug for ruma_client_api::delayed_events::delayed_state_event::unstable::Response
impl Debug for ruma_client_api::delayed_events::update_delayed_event::unstable::Request
impl Debug for ruma_client_api::delayed_events::update_delayed_event::unstable::Response
impl Debug for ruma_client_api::device::delete_device::v3::Request
impl Debug for ruma_client_api::device::delete_device::v3::Response
impl Debug for ruma_client_api::device::delete_devices::v3::Request
impl Debug for ruma_client_api::device::delete_devices::v3::Response
impl Debug for ruma_client_api::device::get_device::v3::Request
impl Debug for ruma_client_api::device::get_device::v3::Response
impl Debug for ruma_client_api::device::get_devices::v3::Request
impl Debug for ruma_client_api::device::get_devices::v3::Response
impl Debug for ruma_client_api::device::Device
impl Debug for ruma_client_api::device::update_device::v3::Request
impl Debug for ruma_client_api::device::update_device::v3::Response
impl Debug for ruma_client_api::directory::get_public_rooms::v3::Request
impl Debug for ruma_client_api::directory::get_public_rooms::v3::Response
impl Debug for ruma_client_api::directory::get_public_rooms_filtered::v3::Request
impl Debug for ruma_client_api::directory::get_public_rooms_filtered::v3::Response
impl Debug for ruma_client_api::directory::get_room_visibility::v3::Request
impl Debug for ruma_client_api::directory::get_room_visibility::v3::Response
impl Debug for ruma_client_api::directory::set_room_visibility::v3::Request
impl Debug for ruma_client_api::directory::set_room_visibility::v3::Response
impl Debug for AuthenticationServerInfo
impl Debug for ruma_client_api::discovery::discover_homeserver::HomeserverInfo
impl Debug for ruma_client_api::discovery::discover_homeserver::IdentityServerInfo
impl Debug for ruma_client_api::discovery::discover_homeserver::Request
impl Debug for ruma_client_api::discovery::discover_homeserver::Response
impl Debug for SlidingSyncProxyInfo
impl Debug for TileServerInfo
impl Debug for Contact
impl Debug for ruma_client_api::discovery::discover_support::Request
impl Debug for ruma_client_api::discovery::discover_support::Response
impl Debug for ruma_client_api::discovery::get_authentication_issuer::msc2965::Request
impl Debug for ruma_client_api::discovery::get_authentication_issuer::msc2965::Response
impl Debug for Capabilities
impl Debug for ChangePasswordCapability
impl Debug for GetLoginTokenCapability
impl Debug for RoomVersionsCapability
impl Debug for SetAvatarUrlCapability
impl Debug for SetDisplayNameCapability
impl Debug for ThirdPartyIdChangesCapability
impl Debug for ruma_client_api::discovery::get_capabilities::v3::Request
impl Debug for ruma_client_api::discovery::get_capabilities::v3::Response
impl Debug for ruma_client_api::discovery::get_supported_versions::Request
impl Debug for ruma_client_api::discovery::get_supported_versions::Response
impl Debug for ruma_client_api::error::Error
impl Debug for StandardErrorBody
impl Debug for ruma_client_api::filter::create_filter::v3::Request
impl Debug for ruma_client_api::filter::create_filter::v3::Response
impl Debug for ruma_client_api::filter::get_filter::v3::Request
impl Debug for ruma_client_api::filter::get_filter::v3::Response
impl Debug for ruma_client_api::filter::Filter
impl Debug for FilterDefinition
impl Debug for RoomEventFilter
impl Debug for RoomFilter
impl Debug for ruma_client_api::keys::claim_keys::v3::Request
impl Debug for ruma_client_api::keys::claim_keys::v3::Response
impl Debug for ruma_client_api::keys::get_key_changes::v3::Request
impl Debug for ruma_client_api::keys::get_key_changes::v3::Response
impl Debug for ruma_client_api::keys::get_keys::v3::Request
impl Debug for ruma_client_api::keys::get_keys::v3::Response
impl Debug for ruma_client_api::keys::upload_keys::v3::Request
impl Debug for ruma_client_api::keys::upload_keys::v3::Response
impl Debug for Failure
impl Debug for ruma_client_api::keys::upload_signatures::v3::Request
impl Debug for ruma_client_api::keys::upload_signatures::v3::Response
impl Debug for SignedKeys
impl Debug for ruma_client_api::keys::upload_signing_keys::v3::Request
impl Debug for ruma_client_api::keys::upload_signing_keys::v3::Response
impl Debug for ruma_client_api::knock::knock_room::v3::Request
impl Debug for ruma_client_api::knock::knock_room::v3::Response
impl Debug for ruma_client_api::media::create_content::v3::Request
impl Debug for ruma_client_api::media::create_content::v3::Response
impl Debug for ruma_client_api::media::create_content_async::v3::Request
impl Debug for ruma_client_api::media::create_content_async::v3::Response
impl Debug for ruma_client_api::media::create_mxc_uri::v1::Request
impl Debug for ruma_client_api::media::create_mxc_uri::v1::Response
impl Debug for ruma_client_api::media::get_content::v3::Request
impl Debug for ruma_client_api::media::get_content::v3::Response
impl Debug for ruma_client_api::media::get_content_as_filename::v3::Request
impl Debug for ruma_client_api::media::get_content_as_filename::v3::Response
impl Debug for ruma_client_api::media::get_content_thumbnail::v3::Request
impl Debug for ruma_client_api::media::get_content_thumbnail::v3::Response
impl Debug for ruma_client_api::media::get_media_config::v3::Request
impl Debug for ruma_client_api::media::get_media_config::v3::Response
impl Debug for ruma_client_api::media::get_media_preview::v3::Request
impl Debug for ruma_client_api::media::get_media_preview::v3::Response
impl Debug for ruma_client_api::membership::ban_user::v3::Request
impl Debug for ruma_client_api::membership::ban_user::v3::Response
impl Debug for ruma_client_api::membership::forget_room::v3::Request
impl Debug for ruma_client_api::membership::forget_room::v3::Response
impl Debug for ruma_client_api::membership::get_member_events::v3::Request
impl Debug for ruma_client_api::membership::get_member_events::v3::Response
impl Debug for ruma_client_api::membership::invite_user::v3::Request
impl Debug for ruma_client_api::membership::invite_user::v3::Response
impl Debug for ruma_client_api::membership::join_room_by_id::v3::Request
impl Debug for ruma_client_api::membership::join_room_by_id::v3::Response
impl Debug for ruma_client_api::membership::join_room_by_id_or_alias::v3::Request
impl Debug for ruma_client_api::membership::join_room_by_id_or_alias::v3::Response
impl Debug for ruma_client_api::membership::joined_members::v3::Request
impl Debug for ruma_client_api::membership::joined_members::v3::Response
impl Debug for ruma_client_api::membership::joined_members::v3::RoomMember
impl Debug for ruma_client_api::membership::joined_rooms::v3::Request
impl Debug for ruma_client_api::membership::joined_rooms::v3::Response
impl Debug for ruma_client_api::membership::kick_user::v3::Request
impl Debug for ruma_client_api::membership::kick_user::v3::Response
impl Debug for ruma_client_api::membership::leave_room::v3::Request
impl Debug for ruma_client_api::membership::leave_room::v3::Response
impl Debug for Invite3pid
impl Debug for Invite3pidInit
impl Debug for ThirdPartySigned
impl Debug for ruma_client_api::membership::unban_user::v3::Request
impl Debug for ruma_client_api::membership::unban_user::v3::Response
impl Debug for ruma_client_api::message::get_message_events::v3::Request
impl Debug for ruma_client_api::message::get_message_events::v3::Response
impl Debug for ruma_client_api::message::send_message_event::v3::Request
impl Debug for ruma_client_api::message::send_message_event::v3::Response
impl Debug for ruma_client_api::presence::get_presence::v3::Request
impl Debug for ruma_client_api::presence::get_presence::v3::Response
impl Debug for ruma_client_api::presence::set_presence::v3::Request
impl Debug for ruma_client_api::presence::set_presence::v3::Response
impl Debug for ruma_client_api::profile::get_avatar_url::v3::Request
impl Debug for ruma_client_api::profile::get_avatar_url::v3::Response
impl Debug for ruma_client_api::profile::get_display_name::v3::Request
impl Debug for ruma_client_api::profile::get_display_name::v3::Response
impl Debug for ruma_client_api::profile::get_profile::v3::Request
impl Debug for ruma_client_api::profile::get_profile::v3::Response
impl Debug for ruma_client_api::profile::set_avatar_url::v3::Request
impl Debug for ruma_client_api::profile::set_avatar_url::v3::Response
impl Debug for ruma_client_api::profile::set_display_name::v3::Request
impl Debug for ruma_client_api::profile::set_display_name::v3::Response
impl Debug for ruma_client_api::push::delete_pushrule::v3::Request
impl Debug for ruma_client_api::push::delete_pushrule::v3::Response
impl Debug for ruma_client_api::push::get_notifications::v3::Notification
impl Debug for ruma_client_api::push::get_notifications::v3::Request
impl Debug for ruma_client_api::push::get_notifications::v3::Response
impl Debug for ruma_client_api::push::get_pushers::v3::Request
impl Debug for ruma_client_api::push::get_pushers::v3::Response
impl Debug for ruma_client_api::push::get_pushrule::v3::Request
impl Debug for ruma_client_api::push::get_pushrule::v3::Response
impl Debug for ruma_client_api::push::get_pushrule_actions::v3::Request
impl Debug for ruma_client_api::push::get_pushrule_actions::v3::Response
impl Debug for ruma_client_api::push::get_pushrule_enabled::v3::Request
impl Debug for ruma_client_api::push::get_pushrule_enabled::v3::Response
impl Debug for ruma_client_api::push::get_pushrules_all::v3::Request
impl Debug for ruma_client_api::push::get_pushrules_all::v3::Response
impl Debug for ruma_client_api::push::get_pushrules_global_scope::v3::Request
impl Debug for ruma_client_api::push::get_pushrules_global_scope::v3::Response
impl Debug for PusherPostData
impl Debug for ruma_client_api::push::set_pusher::v3::Request
impl Debug for ruma_client_api::push::set_pusher::v3::Response
impl Debug for ruma_client_api::push::set_pushrule::v3::Request
impl Debug for ruma_client_api::push::set_pushrule::v3::Response
impl Debug for ruma_client_api::push::set_pushrule_actions::v3::Request
impl Debug for ruma_client_api::push::set_pushrule_actions::v3::Response
impl Debug for ruma_client_api::push::set_pushrule_enabled::v3::Request
impl Debug for ruma_client_api::push::set_pushrule_enabled::v3::Response
impl Debug for EmailPusherData
impl Debug for MissingPatternError
impl Debug for PushRule
impl Debug for ruma_client_api::push::Pusher
impl Debug for PusherIds
impl Debug for PusherInit
impl Debug for ruma_client_api::read_marker::set_read_marker::v3::Request
impl Debug for ruma_client_api::read_marker::set_read_marker::v3::Response
impl Debug for ruma_client_api::receipt::create_receipt::v3::Request
impl Debug for ruma_client_api::receipt::create_receipt::v3::Response
impl Debug for ruma_client_api::redact::redact_event::v3::Request
impl Debug for ruma_client_api::redact::redact_event::v3::Response
impl Debug for ruma_client_api::relations::get_relating_events::v1::Request
impl Debug for ruma_client_api::relations::get_relating_events::v1::Response
impl Debug for ruma_client_api::relations::get_relating_events_with_rel_type::v1::Request
impl Debug for ruma_client_api::relations::get_relating_events_with_rel_type::v1::Response
impl Debug for ruma_client_api::relations::get_relating_events_with_rel_type_and_event_type::v1::Request
impl Debug for ruma_client_api::relations::get_relating_events_with_rel_type_and_event_type::v1::Response
impl Debug for ruma_client_api::room::aliases::v3::Request
impl Debug for ruma_client_api::room::aliases::v3::Response
impl Debug for CreationContent
impl Debug for ruma_client_api::room::create_room::v3::Request
impl Debug for ruma_client_api::room::create_room::v3::Response
impl Debug for ruma_client_api::room::get_event_by_timestamp::v1::Request
impl Debug for ruma_client_api::room::get_event_by_timestamp::v1::Response
impl Debug for ruma_client_api::room::get_room_event::v3::Request
impl Debug for ruma_client_api::room::get_room_event::v3::Response
impl Debug for ruma_client_api::room::get_summary::msc3266::Request
impl Debug for ruma_client_api::room::get_summary::msc3266::Response
impl Debug for ruma_client_api::room::report_content::v3::Request
impl Debug for ruma_client_api::room::report_content::v3::Response
impl Debug for ruma_client_api::room::upgrade_room::v3::Request
impl Debug for ruma_client_api::room::upgrade_room::v3::Response
impl Debug for Categories
impl Debug for Criteria
impl Debug for EventContext
impl Debug for EventContextResult
impl Debug for Grouping
impl Debug for Groupings
impl Debug for ruma_client_api::search::search_events::v3::Request
impl Debug for ruma_client_api::search::search_events::v3::Response
impl Debug for ResultCategories
impl Debug for ResultGroup
impl Debug for ResultRoomEvents
impl Debug for SearchResult
impl Debug for UserProfile
impl Debug for ConnectionInfo
impl Debug for DeviceInfo
impl Debug for ruma_client_api::server::get_user_info::v3::Request
impl Debug for ruma_client_api::server::get_user_info::v3::Response
impl Debug for SessionInfo
impl Debug for ruma_client_api::session::get_login_token::v1::Request
impl Debug for ruma_client_api::session::get_login_token::v1::Response
impl Debug for ApplicationServiceLoginType
impl Debug for IdentityProvider
impl Debug for PasswordLoginType
impl Debug for ruma_client_api::session::get_login_types::v3::Request
impl Debug for ruma_client_api::session::get_login_types::v3::Response
impl Debug for SsoLoginType
impl Debug for TokenLoginType
impl Debug for ApplicationService
impl Debug for DiscoveryInfo
impl Debug for ruma_client_api::session::login::v3::HomeserverInfo
impl Debug for ruma_client_api::session::login::v3::IdentityServerInfo
impl Debug for ruma_client_api::session::login::v3::Password
impl Debug for ruma_client_api::session::login::v3::Request
impl Debug for ruma_client_api::session::login::v3::Response
impl Debug for ruma_client_api::session::login::v3::Token
impl Debug for ruma_client_api::session::login_fallback::Request
impl Debug for ruma_client_api::session::login_fallback::Response
impl Debug for ruma_client_api::session::logout::v3::Request
impl Debug for ruma_client_api::session::logout::v3::Response
impl Debug for ruma_client_api::session::logout_all::v3::Request
impl Debug for ruma_client_api::session::logout_all::v3::Response
impl Debug for ruma_client_api::session::refresh_token::v3::Request
impl Debug for ruma_client_api::session::refresh_token::v3::Response
impl Debug for ruma_client_api::session::sso_login::v3::Request
impl Debug for ruma_client_api::session::sso_login::v3::Response
impl Debug for ruma_client_api::session::sso_login_with_provider::v3::Request
impl Debug for ruma_client_api::session::sso_login_with_provider::v3::Response
impl Debug for ruma_client_api::space::get_hierarchy::v1::Request
impl Debug for ruma_client_api::space::get_hierarchy::v1::Response
impl Debug for SpaceHierarchyRoomsChunk
impl Debug for SpaceHierarchyRoomsChunkInit
impl Debug for ruma_client_api::state::get_state_events::v3::Request
impl Debug for ruma_client_api::state::get_state_events::v3::Response
impl Debug for ruma_client_api::state::get_state_events_for_key::v3::Request
impl Debug for ruma_client_api::state::get_state_events_for_key::v3::Response
impl Debug for ruma_client_api::state::send_state_event::v3::Request
impl Debug for ruma_client_api::state::send_state_event::v3::Response
impl Debug for DeviceLists
impl Debug for ruma_client_api::sync::sync_events::UnreadNotificationsCount
impl Debug for Ephemeral
impl Debug for GlobalAccountData
impl Debug for InviteState
impl Debug for InvitedRoom
impl Debug for JoinedRoom
impl Debug for KnockState
impl Debug for KnockedRoom
impl Debug for LeftRoom
impl Debug for Presence
impl Debug for ruma_client_api::sync::sync_events::v3::Request
impl Debug for ruma_client_api::sync::sync_events::v3::Response
impl Debug for RoomAccountData
impl Debug for RoomSummary
impl Debug for Rooms
impl Debug for ruma_client_api::sync::sync_events::v3::State
impl Debug for ruma_client_api::sync::sync_events::v3::Timeline
impl Debug for ruma_client_api::sync::sync_events::v3::ToDevice
impl Debug for ruma_client_api::sync::sync_events::v4::AccountData
impl Debug for AccountDataConfig
impl Debug for ruma_client_api::sync::sync_events::v4::E2EE
impl Debug for E2EEConfig
impl Debug for ruma_client_api::sync::sync_events::v4::Extensions
impl Debug for ExtensionsConfig
impl Debug for IncludeOldRooms
impl Debug for ruma_client_api::sync::sync_events::v4::Receipts
impl Debug for ReceiptsConfig
impl Debug for ruma_client_api::sync::sync_events::v4::Request
impl Debug for ruma_client_api::sync::sync_events::v4::Response
impl Debug for RoomDetailsConfig
impl Debug for ruma_client_api::sync::sync_events::v4::RoomSubscription
impl Debug for ruma_client_api::sync::sync_events::v4::SlidingSyncRoom
impl Debug for SlidingSyncRoomHero
impl Debug for SyncList
impl Debug for SyncOp
impl Debug for SyncRequestList
impl Debug for SyncRequestListFilters
impl Debug for ruma_client_api::sync::sync_events::v4::ToDevice
impl Debug for ToDeviceConfig
impl Debug for ruma_client_api::sync::sync_events::v4::Typing
impl Debug for TypingConfig
impl Debug for ruma_client_api::sync::sync_events::v5::request::AccountData
impl Debug for ruma_client_api::sync::sync_events::v5::request::E2EE
impl Debug for ruma_client_api::sync::sync_events::v5::request::Extensions
impl Debug for ruma_client_api::sync::sync_events::v5::request::List
impl Debug for ListFilters
impl Debug for ruma_client_api::sync::sync_events::v5::request::Receipts
impl Debug for RoomDetails
impl Debug for ruma_client_api::sync::sync_events::v5::request::RoomSubscription
impl Debug for ruma_client_api::sync::sync_events::v5::request::ToDevice
impl Debug for ruma_client_api::sync::sync_events::v5::request::Typing
impl Debug for ruma_client_api::sync::sync_events::v5::response::AccountData
impl Debug for ruma_client_api::sync::sync_events::v5::response::E2EE
impl Debug for ruma_client_api::sync::sync_events::v5::response::Extensions
impl Debug for Hero
impl Debug for ruma_client_api::sync::sync_events::v5::response::List
impl Debug for ruma_client_api::sync::sync_events::v5::response::Receipts
impl Debug for ruma_client_api::sync::sync_events::v5::response::Room
impl Debug for ruma_client_api::sync::sync_events::v5::response::ToDevice
impl Debug for ruma_client_api::sync::sync_events::v5::response::Typing
impl Debug for ruma_client_api::sync::sync_events::v5::Request
impl Debug for ruma_client_api::sync::sync_events::v5::Response
impl Debug for ruma_client_api::tag::create_tag::v3::Request
impl Debug for ruma_client_api::tag::create_tag::v3::Response
impl Debug for ruma_client_api::tag::delete_tag::v3::Request
impl Debug for ruma_client_api::tag::delete_tag::v3::Response
impl Debug for ruma_client_api::tag::get_tags::v3::Request
impl Debug for ruma_client_api::tag::get_tags::v3::Response
impl Debug for ruma_client_api::thirdparty::get_location_for_protocol::v3::Request
impl Debug for ruma_client_api::thirdparty::get_location_for_protocol::v3::Response
impl Debug for ruma_client_api::thirdparty::get_location_for_room_alias::v3::Request
impl Debug for ruma_client_api::thirdparty::get_location_for_room_alias::v3::Response
impl Debug for ruma_client_api::thirdparty::get_protocol::v3::Request
impl Debug for ruma_client_api::thirdparty::get_protocol::v3::Response
impl Debug for ruma_client_api::thirdparty::get_protocols::v3::Request
impl Debug for ruma_client_api::thirdparty::get_protocols::v3::Response
impl Debug for ruma_client_api::thirdparty::get_user_for_protocol::v3::Request
impl Debug for ruma_client_api::thirdparty::get_user_for_protocol::v3::Response
impl Debug for ruma_client_api::thirdparty::get_user_for_user_id::v3::Request
impl Debug for ruma_client_api::thirdparty::get_user_for_user_id::v3::Response
impl Debug for ruma_client_api::threads::get_threads::v1::Request
impl Debug for ruma_client_api::threads::get_threads::v1::Response
impl Debug for ruma_client_api::to_device::send_event_to_device::v3::Request
impl Debug for ruma_client_api::to_device::send_event_to_device::v3::Response
impl Debug for ruma_client_api::typing::create_typing_event::v3::Request
impl Debug for ruma_client_api::typing::create_typing_event::v3::Response
impl Debug for HtmlPage
impl Debug for Redirect
impl Debug for ruma_client_api::uiaa::get_uiaa_fallback_page::v3::Request
impl Debug for AuthFlow
impl Debug for Dummy
impl Debug for EmailIdentity
impl Debug for FallbackAcknowledgement
impl Debug for Msisdn
impl Debug for ruma_client_api::uiaa::Password
impl Debug for ReCaptcha
impl Debug for RegistrationToken
impl Debug for Terms
impl Debug for ThirdpartyIdCredentials
impl Debug for UiaaInfo
impl Debug for ruma_client_api::user_directory::search_users::v3::Request
impl Debug for ruma_client_api::user_directory::search_users::v3::Response
impl Debug for ruma_client_api::user_directory::search_users::v3::User
impl Debug for ruma_client_api::voip::get_turn_server_info::v3::Request
impl Debug for ruma_client_api::voip::get_turn_server_info::v3::Response
impl Debug for IncorrectArgumentCount
impl Debug for MatrixError
impl Debug for UnknownVersionError
impl Debug for ruma_common::api::metadata::Metadata
impl Debug for VersionHistory
impl Debug for RedactedBecause
impl Debug for ruma_common::directory::Filter
impl Debug for PublicRoomsChunk
impl Debug for PublicRoomsChunkInit
impl Debug for ruma_common::encryption::CrossSigningKey
impl Debug for ruma_common::encryption::DeviceKeys
impl Debug for ruma_common::encryption::SignedKey
impl Debug for ruma_common::encryption::UnsignedDeviceInfo
impl Debug for ContentDisposition
impl Debug for TokenString
impl Debug for Base64PublicKey
impl Debug for OwnedBase64PublicKey
impl Debug for Base64PublicKeyOrDeviceId
impl Debug for OwnedBase64PublicKeyOrDeviceId
impl Debug for ClientSecret
impl Debug for OwnedClientSecret
impl Debug for DeviceId
impl Debug for OwnedDeviceId
impl Debug for EventId
impl Debug for OwnedEventId
impl Debug for MatrixToUri
impl Debug for MatrixUri
impl Debug for MxcUri
impl Debug for OwnedMxcUri
impl Debug for OneTimeKeyName
impl Debug for OwnedOneTimeKeyName
impl Debug for OwnedRoomAliasId
impl Debug for RoomAliasId
impl Debug for OwnedRoomId
impl Debug for RoomId
impl Debug for OwnedRoomOrAliasId
impl Debug for RoomOrAliasId
impl Debug for OwnedServerName
impl Debug for ruma_common::identifiers::server_name::ServerName
impl Debug for OwnedServerSigningKeyVersion
impl Debug for ServerSigningKeyVersion
impl Debug for OwnedSessionId
impl Debug for SessionId
impl Debug for OwnedTransactionId
impl Debug for TransactionId
impl Debug for OwnedUserId
impl Debug for UserId
impl Debug for OwnedVoipId
impl Debug for VoipId
impl Debug for NotificationPowerLevels
impl Debug for FlattenedJson
impl Debug for RoomMemberCountIs
impl Debug for PushConditionPowerLevelsCtx
impl Debug for PushConditionRoomCtx
impl Debug for RulesetIntoIter
impl Debug for ConditionalPushRule
impl Debug for ConditionalPushRuleInit
impl Debug for HttpPusherData
impl Debug for NewConditionalPushRule
impl Debug for NewPatternedPushRule
impl Debug for PatternedPushRule
impl Debug for PatternedPushRuleInit
impl Debug for RuleNotFoundError
impl Debug for Ruleset
impl Debug for Base64DecodeError
impl Debug for FieldType
impl Debug for FieldTypeInit
impl Debug for ruma_common::thirdparty::Location
impl Debug for ruma_common::thirdparty::Protocol
impl Debug for ProtocolInit
impl Debug for ProtocolInstance
impl Debug for ProtocolInstanceInit
impl Debug for ThirdPartyIdentifier
impl Debug for ThirdPartyIdentifierInit
impl Debug for ruma_common::thirdparty::User
impl Debug for MilliSecondsSinceUnixEpoch
impl Debug for SecondsSinceUnixEpoch
impl Debug for BeaconEventContent
impl Debug for RedactedBeaconEventContent
impl Debug for BeaconInfoEventContent
impl Debug for PossiblyRedactedBeaconInfoEventContent
impl Debug for RedactedBeaconInfoEventContent
impl Debug for CallAnswerEventContent
impl Debug for RedactedCallAnswerEventContent
impl Debug for CallCandidatesEventContent
impl Debug for ruma_events::call::candidates::Candidate
impl Debug for RedactedCallCandidatesEventContent
impl Debug for CallHangupEventContent
impl Debug for RedactedCallHangupEventContent
impl Debug for CallInviteEventContent
impl Debug for RedactedCallInviteEventContent
impl Debug for ActiveLivekitFocus
impl Debug for LivekitFocus
impl Debug for CallApplicationContent
impl Debug for LegacyMembershipData
impl Debug for LegacyMembershipDataInit
impl Debug for SessionMembershipData
impl Debug for CallMemberStateKey
impl Debug for EmptyMembershipData
impl Debug for LegacyMembershipContent
impl Debug for RedactedCallMemberEventContent
impl Debug for CallNegotiateEventContent
impl Debug for RedactedCallNegotiateEventContent
impl Debug for CallNotifyEventContent
impl Debug for RedactedCallNotifyEventContent
impl Debug for CallRejectEventContent
impl Debug for RedactedCallRejectEventContent
impl Debug for CallSdpStreamMetadataChangedEventContent
impl Debug for RedactedCallSdpStreamMetadataChangedEventContent
impl Debug for CallSelectAnswerEventContent
impl Debug for RedactedCallSelectAnswerEventContent
impl Debug for SessionDescription
impl Debug for StreamMetadata
impl Debug for DirectEventContent
impl Debug for ToDeviceDummyEventContent
impl Debug for ToDeviceForwardedRoomKeyEventContent
impl Debug for ToDeviceForwardedRoomKeyEventContentInit
impl Debug for FullyReadEventContent
impl Debug for IdentityServerEventContent
impl Debug for IgnoredUser
impl Debug for IgnoredUserListEventContent
impl Debug for KeyVerificationAcceptEventContent
impl Debug for RedactedKeyVerificationAcceptEventContent
impl Debug for ruma_events::key::verification::accept::SasV1Content
impl Debug for ruma_events::key::verification::accept::SasV1ContentInit
impl Debug for ToDeviceKeyVerificationAcceptEventContent
impl Debug for KeyVerificationCancelEventContent
impl Debug for RedactedKeyVerificationCancelEventContent
impl Debug for ToDeviceKeyVerificationCancelEventContent
impl Debug for KeyVerificationDoneEventContent
impl Debug for RedactedKeyVerificationDoneEventContent
impl Debug for ToDeviceKeyVerificationDoneEventContent
impl Debug for KeyVerificationKeyEventContent
impl Debug for RedactedKeyVerificationKeyEventContent
impl Debug for ToDeviceKeyVerificationKeyEventContent
impl Debug for KeyVerificationMacEventContent
impl Debug for RedactedKeyVerificationMacEventContent
impl Debug for ToDeviceKeyVerificationMacEventContent
impl Debug for KeyVerificationReadyEventContent
impl Debug for RedactedKeyVerificationReadyEventContent
impl Debug for ToDeviceKeyVerificationReadyEventContent
impl Debug for ToDeviceKeyVerificationRequestEventContent
impl Debug for KeyVerificationStartEventContent
impl Debug for ReciprocateV1Content
impl Debug for RedactedKeyVerificationStartEventContent
impl Debug for ruma_events::key::verification::start::SasV1Content
impl Debug for ruma_events::key::verification::start::SasV1ContentInit
impl Debug for ToDeviceKeyVerificationStartEventContent
impl Debug for ruma_events::kinds::OlmV1Keys
impl Debug for AssetContent
impl Debug for LocationContent
impl Debug for LocationEventContent
impl Debug for LocationEventContentWithoutRelation
impl Debug for RedactedLocationEventContent
impl Debug for ZoomLevel
impl Debug for MarkedUnreadEventContent
impl Debug for UnstableMarkedUnreadEventContent
impl Debug for MessageEventContent
impl Debug for MessageEventContentWithoutRelation
impl Debug for RedactedMessageEventContent
impl Debug for TextContentBlock
impl Debug for TextRepresentation
impl Debug for PolicyRuleRoomEventContent
impl Debug for PossiblyRedactedPolicyRuleRoomEventContent
impl Debug for RedactedPolicyRuleRoomEventContent
impl Debug for PolicyRuleServerEventContent
impl Debug for PossiblyRedactedPolicyRuleServerEventContent
impl Debug for RedactedPolicyRuleServerEventContent
impl Debug for PolicyRuleEventContent
impl Debug for PossiblyRedactedPolicyRuleEventContent
impl Debug for PolicyRuleUserEventContent
impl Debug for PossiblyRedactedPolicyRuleUserEventContent
impl Debug for RedactedPolicyRuleUserEventContent
impl Debug for PollEndEventContent
impl Debug for PollResultsContentBlock
impl Debug for RedactedPollEndEventContent
impl Debug for PollResponseEventContent
impl Debug for RedactedPollResponseEventContent
impl Debug for SelectionsContentBlock
impl Debug for PollAnswer
impl Debug for PollAnswers
impl Debug for PollContentBlock
impl Debug for PollQuestion
impl Debug for PollStartEventContent
impl Debug for PollStartEventContentWithoutRelation
impl Debug for RedactedPollStartEventContent
impl Debug for RedactedUnstablePollEndEventContent
impl Debug for UnstablePollEndContentBlock
impl Debug for UnstablePollEndEventContent
impl Debug for RedactedUnstablePollResponseEventContent
impl Debug for UnstablePollResponseContentBlock
impl Debug for UnstablePollResponseEventContent
impl Debug for NewUnstablePollStartEventContent
impl Debug for NewUnstablePollStartEventContentWithoutRelation
impl Debug for RedactedUnstablePollStartEventContent
impl Debug for ReplacementUnstablePollStartEventContent
impl Debug for UnstablePollAnswer
impl Debug for UnstablePollAnswers
impl Debug for UnstablePollQuestion
impl Debug for UnstablePollStartContentBlock
impl Debug for PresenceEvent
impl Debug for PresenceEventContent
impl Debug for PushRulesEventContent
impl Debug for ReactionEventContent
impl Debug for RedactedReactionEventContent
impl Debug for Receipt
impl Debug for ReceiptEventContent
impl Debug for Annotation
impl Debug for BundledReference
impl Debug for BundledStateRelations
impl Debug for BundledThread
impl Debug for InReplyTo
impl Debug for ruma_events::relation::Reference
impl Debug for ReferenceChunk
impl Debug for ruma_events::relation::Thread
impl Debug for PossiblyRedactedRoomAliasesEventContent
impl Debug for RedactedRoomAliasesEventContent
impl Debug for RoomAliasesEventContent
impl Debug for ruma_events::room::avatar::ImageInfo
impl Debug for RedactedRoomAvatarEventContent
impl Debug for RoomAvatarEventContent
impl Debug for RedactedRoomCanonicalAliasEventContent
impl Debug for RoomCanonicalAliasEventContent
impl Debug for PreviousRoom
impl Debug for RoomCreateEventContent
impl Debug for CiphertextInfo
impl Debug for ruma_events::room::encrypted::MegolmV1AesSha2Content
impl Debug for MegolmV1AesSha2ContentInit
impl Debug for ruma_events::room::encrypted::OlmV1Curve25519AesSha2Content
impl Debug for RedactedRoomEncryptedEventContent
impl Debug for ruma_events::room::encrypted::Replacement
impl Debug for ruma_events::room::encrypted::RoomEncryptedEventContent
impl Debug for ToDeviceRoomEncryptedEventContent
impl Debug for PossiblyRedactedRoomEncryptionEventContent
impl Debug for RedactedRoomEncryptionEventContent
impl Debug for RoomEncryptionEventContent
impl Debug for PossiblyRedactedRoomGuestAccessEventContent
impl Debug for RedactedRoomGuestAccessEventContent
impl Debug for RoomGuestAccessEventContent
impl Debug for RedactedRoomHistoryVisibilityEventContent
impl Debug for RoomHistoryVisibilityEventContent
impl Debug for RedactedRoomJoinRulesEventContent
impl Debug for Restricted
impl Debug for RoomJoinRulesEventContent
impl Debug for RoomMembership
impl Debug for RedactedRoomMemberEventContent
impl Debug for RedactedThirdPartyInvite
impl Debug for RoomMemberEventContent
impl Debug for RoomMemberUnsigned
impl Debug for SignedContent
impl Debug for ThirdPartyInvite
impl Debug for AudioInfo
impl Debug for AudioMessageEventContent
impl Debug for UnstableAmplitude
impl Debug for UnstableAudioDetailsContentBlock
impl Debug for UnstableVoiceContentBlock
impl Debug for EmoteMessageEventContent
impl Debug for FileInfo
impl Debug for FileMessageEventContent
impl Debug for ImageMessageEventContent
impl Debug for KeyVerificationRequestEventContent
impl Debug for LocationInfo
impl Debug for LocationMessageEventContent
impl Debug for NoticeMessageEventContent
impl Debug for ServerNoticeMessageEventContent
impl Debug for FormattedBody
impl Debug for RedactedRoomMessageEventContent
impl Debug for ReplacementMetadata
impl Debug for RoomMessageEventContent
impl Debug for TextMessageEventContent
impl Debug for VideoInfo
impl Debug for VideoMessageEventContent
impl Debug for RoomMessageEventContentWithoutRelation
impl Debug for PossiblyRedactedRoomNameEventContent
impl Debug for RedactedRoomNameEventContent
impl Debug for RoomNameEventContent
impl Debug for PossiblyRedactedRoomPinnedEventsEventContent
impl Debug for RedactedRoomPinnedEventsEventContent
impl Debug for RoomPinnedEventsEventContent
impl Debug for RedactedRoomPowerLevelsEventContent
impl Debug for RoomPowerLevels
impl Debug for RoomPowerLevelsEventContent
impl Debug for OriginalRoomRedactionEvent
impl Debug for OriginalSyncRoomRedactionEvent
impl Debug for RedactedRoomRedactionEvent
impl Debug for RedactedRoomRedactionEventContent
impl Debug for RedactedSyncRoomRedactionEvent
impl Debug for RoomRedactionEventContent
impl Debug for RoomRedactionUnsigned
impl Debug for RedactedRoomServerAclEventContent
impl Debug for RoomServerAclEventContent
impl Debug for EncryptedFile
impl Debug for EncryptedFileInit
impl Debug for ruma_events::room::ImageInfo
impl Debug for JsonWebKey
impl Debug for JsonWebKeyInit
impl Debug for ThumbnailInfo
impl Debug for PossiblyRedactedRoomThirdPartyInviteEventContent
impl Debug for ruma_events::room::third_party_invite::PublicKey
impl Debug for RedactedRoomThirdPartyInviteEventContent
impl Debug for RoomThirdPartyInviteEventContent
impl Debug for PossiblyRedactedRoomTombstoneEventContent
impl Debug for RedactedRoomTombstoneEventContent
impl Debug for RoomTombstoneEventContent
impl Debug for PossiblyRedactedRoomTopicEventContent
impl Debug for RedactedRoomTopicEventContent
impl Debug for RoomTopicEventContent
impl Debug for ToDeviceRoomKeyEventContent
impl Debug for ruma_events::room_key_request::RequestedKeyInfo
impl Debug for ToDeviceRoomKeyRequestEventContent
impl Debug for ToDeviceSecretRequestEventContent
impl Debug for ToDeviceSecretSendEventContent
impl Debug for SecretStorageDefaultKeyEventContent
impl Debug for PassPhrase
impl Debug for SecretStorageKeyEventContent
impl Debug for SecretStorageV1AesHmacSha2Properties
impl Debug for SecretEventContent
impl Debug for HierarchySpaceChildEvent
impl Debug for PossiblyRedactedSpaceChildEventContent
impl Debug for RedactedSpaceChildEventContent
impl Debug for SpaceChildEventContent
impl Debug for PossiblyRedactedSpaceParentEventContent
impl Debug for RedactedSpaceParentEventContent
impl Debug for SpaceParentEventContent
impl Debug for EmptyStateKey
impl Debug for RedactedStickerEventContent
impl Debug for StickerEventContent
impl Debug for StickerEventContentWithoutRelation
impl Debug for Mentions
impl Debug for InvalidUserTagName
impl Debug for TagEventContent
impl Debug for TagInfo
impl Debug for UserTagName
impl Debug for TypingEventContent
impl Debug for RedactedUnsigned
impl Debug for UnsignedRoomRedactionEvent
impl Debug for Children
impl Debug for ElementData
impl Debug for Html
impl Debug for NodeRef
impl Debug for NameReplacement
impl Debug for SanitizerConfig
impl Debug for Statement<'_>
impl Debug for rusqlite::Connection
impl Debug for OpenFlags
impl Debug for PrepFlags
impl Debug for Dir
impl Debug for rustix::backend::fs::dir::DirEntry
impl Debug for CreateFlags
impl Debug for ReadFlags
impl Debug for WatchFlags
impl Debug for Access
impl Debug for AtFlags
impl Debug for FallocateFlags
impl Debug for MemfdFlags
impl Debug for Mode
impl Debug for OFlags
impl Debug for RenameFlags
impl Debug for ResolveFlags
impl Debug for SealFlags
impl Debug for StatVfsMountFlags
impl Debug for StatxFlags
impl Debug for Errno
impl Debug for DupFlags
impl Debug for FdFlags
impl Debug for ReadWriteFlags
impl Debug for MountFlags
impl Debug for MountPropagationFlags
impl Debug for UnmountFlags
impl Debug for Timestamps
impl Debug for XattrFlags
impl Debug for Opcode
impl Debug for Gid
impl Debug for Uid
impl Debug for WantsVerifier
impl Debug for WantsVersions
impl Debug for DangerousClientConfigBuilder
impl Debug for rustls::client::client_conn::connection::ClientConnection
impl Debug for ClientConfig
impl Debug for ClientConnectionData
impl Debug for Resumption
impl Debug for EchConfig
impl Debug for EchGreaseConfig
impl Debug for ClientSessionMemoryCache
impl Debug for IoState
impl Debug for CompressionCacheInner
impl Debug for CompressionFailed
impl Debug for DecompressionFailed
impl Debug for InsufficientSizeError
impl Debug for UnsupportedOperationError
impl Debug for EncapsulatedSecret
impl Debug for HpkePublicKey
impl Debug for HpkeSuite
impl Debug for CertifiedKey
impl Debug for CryptoProvider
impl Debug for OutputLengthError
impl Debug for OtherError
impl Debug for NoKeyLog
impl Debug for KeyLogFile
impl Debug for DistinguishedName
impl Debug for OutboundOpaqueMessage
impl Debug for PrefixedPayload
impl Debug for PlainMessage
impl Debug for Tls12ClientSessionValue
impl Debug for Tls13ClientSessionValue
impl Debug for rustls::quic::connection::ClientConnection
impl Debug for rustls::quic::connection::ServerConnection
impl Debug for GetRandomFailed
impl Debug for WantsServerCert
impl Debug for ServerSessionMemoryCache
impl Debug for ResolvesServerCertUsingSni
impl Debug for NoServerSessionStorage
impl Debug for AcceptedAlert
impl Debug for rustls::server::server_conn::connection::ServerConnection
impl Debug for Accepted
impl Debug for ServerConfig
impl Debug for ServerConnectionData
impl Debug for TicketSwitcher
impl Debug for DefaultTimeProvider
impl Debug for Tls12CipherSuite
impl Debug for Tls13CipherSuite
impl Debug for ClientCertVerified
impl Debug for DigitallySignedStruct
impl Debug for HandshakeSignatureValid
impl Debug for NoClientAuth
impl Debug for ServerCertVerified
impl Debug for SupportedProtocolVersion
impl Debug for RootCertStore
impl Debug for ClientCertVerifierBuilder
impl Debug for WebPkiClientVerifier
impl Debug for ServerCertVerifierBuilder
impl Debug for WebPkiServerVerifier
impl Debug for WebPkiSupportedAlgorithms
impl Debug for rustls_pki_types::server_name::AddrParseError
impl Debug for InvalidDnsNameError
impl Debug for rustls_pki_types::server_name::Ipv4Addr
impl Debug for rustls_pki_types::server_name::Ipv6Addr
impl Debug for AlgorithmIdentifier
impl Debug for Der<'_>
impl Debug for EchConfigListBytes<'_>
impl Debug for rustls_pki_types::InvalidSignature
impl Debug for PrivatePkcs1KeyDer<'_>
impl Debug for PrivatePkcs8KeyDer<'_>
impl Debug for PrivateSec1KeyDer<'_>
impl Debug for UnixTime
impl Debug for Epoch
impl Debug for IgnoredAny
impl Debug for serde::de::value::Error
impl Debug for serde_bytes::bytebuf::ByteBuf
impl Debug for serde_bytes::bytes::Bytes
impl Debug for serde_html_form::ser::error::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 Sha256VarCore
impl Debug for Sha512VarCore
impl Debug for signature::error::Error
impl Debug for Hash128
impl Debug for siphasher::sip128::SipHasher13
impl Debug for siphasher::sip128::SipHasher24
impl Debug for siphasher::sip128::SipHasher
impl Debug for siphasher::sip::SipHasher13
impl Debug for siphasher::sip::SipHasher24
impl Debug for siphasher::sip::SipHasher
impl Debug for SockAddr
impl Debug for Socket
impl Debug for SockRef<'_>
impl Debug for Domain
impl Debug for socket2::Protocol
impl Debug for RecvFlags
impl Debug for TcpKeepalive
impl Debug for socket2::Type
impl Debug for Choice
impl Debug for TempDir
impl Debug for PathPersistError
impl Debug for TempPath
impl Debug for SpooledTempFile
impl Debug for ASCII
impl Debug for tendril::fmt::Bytes
impl Debug for Latin1
impl Debug for UTF8
impl Debug for WTF8
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 time::format_description::well_known::iso8601::Config
impl Debug for Rfc2822
impl Debug for Rfc3339
impl Debug for time::instant::Instant
impl Debug for OffsetDateTime
impl Debug for PrimitiveDateTime
impl Debug for time::time::Time
impl Debug for UtcOffset
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 tinyvec::arrayvec::TryFromSliceError
impl Debug for tokio::fs::dir_builder::DirBuilder
impl Debug for tokio::fs::file::File
impl Debug for tokio::fs::open_options::OpenOptions
impl Debug for tokio::fs::read_dir::DirEntry
impl Debug for tokio::fs::read_dir::ReadDir
impl Debug for TryIoError
impl Debug for tokio::io::interest::Interest
impl Debug for tokio::io::read_buf::ReadBuf<'_>
impl Debug for tokio::io::ready::Ready
impl Debug for tokio::io::util::empty::Empty
impl Debug for DuplexStream
impl Debug for SimplexStream
impl Debug for tokio::io::util::repeat::Repeat
impl Debug for tokio::io::util::sink::Sink
impl Debug for tokio::net::tcp::listener::TcpListener
impl Debug for TcpSocket
impl Debug for tokio::net::tcp::split_owned::OwnedReadHalf
impl Debug for tokio::net::tcp::split_owned::OwnedWriteHalf
impl Debug for tokio::net::tcp::split_owned::ReuniteError
impl Debug for tokio::net::tcp::stream::TcpStream
impl Debug for tokio::net::udp::UdpSocket
impl Debug for tokio::net::unix::datagram::socket::UnixDatagram
impl Debug for tokio::net::unix::listener::UnixListener
impl Debug for tokio::net::unix::pipe::OpenOptions
impl Debug for tokio::net::unix::pipe::Receiver
impl Debug for tokio::net::unix::pipe::Sender
impl Debug for UnixSocket
impl Debug for tokio::net::unix::socketaddr::SocketAddr
impl Debug for tokio::net::unix::split_owned::OwnedReadHalf
impl Debug for tokio::net::unix::split_owned::OwnedWriteHalf
impl Debug for tokio::net::unix::split_owned::ReuniteError
impl Debug for tokio::net::unix::stream::UnixStream
impl Debug for tokio::net::unix::ucred::UCred
impl Debug for tokio::runtime::builder::Builder
impl Debug for Handle
impl Debug for TryCurrentError
impl Debug for RuntimeMetrics
impl Debug for tokio::runtime::runtime::Runtime
impl Debug for tokio::runtime::task::abort::AbortHandle
impl Debug for JoinError
impl Debug for tokio::runtime::task::id::Id
impl Debug for tokio::sync::barrier::Barrier
impl Debug for tokio::sync::barrier::BarrierWaitResult
impl Debug for AcquireError
impl Debug for tokio::sync::mutex::TryLockError
impl Debug for Notify
impl Debug for tokio::sync::oneshot::error::RecvError
impl Debug for OwnedSemaphorePermit
impl Debug for Semaphore
impl Debug for tokio::sync::watch::error::RecvError
impl Debug for LocalEnterGuard
impl Debug for LocalSet
impl Debug for tokio::time::error::Elapsed
impl Debug for tokio::time::error::Error
impl Debug for tokio::time::instant::Instant
impl Debug for Interval
impl Debug for Sleep
impl Debug for tokio_retry::strategy::exponential_backoff::ExponentialBackoff
impl Debug for FibonacciBackoff
impl Debug for FixedInterval
impl Debug for tokio_stream::stream_ext::timeout::Elapsed
impl Debug for IntervalStream
impl Debug for AnyDelimiterCodec
impl Debug for BytesCodec
impl Debug for tokio_util::codec::length_delimited::Builder
impl Debug for LengthDelimitedCodec
impl Debug for LengthDelimitedCodecError
impl Debug for LinesCodec
impl Debug for DropGuard
impl Debug for CancellationToken
impl Debug for WaitForCancellationFutureOwned
impl Debug for PollSemaphore
impl Debug for toml::de::Error
impl Debug for toml::map::Map<String, Value>
impl Debug for toml::ser::Error
impl Debug for toml_datetime::datetime::Date
impl Debug for Datetime
impl Debug for DatetimeParseError
impl Debug for toml_datetime::datetime::Time
impl Debug for Array
impl Debug for ArrayOfTables
impl Debug for toml_edit::de::Error
impl Debug for DocumentMut
impl Debug for TomlError
impl Debug for InlineTable
impl Debug for InternalString
impl Debug for toml_edit::key::Key
impl Debug for RawString
impl Debug for Decor
impl Debug for Repr
impl Debug for Table
impl Debug for EnteredSpan
impl Debug for tracing::span::Span
impl Debug for DefaultCallsite
impl Debug for Identifier
impl Debug for DefaultGuard
impl Debug for Dispatch
impl Debug for SetGlobalDefaultError
impl Debug for WeakDispatch
impl Debug for tracing_core::field::Empty
impl Debug for Field
impl Debug for FieldSet
impl Debug for tracing_core::field::Iter
impl Debug for Kind
impl Debug for tracing_core::metadata::Level
impl Debug for tracing_core::metadata::LevelFilter
impl Debug for tracing_core::metadata::ParseLevelError
impl Debug for ParseLevelFilterError
impl Debug for Current
impl Debug for tracing_core::span::Id
impl Debug for tracing_core::subscriber::Interest
impl Debug for NoSubscriber
impl Debug for ATerm
impl Debug for B0
impl Debug for B1
impl Debug for Z0
impl Debug for Equal
impl Debug for Greater
impl Debug for Less
impl Debug for UTerm
impl Debug for Ulid
impl Debug for BidiMatchedOpeningBracket
impl Debug for unicode_bidi::level::Level
impl Debug for ParagraphInfo
impl Debug for universal_hash::Error
impl Debug for untrusted::input::Input<'_>
The value is intentionally omitted from the output to avoid leaking secrets.
impl Debug for EndOfInput
impl Debug for untrusted::reader::Reader<'_>
Avoids writing the value or position to avoid creating a side channel,
though Reader
can’t avoid leaking the position via timing.
impl Debug for OpaqueOrigin
impl Debug for Url
Debug the serialization of this URL.
impl Debug for Incomplete
impl Debug for uuid::builder::Builder
impl Debug for uuid::error::Error
impl Debug for Braced
impl Debug for Hyphenated
impl Debug for Simple
impl Debug for Urn
impl Debug for Uuid
impl Debug for NoContext
impl Debug for Timestamp
impl Debug for InitialMessage
impl Debug for vodozemac::ecies::messages::Message
impl Debug for CheckCode
impl Debug for EstablishedEcies
impl Debug for vodozemac::ecies::InboundCreationResult
impl Debug for OutboundCreationResult
impl Debug for DecryptedMessage
impl Debug for MegolmMessage
impl Debug for vodozemac::megolm::session_config::SessionConfig
impl Debug for IdentityKeys
impl Debug for vodozemac::olm::account::InboundCreationResult
impl Debug for vodozemac::olm::messages::message::Message
impl Debug for PreKeyMessage
impl Debug for RatchetPublicKey
impl Debug for vodozemac::olm::session::Session
impl Debug for vodozemac::olm::session_config::SessionConfig
impl Debug for SessionKeys
impl Debug for vodozemac::pk_encryption::Message
impl Debug for EstablishedSas
impl Debug for InvalidCount
impl Debug for SasBytes
impl Debug for Curve25519PublicKey
impl Debug for Ed25519PublicKey
impl Debug for Ed25519Signature
impl Debug for vodozemac::types::KeyId
impl Debug for Closed
impl Debug for Giver
impl Debug for Taker
impl Debug for OwnedCertRevocationList
impl Debug for OwnedRevokedCert
impl Debug for BStr
impl Debug for winnow::stream::Bytes
impl Debug for winnow::stream::Range
impl Debug for x25519_dalek::x25519::PublicKey
impl Debug for CoreClient
impl Debug for AttachmentBuilder
impl Debug for AttachmentEventContent
impl Debug for AttachmentUpdateBuilder
impl Debug for AttachmentUpdateEventContent
impl Debug for LinkAttachmentContent
impl Debug for RedactedAttachmentEventContent
impl Debug for RedactedAttachmentUpdateEventContent
impl Debug for BookmarksEventContent
impl Debug for CalendarEventBuilder
impl Debug for CalendarEventEventContent
impl Debug for CalendarEventUpdateBuilder
impl Debug for CalendarEventUpdateEventContent
impl Debug for RedactedCalendarEventEventContent
impl Debug for RedactedCalendarEventUpdateEventContent
impl Debug for CommentBuilder
impl Debug for CommentEventContent
impl Debug for CommentUpdateBuilder
impl Debug for CommentUpdateEventContent
impl Debug for RedactedCommentEventContent
impl Debug for RedactedCommentUpdateEventContent
impl Debug for NewsEntryBuilder
impl Debug for NewsEntryEventContent
impl Debug for NewsEntryUpdateBuilder
impl Debug for NewsEntryUpdateEventContent
impl Debug for NewsSlide
impl Debug for RedactedNewsEntryEventContent
impl Debug for RedactedNewsEntryUpdateEventContent
impl Debug for PinBuilder
impl Debug for PinEventContent
impl Debug for PinUpdateBuilder
impl Debug for PinUpdateEventContent
impl Debug for RedactedPinEventContent
impl Debug for RedactedPinUpdateEventContent
impl Debug for ReadReceiptEventContent
impl Debug for RedactedReadReceiptEventContent
impl Debug for SubscribeBuilder
impl Debug for UserSettingsEventContent
impl Debug for RedactedRsvpEventContent
impl Debug for RsvpBuilder
impl Debug for RsvpEventContent
impl Debug for ActerAppSettingsContent
impl Debug for ActerUserAppSettingsContent
impl Debug for AppChatSettings
impl Debug for SimpleOnOffSetting
impl Debug for SimpleSettingWithTurnOff
impl Debug for BelongsTo
impl Debug for CategoriesStateEventContent
impl Debug for acter_core::events::Category
impl Debug for Colorize
impl Debug for ColorizeBuilder
impl Debug for acter_core::events::Display
impl Debug for DisplayBuilder
impl Debug for Labels
impl Debug for acter_core::events::ObjRef
impl Debug for ObjRefBuilder
impl Debug for RefDetailsBuilder
impl Debug for acter_core::events::Reference
impl Debug for References
impl Debug for acter_core::events::Update
impl Debug for RedactedTaskEventContent
impl Debug for RedactedTaskListEventContent
impl Debug for RedactedTaskListUpdateEventContent
impl Debug for RedactedTaskSelfAssignEventContent
impl Debug for RedactedTaskSelfUnassignEventContent
impl Debug for RedactedTaskUpdateEventContent
impl Debug for TaskBuilder
impl Debug for TaskEventContent
impl Debug for TaskListBuilder
impl Debug for TaskListEventContent
impl Debug for TaskListUpdateBuilder
impl Debug for TaskListUpdateEventContent
impl Debug for TaskSelfAssignBuilder
impl Debug for TaskSelfAssignEventContent
impl Debug for TaskSelfUnassignBuilder
impl Debug for TaskSelfUnassignEventContent
impl Debug for TaskUpdateBuilder
impl Debug for TaskUpdateEventContent
impl Debug for ThreePidContent
impl Debug for ThreePidRecord
impl Debug for Executor
impl Debug for SpaceRelation
impl Debug for SpaceRelations
impl Debug for acter_core::store::Store
impl Debug for acter_core::super_invites::api::create::Request
impl Debug for acter_core::super_invites::api::create::Response
impl Debug for acter_core::super_invites::api::delete::Request
impl Debug for acter_core::super_invites::api::delete::Response
impl Debug for acter_core::super_invites::api::info::Request
impl Debug for acter_core::super_invites::api::info::Response
impl Debug for acter_core::super_invites::api::list::Request
impl Debug for acter_core::super_invites::api::list::Response
impl Debug for acter_core::super_invites::api::redeem::Request
impl Debug for acter_core::super_invites::api::redeem::Response
impl Debug for acter_core::super_invites::api::update::Request
impl Debug for acter_core::super_invites::api::update::Response
impl Debug for CreateToken
impl Debug for acter_core::super_invites::Token
impl Debug for TokenInfo
impl Debug for TokenOwner
impl Debug for UpdateToken
impl Debug for CustomAuthSession
impl Debug for RestoreToken
impl Debug for acter_core::templates::Value
impl Debug for acter_core::templates::values::ObjRef
impl Debug for UserValue
impl Debug for UtcDateTimeValue
impl Debug for Global
impl Debug for UnorderedKeyError
impl Debug for alloc::collections::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 core::array::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 __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512i
impl Debug for CStr
impl Debug for core::ffi::c_str::FromBytesUntilNulError
impl Debug for core::ffi::c_str::FromBytesWithNulError
impl Debug for Arguments<'_>
impl Debug for core::fmt::Error
impl Debug for core::hash::sip::SipHasher
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomPinned
impl Debug for Assume
impl Debug for core::net::ip_addr::Ipv4Addr
impl Debug for core::net::ip_addr::Ipv6Addr
impl Debug for core::net::parser::AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for core::num::dec2flt::ParseFloatError
impl Debug for 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 core::str::error::ParseBoolError
impl Debug for core::str::error::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 core::task::wake::Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for core::task::wake::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 std::fs::DirBuilder
impl Debug for std::fs::DirEntry
impl Debug for std::fs::File
impl Debug for FileTimes
impl Debug for std::fs::FileType
impl Debug for std::fs::Metadata
impl Debug for std::fs::OpenOptions
impl Debug for Permissions
impl Debug for std::fs::ReadDir
impl Debug for DefaultHasher
impl Debug for std::hash::random::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 std::io::util::Sink
impl Debug for IntoIncoming
impl Debug for std::net::tcp::TcpListener
impl Debug for std::net::tcp::TcpStream
impl Debug for std::net::udp::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 std::os::unix::net::datagram::UnixDatagram
impl Debug for std::os::unix::net::listener::UnixListener
impl Debug for std::os::unix::net::stream::UnixStream
impl Debug for std::os::unix::net::ucred::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 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 std::sync::barrier::Barrier
impl Debug for std::sync::barrier::BarrierWaitResult
impl Debug for std::sync::condvar::Condvar
impl Debug for std::sync::condvar::WaitTimeoutResult
impl Debug for std::sync::mpsc::RecvError
impl Debug for std::sync::once::Once
impl Debug for std::sync::once::OnceState
impl Debug for AccessError
impl Debug for Scope<'_, '_>
impl Debug for std::thread::Builder
impl Debug for std::thread::Thread
impl Debug for ThreadId
impl Debug for std::time::Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for Attachment
impl Debug for AttachmentUpdate
impl Debug for AttachmentsManager
impl Debug for AttachmentsStats
impl Debug for CalendarEvent
impl Debug for CalendarEventUpdate
impl Debug for acter_core::models::Comment
impl Debug for CommentUpdate
impl Debug for CommentsManager
impl Debug for CommentsStats
impl Debug for EventMeta
impl Debug for NewsEntry
impl Debug for NewsEntryUpdate
impl Debug for acter_core::models::Pin
impl Debug for PinUpdate
impl Debug for Reaction
impl Debug for ReactionManager
impl Debug for ReactionStats
impl Debug for ReadReceipt
impl Debug for ReadReceiptStats
impl Debug for ReadReceiptsManager
impl Debug for RedactedActerModel
impl Debug for RedactionContent
impl Debug for Rsvp
impl Debug for RsvpManager
impl Debug for RsvpStats
impl Debug for Task
impl Debug for TaskList
impl Debug for TaskListUpdate
impl Debug for TaskSelfAssign
impl Debug for TaskSelfUnassign
impl Debug for TaskStats
impl Debug for TaskUpdate
impl Debug for AHasher
impl Debug for RandomState
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl Debug for dyn Any + Sync
impl Debug for dyn CloneAny
impl Debug for dyn CloneAnySend + Send
impl Debug for dyn CloneAnySendSync + Send + Sync
impl Debug for dyn CloneAnySync + Sync
impl Debug for dyn Value
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl<'a> Debug for chrono::format::Item<'a>
impl<'a> Debug for PossibleLatestEvent<'a>
impl<'a> Debug for StateStoreDataKey<'a>
impl<'a> Debug for IncomingResponse<'a>
impl<'a> Debug for CodeBlockKind<'a>
impl<'a> Debug for pulldown_cmark::Event<'a>
impl<'a> Debug for pulldown_cmark::Tag<'a>
impl<'a> Debug for CowStr<'a>
impl<'a> Debug for IndexVecIter<'a>
impl<'a> Debug for SendAccessToken<'a>
impl<'a> Debug for AnyPushRuleRef<'a>
impl<'a> Debug for MembershipData<'a>
impl<'a> Debug for MembershipChange<'a>
impl<'a> Debug for DatabaseName<'a>
impl<'a> Debug for ToSqlOutput<'a>
impl<'a> Debug for ValueRef<'a>
impl<'a> Debug for OutboundChunks<'a>
impl<'a> Debug for PrivateKeyDer<'a>
impl<'a> Debug for rustls_pki_types::server_name::ServerName<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for utf8::DecodeError<'a>
impl<'a> Debug for BufReadDecoderError<'a>
impl<'a> Debug for CertRevocationList<'a>
impl<'a> Debug for std::path::Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for StrftimeItems<'a>
impl<'a> Debug for ByteSerialize<'a>
impl<'a> Debug for Codepoint<'a>
impl<'a> Debug for WakerRef<'a>
impl<'a> Debug for Header<'a>
impl<'a> Debug for ReadBufCursor<'a>
impl<'a> Debug for icalendar::parser::calendar::Calendar<'a>
impl<'a> Debug for icalendar::parser::components::Component<'a>
impl<'a> Debug for icalendar::parser::parameters::Parameter<'a>
impl<'a> Debug for ParseString<'a>
impl<'a> Debug for icalendar::parser::properties::Property<'a>
impl<'a> Debug for konst::parsing::parse_errors::ParseError<'a>
impl<'a> Debug for konst::parsing::Parser<'a>
impl<'a> Debug for log::Metadata<'a>
impl<'a> Debug for MetadataBuilder<'a>
impl<'a> Debug for log::Record<'a>
impl<'a> Debug for RecordBuilder<'a>
impl<'a> Debug for ExpandedName<'a>
impl<'a> Debug for WaitForSteadyState<'a>
impl<'a> Debug for Enable<'a>
impl<'a> Debug for RecoverAndReset<'a>
impl<'a> Debug for Reset<'a>
impl<'a> Debug for CreateStore<'a>
impl<'a> Debug for DebugInvitedRoom<'a>
impl<'a> Debug for DebugKnockedRoom<'a>
impl<'a> Debug for EncryptionSyncChanges<'a>
impl<'a> Debug for MimeIter<'a>
impl<'a> Debug for mime::Name<'a>
impl<'a> Debug for Params<'a>
impl<'a> Debug for mio::event::events::Iter<'a>
impl<'a> Debug for SourceFd<'a>
impl<'a> Debug for PercentDecode<'a>
impl<'a> Debug for BrokenLink<'a>
impl<'a> Debug for regex::regexset::bytes::SetMatchesIter<'a>
impl<'a> Debug for regex::regexset::string::SetMatchesIter<'a>
impl<'a> Debug for PatternIter<'a>
impl<'a> Debug for ByteClassElements<'a>
impl<'a> Debug for ByteClassIter<'a>
impl<'a> Debug for ByteClassRepresentatives<'a>
impl<'a> Debug for CapturesPatternIter<'a>
impl<'a> Debug for GroupInfoAllNames<'a>
impl<'a> Debug for GroupInfoPatternNames<'a>
impl<'a> Debug for DebugHaystack<'a>
impl<'a> Debug for PatternSetIter<'a>
impl<'a> Debug for ClassBytesIter<'a>
impl<'a> Debug for ClassUnicodeIter<'a>
impl<'a> Debug for Attempt<'a>
impl<'a> Debug for rmp::decode::bytes::Bytes<'a>
impl<'a> Debug for CapabilitiesIter<'a>
impl<'a> Debug for CapabilityRef<'a>
impl<'a> Debug for SignedKeysIter<'a>
impl<'a> Debug for RulesetIter<'a>
impl<'a> Debug for PollResponseData<'a>
impl<'a> Debug for MembershipDetails<'a>
impl<'a> Debug for ElementAttributesReplacement<'a>
impl<'a> Debug for ElementAttributesSchemes<'a>
impl<'a> Debug for PropertiesNames<'a>
impl<'a> Debug for InotifyEvent<'a>
impl<'a> Debug for RawDirEntry<'a>
impl<'a> Debug for DangerousClientConfig<'a>
impl<'a> Debug for FfdheGroup<'a>
impl<'a> Debug for InboundPlainMessage<'a>
impl<'a> Debug for OutboundPlainMessage<'a>
impl<'a> Debug for DnsName<'a>
impl<'a> Debug for CertificateDer<'a>
impl<'a> Debug for CertificateRevocationListDer<'a>
impl<'a> Debug for CertificateSigningRequestDer<'a>
impl<'a> Debug for SubjectPublicKeyInfoDer<'a>
impl<'a> Debug for TrustAnchor<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for MaybeUninitSlice<'a>
impl<'a> Debug for tokio::net::tcp::split::ReadHalf<'a>
impl<'a> Debug for tokio::net::tcp::split::WriteHalf<'a>
impl<'a> Debug for tokio::net::unix::split::ReadHalf<'a>
impl<'a> Debug for tokio::net::unix::split::WriteHalf<'a>
impl<'a> Debug for EnterGuard<'a>
impl<'a> Debug for Notified<'a>
impl<'a> Debug for SemaphorePermit<'a>
impl<'a> Debug for WaitForCancellationFuture<'a>
impl<'a> Debug for Entered<'a>
impl<'a> Debug for tracing_core::event::Event<'a>
impl<'a> Debug for ValueSet<'a>
impl<'a> Debug for tracing_core::metadata::Metadata<'a>
impl<'a> Debug for Attributes<'a>
impl<'a> Debug for tracing_core::span::Record<'a>
impl<'a> Debug for PathSegmentsMut<'a>
impl<'a> Debug for UrlQuery<'a>
impl<'a> Debug for RevocationOptions<'a>
impl<'a> Debug for RevocationOptionsBuilder<'a>
impl<'a> Debug for BorrowedCertRevocationList<'a>
impl<'a> Debug for BorrowedRevokedCert<'a>
impl<'a> Debug for RawPublicKeyEntity<'a>
impl<'a> Debug for 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 core::panic::location::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, 'b> Debug for tempfile::Builder<'a, 'b>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b, A> Debug for imbl::nodes::btree::DiffItem<'a, 'b, A>where
A: Debug,
impl<'a, 'b, K, V> Debug for imbl::ord::map::DiffItem<'a, 'b, K, V>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'f> Debug for VaList<'a, 'f>where
'f: 'a,
impl<'a, 'h> Debug for aho_corasick::ahocorasick::FindIter<'a, 'h>
impl<'a, 'h> Debug for aho_corasick::ahocorasick::FindOverlappingIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::TwoIter<'a, 'h>
impl<'a, 'h, A> Debug for aho_corasick::automaton::FindIter<'a, 'h, A>where
A: Debug,
impl<'a, 'h, A> Debug for aho_corasick::automaton::FindOverlappingIter<'a, 'h, A>where
A: Debug,
impl<'a, 'o, T> Debug for ObservableVectorTransactionEntries<'a, 'o, T>
impl<'a, 'text> Debug for unicode_bidi::Paragraph<'a, 'text>
impl<'a, 'text> Debug for unicode_bidi::utf16::Paragraph<'a, 'text>
impl<'a, A> Debug for core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, A, R> Debug for aho_corasick::automaton::StreamFindIter<'a, A, R>
impl<'a, C, T> Debug for Stream<'a, C, T>
impl<'a, E> Debug for DecodeStringError<'a, E>where
E: Debug + RmpReadErr,
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, F> Debug for OffsetIter<'a, F>where
F: Debug,
impl<'a, Fut> Debug for futures_util::stream::futures_unordered::iter::Iter<'a, Fut>
impl<'a, Fut> Debug for futures_util::stream::futures_unordered::iter::IterMut<'a, Fut>
impl<'a, Fut> Debug for IterPinMut<'a, Fut>where
Fut: Debug,
impl<'a, Fut> Debug for IterPinRef<'a, Fut>where
Fut: Debug,
impl<'a, I> Debug for itertools::format::Format<'a, I>
impl<'a, I> Debug for TextMergeStream<'a, I>where
I: Debug,
impl<'a, I> Debug for TextMergeWithOffset<'a, I>where
I: Debug,
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I, A> Debug for alloc::vec::splice::Splice<'a, I, A>
impl<'a, I, E> Debug for ProcessResults<'a, I, E>
impl<'a, I, F> Debug for TakeWhileRef<'a, I, F>
impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F>
impl<'a, I, K, V, S> Debug for indexmap::map::iter::Splice<'a, I, K, V, S>
impl<'a, I, T, S> Debug for indexmap::set::iter::Splice<'a, I, T, S>
impl<'a, K> Debug for hashlink::linked_hash_set::Iter<'a, K>where
K: Debug,
impl<'a, K, F> Debug for std::collections::hash::set::ExtractIf<'a, K, F>
impl<'a, K, V> Debug for phf::map::Entries<'a, K, V>
impl<'a, K, V> Debug for phf::map::Keys<'a, K, V>where
K: Debug,
impl<'a, K, V> Debug for phf::map::Values<'a, K, V>where
V: Debug,
impl<'a, K, V> Debug for phf::ordered_map::Entries<'a, K, V>
impl<'a, K, V> Debug for phf::ordered_map::Keys<'a, K, V>where
K: Debug,
impl<'a, K, V> Debug for phf::ordered_map::Values<'a, K, V>where
V: Debug,
impl<'a, K, V, F> Debug for std::collections::hash::map::ExtractIf<'a, K, V, F>
impl<'a, L> Debug for Okm<'a, L>
impl<'a, P> Debug for MatchIndices<'a, P>
impl<'a, P> Debug for core::str::iter::Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for core::str::iter::RSplit<'a, P>
impl<'a, P> Debug for core::str::iter::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for core::str::iter::Split<'a, P>
impl<'a, P> Debug for core::str::iter::SplitInclusive<'a, P>
impl<'a, P> Debug for core::str::iter::SplitN<'a, P>
impl<'a, P> Debug for SplitTerminator<'a, P>
impl<'a, R> Debug for aho_corasick::ahocorasick::StreamFindIter<'a, R>where
R: Debug,
impl<'a, R> Debug for SeeKRelative<'a, R>where
R: Debug,
impl<'a, R> Debug for FillBuf<'a, R>
impl<'a, R> Debug for Read<'a, R>
impl<'a, R> Debug for ReadExact<'a, R>
impl<'a, R> Debug for ReadLine<'a, R>
impl<'a, R> Debug for ReadToEnd<'a, R>
impl<'a, R> Debug for ReadToString<'a, R>
impl<'a, R> Debug for ReadUntil<'a, R>
impl<'a, R> Debug for ReadVectored<'a, R>
impl<'a, R> Debug for AttachmentDecryptor<'a, R>
impl<'a, R> Debug for AttachmentEncryptor<'a, R>
impl<'a, R> Debug for regex::regex::bytes::ReplacerRef<'a, R>
impl<'a, R> Debug for regex::regex::string::ReplacerRef<'a, R>
impl<'a, R> Debug for ReadRefReader<'a, R>
impl<'a, R, G, T> Debug for MappedReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> Debug for ReentrantMutexGuard<'a, R, G, T>
impl<'a, R, T> Debug for lock_api::mutex::MappedMutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::mutex::MutexGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::MappedRwLockWriteGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
impl<'a, R, T> Debug for lock_api::rwlock::RwLockWriteGuard<'a, R, T>
impl<'a, R, W> Debug for Copy<'a, R, W>
impl<'a, R, W> Debug for CopyBuf<'a, R, W>
impl<'a, R, W> Debug for CopyBufAbortable<'a, R, W>
impl<'a, S> Debug for Seek<'a, S>
impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>
impl<'a, Si, Item> Debug for futures_util::sink::close::Close<'a, Si, Item>
impl<'a, Si, Item> Debug for Feed<'a, Si, Item>
impl<'a, Si, Item> Debug for futures_util::sink::flush::Flush<'a, Si, Item>
impl<'a, Si, Item> Debug for Send<'a, Si, Item>
impl<'a, St> Debug for futures_util::stream::select_all::Iter<'a, St>
impl<'a, St> Debug for futures_util::stream::select_all::IterMut<'a, St>
impl<'a, St> Debug for Next<'a, St>
impl<'a, St> Debug for SelectNextSome<'a, St>
impl<'a, St> Debug for TryNext<'a, St>
impl<'a, T> Debug for http::header::map::Entry<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for SyncGuard<'a, T>
impl<'a, T> Debug for ObservableVectorEntries<'a, T>where
T: Debug,
impl<'a, T> Debug for Cancellation<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for GetAll<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::IterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::Keys<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::OccupiedEntry<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::VacantEntry<'a, T>where
T: Debug,
impl<'a, T> Debug for ValueDrain<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::ValueIter<'a, T>where
T: Debug,
impl<'a, T> Debug for ValueIterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::Values<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::ValuesMut<'a, T>where
T: Debug,
impl<'a, T> Debug for http_body_util::combinators::frame::Frame<'a, T>
impl<'a, T> Debug for DebugListOfRawEventsNoId<'a, T>
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for phf::ordered_set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for phf::set::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for rand::distributions::slice::Slice<'a, T>where
T: Debug,
impl<'a, T> Debug for slab::VacantEntry<'a, T>where
T: Debug,
impl<'a, T> Debug for smallvec::Drain<'a, T>
impl<'a, T> Debug for AsyncFdReadyGuard<'a, T>
impl<'a, T> Debug for AsyncFdReadyMutGuard<'a, T>
impl<'a, T> Debug for tokio::sync::mutex::MappedMutexGuard<'a, T>
impl<'a, T> Debug for tokio::sync::rwlock::read_guard::RwLockReadGuard<'a, T>
impl<'a, T> Debug for tokio::sync::rwlock::write_guard::RwLockWriteGuard<'a, T>
impl<'a, T> Debug for RwLockMappedWriteGuard<'a, T>
impl<'a, T> Debug for tokio::sync::watch::Ref<'a, T>where
T: Debug,
impl<'a, T> Debug for Locked<'a, T>where
T: Debug,
impl<'a, T> Debug for zerocopy::util::ptr::Ptr<'a, T>where
T: 'a + ?Sized,
impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::slice::iter::Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for 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::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T, A> Debug for alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, F> Debug for PoolGuard<'a, T, F>
impl<'a, T, F, 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, S> Debug for hashlink::linked_hash_set::Difference<'a, T, S>
impl<'a, T, S> Debug for hashlink::linked_hash_set::Intersection<'a, T, S>
impl<'a, T, S> Debug for hashlink::linked_hash_set::SymmetricDifference<'a, T, S>
impl<'a, T, S> Debug for hashlink::linked_hash_set::Union<'a, T, S>
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, W> Debug for futures_util::io::close::Close<'a, W>
impl<'a, W> Debug for futures_util::io::flush::Flush<'a, W>
impl<'a, W> Debug for Write<'a, W>
impl<'a, W> Debug for WriteAll<'a, W>
impl<'a, W> Debug for WriteVectored<'a, W>
impl<'a, W> Debug for ExtFieldSerializer<'a, W>where
W: Debug,
impl<'a, W> Debug for ExtSerializer<'a, W>where
W: Debug,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'a, const SIZE: usize> Debug for bitmaps::bitmap::Iter<'a, SIZE>where
BitsImpl<SIZE>: Bits,
impl<'b, 'c, T> Debug for rmp_serde::decode::Reference<'b, 'c, T>
impl<'b, T, const ARRAY_LEN: usize> Debug for scc::bag::IterMut<'b, T, ARRAY_LEN>where
T: Debug,
impl<'c, 'h> Debug for regex::regex::bytes::SubCaptureMatches<'c, 'h>
impl<'c, 'h> Debug for regex::regex::string::SubCaptureMatches<'c, 'h>
impl<'c, 'i, Data> Debug for UnbufferedStatus<'c, 'i, Data>where
Data: Debug,
impl<'conn> Debug for Savepoint<'conn>
impl<'conn> Debug for Transaction<'conn>
impl<'conn, 'sql> Debug for Batch<'conn, 'sql>
impl<'data> Debug for hyper::rt::io::ReadBuf<'data>
impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>
impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>
impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
impl<'e, E, R> Debug for DecoderReader<'e, E, R>
impl<'e, E, W> Debug for EncoderWriter<'e, E, W>
impl<'env, 'source> Debug for Expression<'env, 'source>
impl<'env, 'source> Debug for Template<'env, 'source>
impl<'f> Debug for VaListImpl<'f>
impl<'g, T> Debug for sdd::ptr::Ptr<'g, T>where
T: Debug,
impl<'h> Debug for aho_corasick::util::search::Input<'h>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'h> Debug for regex::regex::bytes::Captures<'h>
impl<'h> Debug for regex::regex::bytes::Match<'h>
impl<'h> Debug for regex::regex::string::Captures<'h>
impl<'h> Debug for regex::regex::string::Match<'h>
impl<'h> Debug for regex_automata::util::iter::Searcher<'h>
impl<'h> Debug for regex_automata::util::search::Input<'h>
impl<'h, 'g, K, V, H> Debug for scc::hash_index::Iter<'h, 'g, K, V, H>
impl<'h, 'n> Debug for memchr::memmem::FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'h, F> Debug for CapturesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for HalfMatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for MatchesIter<'h, F>where
F: Debug,
impl<'h, F> Debug for TryCapturesIter<'h, F>
impl<'h, F> Debug for TryHalfMatchesIter<'h, F>
impl<'h, F> Debug for TryMatchesIter<'h, F>
impl<'h, K, V, H> Debug for scc::hash_cache::Entry<'h, K, V, H>
impl<'h, K, V, H> Debug for scc::hash_index::Entry<'h, K, V, H>
impl<'h, K, V, H> Debug for scc::hash_map::Entry<'h, K, V, H>
impl<'h, K, V, H> Debug for scc::hash_cache::OccupiedEntry<'h, K, V, H>
impl<'h, K, V, H> Debug for scc::hash_cache::VacantEntry<'h, K, V, H>
impl<'h, K, V, H> Debug for scc::hash_index::OccupiedEntry<'h, K, V, H>
impl<'h, K, V, H> Debug for scc::hash_index::Reserve<'h, K, V, H>
impl<'h, K, V, H> Debug for scc::hash_index::VacantEntry<'h, K, V, H>
impl<'h, K, V, H> Debug for scc::hash_map::OccupiedEntry<'h, K, V, H>
impl<'h, K, V, H> Debug for scc::hash_map::Reserve<'h, K, V, H>
impl<'h, K, V, H> Debug for scc::hash_map::VacantEntry<'h, K, V, H>
impl<'headers, 'buf> Debug for httparse::Request<'headers, 'buf>
impl<'headers, 'buf> Debug for httparse::Response<'headers, 'buf>
impl<'input> Debug for RefDefs<'input>
impl<'input, F> Debug for pulldown_cmark::parse::Parser<'input, F>
impl<'k> Debug for KeyMut<'k>
impl<'n> Debug for memchr::memmem::Finder<'n>
impl<'n> Debug for memchr::memmem::FinderRev<'n>
impl<'name, 'bufs, 'control> Debug for MsgHdr<'name, 'bufs, 'control>
impl<'name, 'bufs, 'control> Debug for MsgHdrMut<'name, 'bufs, 'control>
impl<'r> Debug for regex::regex::bytes::CaptureNames<'r>
impl<'r> Debug for regex::regex::string::CaptureNames<'r>
impl<'r, 'c, 'h> Debug for regex_automata::hybrid::regex::FindMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for TryCapturesMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for TryFindMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for regex_automata::nfa::thompson::pikevm::CapturesMatches<'r, 'c, 'h>
impl<'r, 'c, 'h> Debug for regex_automata::nfa::thompson::pikevm::FindMatches<'r, 'c, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::Matches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::Split<'r, 'h>
impl<'r, 'h> Debug for regex::regex::bytes::SplitN<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::CaptureMatches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::Matches<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::Split<'r, 'h>
impl<'r, 'h> Debug for regex::regex::string::SplitN<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::CapturesMatches<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::FindMatches<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::Split<'r, 'h>
impl<'r, 'h> Debug for regex_automata::meta::regex::SplitN<'r, 'h>
impl<'s> Debug for regex::regex::bytes::NoExpand<'s>
impl<'s> Debug for regex::regex::string::NoExpand<'s>
impl<'s, 'h> Debug for aho_corasick::packed::api::FindIter<'s, 'h>
impl<'s, T> Debug for SliceVec<'s, T>where
T: Debug,
impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>
impl<'source> Debug for Environment<'source>
impl<'stmt> Debug for Row<'stmt>
Debug Row
like an ordered Map<Result<&str>, Result<(Type, ValueRef)>>
with column name as key except that for Type::Blob
only its size is
printed (not its content).
impl<'t, 'g, K, V> Debug for scc::tree_index::Iter<'t, 'g, K, V>
impl<'t, 'g, K, V, Q, R> Debug for scc::tree_index::Range<'t, 'g, K, V, Q, R>where
R: RangeBounds<Q>,
Q: ?Sized,
impl<'template, 'env> Debug for minijinja::vm::state::State<'template, 'env>
impl<'text> Debug for unicode_bidi::BidiInfo<'text>
impl<'text> Debug for unicode_bidi::InitialInfo<'text>
impl<'text> Debug for unicode_bidi::ParagraphBidiInfo<'text>
impl<'text> Debug for Utf8IndexLenIter<'text>
impl<'text> Debug for unicode_bidi::utf16::BidiInfo<'text>
impl<'text> Debug for unicode_bidi::utf16::InitialInfo<'text>
impl<'text> Debug for unicode_bidi::utf16::ParagraphBidiInfo<'text>
impl<'text> Debug for Utf16CharIndexIter<'text>
impl<'text> Debug for Utf16CharIter<'text>
impl<'text> Debug for Utf16IndexLenIter<'text>
impl<A> Debug for TinyVec<A>
impl<A> Debug for TinyVecIterator<A>
impl<A> Debug for RawMap<A>
impl<A> Debug for anymap2::Map<A>
impl<A> Debug for OrdSet<A>
impl<A> Debug for Vector<A>where
A: Debug,
impl<A> Debug for itertools::repeatn::RepeatN<A>where
A: Debug,
impl<A> Debug for Aad<A>where
A: Debug,
impl<A> Debug for EnumAccessDeserializer<A>where
A: Debug,
impl<A> Debug for MapAccessDeserializer<A>where
A: Debug,
impl<A> Debug for SeqAccessDeserializer<A>where
A: Debug,
impl<A> Debug for smallvec::IntoIter<A>
impl<A> Debug for SmallVec<A>
impl<A> Debug for tinyvec::arrayvec::ArrayVec<A>
impl<A> Debug for ArrayVecIterator<A>
impl<A> Debug for core::iter::sources::repeat::Repeat<A>where
A: Debug,
impl<A> Debug for core::iter::sources::repeat_n::RepeatN<A>where
A: Debug,
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for IterRange<A>where
A: Debug,
impl<A> Debug for IterRangeFrom<A>where
A: Debug,
impl<A> Debug for IterRangeInclusive<A>where
A: Debug,
impl<A, B> Debug for futures_util::future::either::Either<A, B>
impl<A, B> Debug for EitherOrBoth<A, B>
impl<A, B> Debug for futures_util::future::select::Select<A, B>
impl<A, B> Debug for TrySelect<A, B>
impl<A, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for core::iter::adapters::zip::Zip<A, B>
impl<A, K> Debug for ruma_common::identifiers::key_id::KeyId<A, K>
impl<A, K> Debug for OwnedKeyId<A, K>
impl<A, S> Debug for imbl::hash::set::HashSet<A, S>
impl<A, T> Debug for InlineArray<A, T>where
A: Debug,
impl<A, const N: usize> Debug for Chunk<A, N>where
A: Debug,
impl<A, const N: usize> Debug for SparseChunk<A, N>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for bitflags::traits::Flag<B>where
B: Debug,
impl<B> Debug for bytes::buf::reader::Reader<B>where
B: Debug,
impl<B> Debug for Writer<B>where
B: Debug,
impl<B> Debug for Collected<B>where
B: Debug,
impl<B> Debug for Limited<B>where
B: Debug,
impl<B> Debug for BodyDataStream<B>where
B: Debug,
impl<B> Debug for BodyStream<B>where
B: Debug,
impl<B> Debug for SendRequest<B>
impl<B> Debug for ring::agreement::UnparsedPublicKey<B>
impl<B> Debug for PublicKeyComponents<B>where
B: Debug,
impl<B> Debug for ring::signature::UnparsedPublicKey<B>
impl<B> Debug for 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<B, F> Debug for http_body_util::combinators::map_err::MapErr<B, F>where
B: Debug,
impl<B, F> Debug for MapFrame<B, F>where
B: Debug,
impl<B, T> Debug for AlignAs<B, T>
impl<BlockSize, Kind> Debug for BlockBuffer<BlockSize, Kind>where
BlockSize: Debug + ArrayLength<u8> + IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>,
Kind: Debug + BufferKind,
<BlockSize as IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>>::Output: NonZero,
impl<C> Debug for CreatePoolError<C>where
C: Debug,
impl<C> Debug for RawSyncOrStrippedState<C>where
C: Debug + StaticStateEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent,
<C as StaticStateEventContent>::PossiblyRedacted: Debug,
impl<C> Debug for SyncOrStrippedState<C>where
C: Debug + StaticStateEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent + Debug + Clone,
<C as StaticStateEventContent>::PossiblyRedacted: Debug,
impl<C> Debug for MinimalStateEvent<C>where
C: Debug + StateEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent + Debug,
impl<C> Debug for FullStateEventContent<C>where
C: Debug + StaticStateEventContent + RedactContent,
<C as StaticStateEventContent>::PossiblyRedacted: Debug,
<C as RedactContent>::Redacted: Debug,
impl<C> Debug for MessageLikeEvent<C>where
C: Debug + MessageLikeEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedMessageLikeEventContent + Debug,
impl<C> Debug for StateEvent<C>where
C: Debug + StaticStateEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent + Debug,
impl<C> Debug for SyncMessageLikeEvent<C>where
C: Debug + MessageLikeEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedMessageLikeEventContent + Debug,
impl<C> Debug for SyncStateEvent<C>where
C: Debug + StaticStateEventContent + RedactContent,
<C as RedactContent>::Redacted: RedactedStateEventContent + Debug,
impl<C> Debug for ruma_events::room::message::relation::Relation<C>where
C: Debug,
impl<C> Debug for backoff::exponential::ExponentialBackoff<C>where
C: Debug,
impl<C> Debug for ExponentialBackoffBuilder<C>where
C: Debug,
impl<C> Debug for Decryptor<C>
impl<C> Debug for Encryptor<C>
impl<C> Debug for OriginalMinimalStateEvent<C>where
C: Debug + StateEventContent,
impl<C> Debug for RedactedMinimalStateEvent<C>where
C: Debug + RedactedStateEventContent,
impl<C> Debug for matrix_sdk_crypto::types::events::olm_v1::DecryptedOlmV1Event<C>
impl<C> Debug for matrix_sdk_crypto::types::events::room::Event<C>
impl<C> Debug for matrix_sdk_crypto::types::events::to_device::ToDeviceEvent<C>
impl<C> Debug for BinaryConfig<C>where
C: Debug,
impl<C> Debug for HumanReadableConfig<C>where
C: Debug,
impl<C> Debug for StructMapConfig<C>where
C: Debug,
impl<C> Debug for StructTupleConfig<C>where
C: Debug,
impl<C> Debug for DecryptedMegolmV1Event<C>where
C: Debug + MessageLikeEventContent,
impl<C> Debug for ruma_events::kinds::DecryptedOlmV1Event<C>where
C: Debug + MessageLikeEventContent,
impl<C> Debug for EphemeralRoomEvent<C>where
C: Debug + EphemeralRoomEventContent,
impl<C> Debug for GlobalAccountDataEvent<C>where
C: Debug + GlobalAccountDataEventContent,
impl<C> Debug for InitialStateEvent<C>
impl<C> Debug for OriginalMessageLikeEvent<C>where
C: Debug + MessageLikeEventContent,
impl<C> Debug for OriginalStateEvent<C>where
C: Debug + StaticStateEventContent,
<C as StateEventContent>::StateKey: Debug,
<C as StaticStateEventContent>::Unsigned: Debug,
impl<C> Debug for OriginalSyncMessageLikeEvent<C>where
C: Debug + MessageLikeEventContent,
impl<C> Debug for OriginalSyncStateEvent<C>where
C: Debug + StaticStateEventContent,
<C as StateEventContent>::StateKey: Debug,
<C as StaticStateEventContent>::Unsigned: Debug,
impl<C> Debug for RedactedMessageLikeEvent<C>where
C: Debug + RedactedMessageLikeEventContent,
impl<C> Debug for RedactedStateEvent<C>
impl<C> Debug for RedactedSyncMessageLikeEvent<C>where
C: Debug + RedactedMessageLikeEventContent,
impl<C> Debug for RedactedSyncStateEvent<C>
impl<C> Debug for RoomAccountDataEvent<C>where
C: Debug + RoomAccountDataEventContent,
impl<C> Debug for StrippedStateEvent<C>where
C: Debug + PossiblyRedactedStateEventContent,
<C as PossiblyRedactedStateEventContent>::StateKey: Debug,
impl<C> Debug for SyncEphemeralRoomEvent<C>where
C: Debug + EphemeralRoomEventContent,
impl<C> Debug for ruma_events::kinds::ToDeviceEvent<C>where
C: Debug + ToDeviceEventContent,
impl<C> Debug for ruma_events::relation::Replacement<C>where
C: Debug,
impl<C> Debug for MessageLikeUnsigned<C>where
C: Debug + MessageLikeEventContent,
impl<C> Debug for StateUnsigned<C>where
C: Debug + PossiblyRedactedStateEventContent,
impl<C> Debug for ThreadLocalContext<C>
impl<C> Debug for ContextError<C>where
C: Debug,
impl<C, B> Debug for hyper_util::client::legacy::client::Client<C, B>
impl<C, B> Debug for ruma_common::serde::base64::Base64<C, B>
impl<C, F> Debug for CtrCore<C, F>where
C: BlockEncryptMut + BlockCipher + AlgorithmName,
F: CtrFlavor<<C as BlockSizeUser>::BlockSize>,
impl<C, T> Debug for StreamOwned<C, T>
impl<D> Debug for HmacCore<D>where
D: CoreProxy,
<D as CoreProxy>::Core: HashMarker + AlgorithmName + UpdateCore + FixedOutputCore<BufferKind = Eager> + BufferKindUser + Default + Clone,
<<D as CoreProxy>::Core as BlockSizeUser>::BlockSize: IsLess<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>,
<<<D as CoreProxy>::Core 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<D> Debug for SimpleHmac<D>
impl<D> Debug for http_body_util::empty::Empty<D>
impl<D> Debug for Full<D>where
D: Debug,
impl<D, E> Debug for BoxBody<D, E>
impl<D, E> Debug for UnsyncBoxBody<D, E>
impl<D, F, T, S> Debug for DistMap<D, F, T, S>
impl<D, R, T> Debug for DistIter<D, R, T>
impl<Data> Debug for ConnectionState<'_, '_, Data>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for backoff::error::Error<E>where
E: Debug,
impl<E> Debug for PoolError<E>where
E: Debug,
impl<E> Debug for RecycleError<E>where
E: Debug,
impl<E> Debug for HookError<E>where
E: Debug,
impl<E> Debug for Err<E>where
E: Debug,
impl<E> Debug for NumValueReadError<E>where
E: Debug + RmpReadErr,
impl<E> Debug for ValueReadError<E>where
E: Debug + RmpReadErr,
impl<E> Debug for ValueWriteError<E>where
E: Debug + RmpWriteErr,
impl<E> Debug for FromHttpResponseError<E>where
E: Debug,
impl<E> Debug for ErrMode<E>where
E: Debug,
impl<E> Debug for MarkerReadError<E>where
E: Debug + RmpReadErr,
impl<E> Debug for BundledMessageLikeRelations<E>where
E: Debug,
impl<E> Debug for BoolDeserializer<E>
impl<E> Debug for CharDeserializer<E>
impl<E> Debug for F32Deserializer<E>
impl<E> Debug for F64Deserializer<E>
impl<E> Debug for I8Deserializer<E>
impl<E> Debug for I16Deserializer<E>
impl<E> Debug for I32Deserializer<E>
impl<E> Debug for I64Deserializer<E>
impl<E> Debug for I128Deserializer<E>
impl<E> Debug for IsizeDeserializer<E>
impl<E> Debug for StringDeserializer<E>
impl<E> Debug for U8Deserializer<E>
impl<E> Debug for U16Deserializer<E>
impl<E> Debug for U32Deserializer<E>
impl<E> Debug for U64Deserializer<E>
impl<E> Debug for U128Deserializer<E>
impl<E> Debug for UnitDeserializer<E>
impl<E> Debug for UsizeDeserializer<E>
impl<E> Debug for Report<E>
impl<E, K> Debug for ruma_common::identifiers::signatures::Signatures<E, K>
impl<F> Debug for fallible_iterator::FromFn<F>where
F: Debug,
impl<F> Debug for futures_util::future::future::Flatten<F>
impl<F> Debug for FlattenStream<F>
impl<F> Debug for futures_util::future::future::IntoStream<F>
impl<F> Debug for JoinAll<F>
impl<F> Debug for futures_util::future::lazy::Lazy<F>where
F: Debug,
impl<F> Debug for OptionFuture<F>where
F: Debug,
impl<F> Debug for futures_util::future::poll_fn::PollFn<F>
impl<F> Debug for TryJoinAll<F>
impl<F> Debug for futures_util::stream::poll_fn::PollFn<F>
impl<F> Debug for futures_util::stream::repeat_with::RepeatWith<F>where
F: Debug,
impl<F> Debug for RepeatCall<F>
impl<F> Debug for NamedTempFile<F>
impl<F> Debug for tempfile::file::PersistError<F>
impl<F> Debug for FormatterFn<F>
impl<F> Debug for core::future::poll_fn::PollFn<F>
impl<F> Debug for core::iter::sources::from_fn::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for core::iter::sources::repeat_with::RepeatWith<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<F, A> Debug for Tendril<F, A>
impl<Fut1, Fut2> Debug for futures_util::future::join::Join<Fut1, Fut2>
impl<Fut1, Fut2> Debug for futures_util::future::try_future::TryFlatten<Fut1, Fut2>where
TryFlatten<Fut1, Fut2>: Debug,
impl<Fut1, Fut2> Debug for TryJoin<Fut1, Fut2>
impl<Fut1, Fut2, F> Debug for futures_util::future::future::Then<Fut1, Fut2, F>
impl<Fut1, Fut2, F> Debug for futures_util::future::try_future::AndThen<Fut1, Fut2, F>
impl<Fut1, Fut2, F> Debug for futures_util::future::try_future::OrElse<Fut1, Fut2, F>
impl<Fut1, Fut2, Fut3> Debug for Join3<Fut1, Fut2, Fut3>
impl<Fut1, Fut2, Fut3> Debug for TryJoin3<Fut1, Fut2, Fut3>
impl<Fut1, Fut2, Fut3, Fut4> Debug for Join4<Fut1, Fut2, Fut3, Fut4>
impl<Fut1, Fut2, Fut3, Fut4> Debug for TryJoin4<Fut1, Fut2, Fut3, Fut4>where
Fut1: TryFuture + Debug,
<Fut1 as TryFuture>::Ok: Debug,
<Fut1 as TryFuture>::Error: Debug,
Fut2: TryFuture + Debug,
<Fut2 as TryFuture>::Ok: Debug,
<Fut2 as TryFuture>::Error: Debug,
Fut3: TryFuture + Debug,
<Fut3 as TryFuture>::Ok: Debug,
<Fut3 as TryFuture>::Error: Debug,
Fut4: TryFuture + Debug,
<Fut4 as TryFuture>::Ok: Debug,
<Fut4 as TryFuture>::Error: Debug,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Debug for Join5<Fut1, Fut2, Fut3, Fut4, Fut5>
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Debug for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5>where
Fut1: TryFuture + Debug,
<Fut1 as TryFuture>::Ok: Debug,
<Fut1 as TryFuture>::Error: Debug,
Fut2: TryFuture + Debug,
<Fut2 as TryFuture>::Ok: Debug,
<Fut2 as TryFuture>::Error: Debug,
Fut3: TryFuture + Debug,
<Fut3 as TryFuture>::Ok: Debug,
<Fut3 as TryFuture>::Error: Debug,
Fut4: TryFuture + Debug,
<Fut4 as TryFuture>::Ok: Debug,
<Fut4 as TryFuture>::Error: Debug,
Fut5: TryFuture + Debug,
<Fut5 as TryFuture>::Ok: Debug,
<Fut5 as TryFuture>::Error: Debug,
impl<Fut> Debug for MaybeDone<Fut>
impl<Fut> Debug for TryMaybeDone<Fut>
impl<Fut> Debug for futures_util::future::future::catch_unwind::CatchUnwind<Fut>where
Fut: Debug,
impl<Fut> Debug for futures_util::future::future::fuse::Fuse<Fut>where
Fut: Debug,
impl<Fut> Debug for Remote<Fut>
impl<Fut> Debug for NeverError<Fut>
impl<Fut> Debug for UnitError<Fut>
impl<Fut> Debug for futures_util::future::select_all::SelectAll<Fut>where
Fut: Debug,
impl<Fut> Debug for SelectOk<Fut>where
Fut: Debug,
impl<Fut> Debug for IntoFuture<Fut>where
Fut: Debug,
impl<Fut> Debug for TryFlattenStream<Fut>
impl<Fut> Debug for FuturesOrdered<Fut>where
Fut: Future,
impl<Fut> Debug for futures_util::stream::futures_unordered::iter::IntoIter<Fut>
impl<Fut> Debug for FuturesUnordered<Fut>
impl<Fut> Debug for futures_util::stream::once::Once<Fut>where
Fut: Debug,
impl<Fut, E> Debug for futures_util::future::try_future::ErrInto<Fut, E>
impl<Fut, E> Debug for OkInto<Fut, E>
impl<Fut, F> Debug for futures_util::future::future::Inspect<Fut, F>where
Map<Fut, InspectFn<F>>: Debug,
impl<Fut, F> Debug for futures_util::future::future::Map<Fut, F>where
Map<Fut, F>: Debug,
impl<Fut, F> Debug for futures_util::future::try_future::InspectErr<Fut, F>
impl<Fut, F> Debug for futures_util::future::try_future::InspectOk<Fut, F>
impl<Fut, F> Debug for futures_util::future::try_future::MapErr<Fut, F>
impl<Fut, F> Debug for futures_util::future::try_future::MapOk<Fut, F>
impl<Fut, F> Debug for UnwrapOrElse<Fut, F>
impl<Fut, F, G> Debug for MapOkOrElse<Fut, F, G>
impl<Fut, Si> Debug for FlattenSink<Fut, Si>where
TryFlatten<Fut, Si>: Debug,
impl<Fut, T> Debug for MapInto<Fut, T>
impl<H> Debug for BuildHasherDefault<H>
impl<H, I> Debug for Hkdf<H, I>
impl<H, I> Debug for HkdfExtract<H, I>
impl<Handle> Debug for TokenizerResult<Handle>where
Handle: Debug,
impl<Handle> Debug for TokenSinkResult<Handle>where
Handle: Debug,
impl<I> Debug for DelayedFormat<I>where
I: Debug,
impl<I> Debug for fallible_iterator::Cloned<I>where
I: Debug,
impl<I> Debug for Convert<I>where
I: Debug,
impl<I> Debug for fallible_iterator::Cycle<I>where
I: Debug,
impl<I> Debug for fallible_iterator::Enumerate<I>where
I: Debug,
impl<I> Debug for fallible_iterator::Fuse<I>where
I: Debug,
impl<I> Debug for IntoFallible<I>where
I: Debug,
impl<I> Debug for Iterator<I>where
I: Debug,
impl<I> Debug for fallible_iterator::Peekable<I>
impl<I> Debug for fallible_iterator::Rev<I>where
I: Debug,
impl<I> Debug for fallible_iterator::Skip<I>where
I: Debug,
impl<I> Debug for fallible_iterator::StepBy<I>where
I: Debug,
impl<I> Debug for fallible_iterator::Take<I>where
I: Debug,
impl<I> Debug for futures_util::stream::iter::Iter<I>where
I: Debug,
impl<I> Debug for MultiProduct<I>
impl<I> Debug for PutBack<I>
impl<I> Debug for Step<I>where
I: Debug,
impl<I> Debug for WhileSome<I>where
I: Debug,
impl<I> Debug for Combinations<I>
impl<I> Debug for CombinationsWithReplacement<I>
impl<I> Debug for ExactlyOneError<I>
impl<I> Debug for GroupingMap<I>where
I: Debug,
impl<I> Debug for MultiPeek<I>
impl<I> Debug for PeekNth<I>
impl<I> Debug for Permutations<I>
impl<I> Debug for Powerset<I>
impl<I> Debug for PutBackN<I>
impl<I> Debug for RcIter<I>where
I: Debug,
impl<I> Debug for Tee<I>
impl<I> Debug for Unique<I>
impl<I> Debug for WithPosition<I>
impl<I> Debug for nom::error::Error<I>where
I: Debug,
impl<I> Debug for VerboseError<I>where
I: Debug,
impl<I> Debug for ParamsFromIter<I>where
I: Debug,
impl<I> Debug for tokio_stream::iter::Iter<I>where
I: Debug,
impl<I> Debug for InputError<I>
impl<I> Debug for TreeErrorBase<I>where
I: Debug,
impl<I> Debug for Located<I>where
I: Debug,
impl<I> Debug for Partial<I>where
I: Debug,
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for core::iter::adapters::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for Copied<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::cycle::Cycle<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::fuse::Fuse<I>where
I: Debug,
impl<I> Debug for Intersperse<I>
impl<I> Debug for core::iter::adapters::peekable::Peekable<I>
impl<I> Debug for core::iter::adapters::skip::Skip<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<I, C> Debug for TreeError<I, C>
impl<I, C> Debug for TreeErrorFrame<I, C>
impl<I, C> Debug for TreeErrorContext<I, C>
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, E> Debug for winnow::error::ParseError<I, E>
impl<I, ElemF> Debug for itertools::intersperse::IntersperseWith<I, ElemF>
impl<I, F> Debug for fallible_iterator::Filter<I, F>
impl<I, F> Debug for fallible_iterator::FilterMap<I, F>
impl<I, F> Debug for fallible_iterator::Inspect<I, F>
impl<I, F> Debug for fallible_iterator::Map<I, F>where
I: Debug,
impl<I, F> Debug for fallible_iterator::MapErr<I, F>
impl<I, F> Debug for Batching<I, F>where
I: Debug,
impl<I, F> Debug for FilterMapOk<I, F>where
I: Debug,
impl<I, F> Debug for FilterOk<I, F>where
I: Debug,
impl<I, F> Debug for Positions<I, F>where
I: Debug,
impl<I, F> Debug for itertools::adaptors::Update<I, F>where
I: Debug,
impl<I, F> Debug for KMergeBy<I, F>
impl<I, F> Debug for PadUsing<I, F>where
I: Debug,
impl<I, F> Debug for TakeWhileInclusive<I, F>
impl<I, F> Debug for core::iter::adapters::filter_map::FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::inspect::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::map::Map<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for core::iter::adapters::intersperse::IntersperseWith<I, G>
impl<I, J> Debug for Diff<I, J>
impl<I, J> Debug for Interleave<I, J>
impl<I, J> Debug for InterleaveShortest<I, J>
impl<I, J> Debug for Product<I, J>
impl<I, J> Debug for ConsTuples<I, J>
impl<I, J> Debug for ZipEq<I, J>
impl<I, J, F> Debug for MergeBy<I, J, F>
impl<I, P> Debug for fallible_iterator::SkipWhile<I, P>
impl<I, P> Debug for fallible_iterator::TakeWhile<I, P>
impl<I, P> Debug for core::iter::adapters::filter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for core::iter::adapters::map_while::MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for core::iter::adapters::skip_while::SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for core::iter::adapters::take_while::TakeWhile<I, P>where
I: Debug,
impl<I, S> Debug for Stateful<I, S>
impl<I, St, F> Debug for fallible_iterator::Scan<I, St, F>
impl<I, St, F> Debug for core::iter::adapters::scan::Scan<I, St, F>
impl<I, T> Debug for TupleCombinations<I, T>
impl<I, T> Debug for CircularTupleWindows<I, T>
impl<I, T> Debug for TupleWindows<I, T>
impl<I, T> Debug for Tuples<I, T>where
I: Debug + Iterator<Item = <T as TupleCollect>::Item>,
T: Debug + HomogeneousTuple,
<T as TupleCollect>::Buffer: Debug,
impl<I, T, E> Debug for FlattenOk<I, T, E>where
I: Iterator<Item = Result<T, E>> + Debug,
T: IntoIterator,
<T as IntoIterator>::IntoIter: Debug,
impl<I, U> Debug for core::iter::adapters::flatten::Flatten<I>
impl<I, U, F> Debug for fallible_iterator::FlatMap<I, U, F>where
I: Debug,
U: Debug + IntoFallibleIterator,
F: Debug,
<U as IntoFallibleIterator>::IntoFallibleIter: Debug,
impl<I, U, F> Debug for core::iter::adapters::flatten::FlatMap<I, U, F>
impl<I, V, F> Debug for UniqueBy<I, V, F>
impl<I, const N: usize> Debug for core::iter::adapters::array_chunks::ArrayChunks<I, N>
impl<IO> Debug for tokio_rustls::client::TlsStream<IO>where
IO: Debug,
impl<IO> Debug for tokio_rustls::server::TlsStream<IO>where
IO: 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 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 hashbrown::set::Iter<'_, K>where
K: Debug,
impl<K> Debug for hashbrown::set::Iter<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Drain<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::IntoIter<K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for hashbrown::set::Drain<'_, K, A>where
K: Debug,
A: Allocator,
impl<K, A> Debug for hashbrown::set::Drain<'_, K, A>where
K: Debug,
A: Allocator,
impl<K, A> Debug for hashbrown::set::IntoIter<K, A>where
K: Debug,
A: Allocator,
impl<K, A> Debug for hashbrown::set::IntoIter<K, A>where
K: Debug,
A: Allocator,
impl<K, H> Debug for scc::hash_set::HashSet<K, H>
impl<K, Q, V, S, A> Debug for hashbrown::map::EntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for hashbrown::map::EntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for OccupiedEntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for hashbrown::map::VacantEntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for hashbrown::map::VacantEntryRef<'_, '_, K, Q, V, S, A>
impl<K, V> Debug for indexmap::map::core::entry::Entry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for hashbrown::map::Iter<'_, K, V>
impl<K, V> Debug for hashbrown::map::Iter<'_, K, V>
impl<K, V> Debug for hashbrown::map::IterMut<'_, K, V>
impl<K, V> Debug for hashbrown::map::IterMut<'_, K, V>
impl<K, V> Debug for hashbrown::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for hashbrown::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for hashbrown::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashbrown::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashbrown::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashbrown::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashlink::linked_hash_map::Drain<'_, K, V>
impl<K, V> Debug for hashlink::linked_hash_map::IntoIter<K, V>
impl<K, V> Debug for hashlink::linked_hash_map::Iter<'_, K, V>
impl<K, V> Debug for hashlink::linked_hash_map::IterMut<'_, K, V>
impl<K, V> Debug for hashlink::linked_hash_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for hashlink::linked_hash_map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for hashlink::linked_hash_map::ValuesMut<'_, K, V>
impl<K, V> Debug for OrdMap<K, V>
impl<K, V> Debug for IndexedEntry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::entry::OccupiedEntry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::entry::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::Drain<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::IntoIter<K, V>
impl<K, V> Debug for indexmap::map::iter::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::iter::Iter<'_, K, V>
impl<K, V> Debug for IterMut2<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::IterMut<'_, K, V>
impl<K, V> Debug for indexmap::map::iter::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::iter::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::iter::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::slice::Slice<K, V>
impl<K, V> Debug for phf::map::Map<K, V>
impl<K, V> Debug for OrderedMap<K, V>
impl<K, V> Debug for TreeIndex<K, V>
impl<K, V> Debug for StreamMap<K, V>
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Drain<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for hashbrown::map::Drain<'_, K, V, A>
impl<K, V, A> Debug for hashbrown::map::Drain<'_, K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoIter<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoIter<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for hashbrown::map::IntoValues<K, V, A>where
V: Debug,
A: Allocator,
impl<K, V, A> Debug for hashbrown::map::IntoValues<K, V, A>where
V: Debug,
A: Allocator,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for 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, H> Debug for HashCache<K, V, H>
impl<K, V, H> Debug for HashIndex<K, V, H>
impl<K, V, H> Debug for scc::hash_map::HashMap<K, V, H>
impl<K, V, S> Debug for hashlink::linked_hash_map::Entry<'_, K, V, S>
impl<K, V, S> Debug for hashlink::linked_hash_map::RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for indexmap::map::core::raw_entry_v1::RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for LinkedHashMap<K, V, S>
impl<K, V, S> Debug for hashlink::linked_hash_map::OccupiedEntry<'_, K, V, S>
impl<K, V, S> Debug for hashlink::linked_hash_map::RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for hashlink::linked_hash_map::RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for hashlink::linked_hash_map::RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for hashlink::linked_hash_map::RawVacantEntryMut<'_, K, V, S>
impl<K, V, S> Debug for hashlink::linked_hash_map::VacantEntry<'_, K, V, S>where
K: Debug,
impl<K, V, S> Debug for LruCache<K, V, S>
impl<K, V, S> Debug for imbl::hash::map::HashMap<K, V, S>
impl<K, V, S> Debug for indexmap::map::core::raw_entry_v1::RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for indexmap::map::core::raw_entry_v1::RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for indexmap::map::core::raw_entry_v1::RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for indexmap::map::core::raw_entry_v1::RawVacantEntryMut<'_, K, V, S>
impl<K, V, S> Debug for IndexMap<K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::HashMap<K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for std::collections::hash::map::RawVacantEntryMut<'_, K, V, S>
impl<K, V, S, A> Debug for hashbrown::map::Entry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::Entry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::RawEntryMut<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::HashMap<K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::HashMap<K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedEntry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedEntry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedError<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::OccupiedError<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::RawEntryBuilder<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for hashbrown::map::RawEntryBuilderMut<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for hashbrown::map::RawOccupiedEntryMut<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::RawVacantEntryMut<'_, K, V, S, A>where
A: Allocator,
impl<K, V, S, A> Debug for hashbrown::map::VacantEntry<'_, K, V, S, A>where
K: Debug,
A: Allocator,
impl<K, V, S, A> Debug for hashbrown::map::VacantEntry<'_, K, V, S, A>where
K: Debug,
A: Allocator,
impl<L, R> Debug for either::Either<L, R>
impl<L, R> Debug for http_body_util::either::Either<L, R>
impl<L, R> Debug for tokio_util::either::Either<L, R>
impl<L, R> Debug for TypeCmp<L, R>
impl<L, R> Debug for IterEither<L, R>
impl<L, R> Debug for TypeEq<L, R>
impl<L, R> Debug for TypeNe<L, R>
impl<L, R, W> Debug for MetaBaseTypeWit<L, R, W>
impl<M> Debug for Hook<M>where
M: Manager,
impl<M> Debug for Object<M>
impl<M, W> Debug for PoolBuilder<M, W>
impl<M, W> Debug for deadpool::managed::Pool<M, W>
impl<N> Debug for OpeningKey<N>where
N: NonceSequence,
impl<N> Debug for SealingKey<N>where
N: NonceSequence,
impl<O> Debug for F32<O>where
O: ByteOrder,
impl<O> Debug for F64<O>where
O: ByteOrder,
impl<O> Debug for zerocopy::byteorder::I16<O>where
O: ByteOrder,
impl<O> Debug for zerocopy::byteorder::I32<O>where
O: ByteOrder,
impl<O> Debug for zerocopy::byteorder::I64<O>where
O: ByteOrder,
impl<O> Debug for zerocopy::byteorder::I128<O>where
O: ByteOrder,
impl<O> Debug for zerocopy::byteorder::U16<O>where
O: ByteOrder,
impl<O> Debug for zerocopy::byteorder::U32<O>where
O: ByteOrder,
impl<O> Debug for zerocopy::byteorder::U64<O>where
O: ByteOrder,
impl<O> Debug for zerocopy::byteorder::U128<O>where
O: ByteOrder,
impl<Opcode> Debug for NoArg<Opcode>where
Opcode: CompileTimeOpcode,
impl<Opcode, Input> Debug for Setter<Opcode, Input>where
Opcode: CompileTimeOpcode,
Input: Debug,
impl<Opcode, Output> Debug for Getter<Opcode, Output>where
Opcode: CompileTimeOpcode,
impl<PR> Debug for Paginator<PR>where
PR: PaginableRoom,
impl<Ptr> Debug for core::pin::Pin<Ptr>where
Ptr: Debug,
impl<Public, Private> Debug for KeyPairComponents<Public, Private>where
PublicKeyComponents<Public>: Debug,
impl<R> Debug for async_compression::tokio::bufread::GzipDecoder<R>where
R: Debug,
impl<R> Debug for async_compression::tokio::bufread::GzipEncoder<R>where
R: Debug,
impl<R> Debug for CrcReader<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibEncoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibEncoder<R>where
R: Debug,
impl<R> Debug for futures_util::io::buf_reader::BufReader<R>where
R: Debug,
impl<R> Debug for futures_util::io::lines::Lines<R>where
R: Debug,
impl<R> Debug for futures_util::io::take::Take<R>where
R: Debug,
impl<R> Debug for HttpConnector<R>where
R: Debug,
impl<R> Debug for RoomIdentityState<R>where
R: Debug + RoomIdentityProvider,
impl<R> Debug for ReadRng<R>where
R: Debug,
impl<R> Debug for BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for ReadReader<R>
impl<R> Debug for tokio::io::util::buf_reader::BufReader<R>where
R: Debug,
impl<R> Debug for tokio::io::util::lines::Lines<R>where
R: Debug,
impl<R> Debug for tokio::io::util::split::Split<R>where
R: Debug,
impl<R> Debug for tokio::io::util::take::Take<R>where
R: Debug,
impl<R> Debug for ReaderStream<R>where
R: Debug,
impl<R> Debug for std::io::buffered::bufreader::BufReader<R>
impl<R> Debug for std::io::Bytes<R>where
R: Debug,
impl<R, C> Debug for Deserializer<R, C>
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>
impl<R, T> Debug for lock_api::mutex::Mutex<R, T>
impl<R, T> Debug for lock_api::rwlock::RwLock<R, T>
impl<R, W> Debug for tokio::io::join::Join<R, W>
impl<RW> Debug for BufStream<RW>where
RW: Debug,
impl<S> Debug for Host<S>where
S: Debug,
impl<S> Debug for BlockingStream<S>
impl<S> Debug for futures_util::stream::poll_immediate::PollImmediate<S>where
S: Debug,
impl<S> Debug for SplitStream<S>where
S: Debug,
impl<S> Debug for StreamBody<S>where
S: Debug,
impl<S> Debug for CrossProcessStoreLock<S>
impl<S> Debug for ChunksTimeout<S>
impl<S> Debug for tokio_stream::stream_ext::timeout::Timeout<S>where
S: Debug,
impl<S> Debug for TimeoutRepeating<S>where
S: Debug,
impl<S> Debug for CopyToBytes<S>where
S: Debug,
impl<S> Debug for SinkWriter<S>where
S: Debug,
impl<S> Debug for ImDocument<S>where
S: Debug,
impl<S> Debug for Ascii<S>where
S: Debug,
impl<S> Debug for UniCase<S>where
S: Debug,
impl<S, B> Debug for StreamReader<S, B>
impl<S, Item> Debug for SplitSink<S, Item>
impl<Si1, Si2> Debug for Fanout<Si1, Si2>
impl<Si, F> Debug for SinkMapErr<Si, F>
impl<Si, Item> Debug for Buffer<Si, Item>
impl<Si, Item, E> Debug for SinkErrInto<Si, Item, E>
impl<Si, Item, U, Fut, F> Debug for With<Si, Item, U, Fut, F>
impl<Si, Item, U, St, F> Debug for WithFlatMap<Si, Item, U, St, F>
impl<Si, St> Debug for SendAll<'_, Si, St>
impl<Side, State> Debug for ConfigBuilder<Side, State>where
Side: ConfigSide,
State: Debug,
impl<St1, St2> Debug for futures_util::stream::select::Select<St1, St2>
impl<St1, St2> Debug for futures_util::stream::stream::chain::Chain<St1, St2>
impl<St1, St2> Debug for futures_util::stream::stream::zip::Zip<St1, St2>
impl<St1, St2, Clos, State> Debug for SelectWithStrategy<St1, St2, Clos, State>
impl<St> Debug for futures_util::stream::select_all::IntoIter<St>
impl<St> Debug for futures_util::stream::select_all::SelectAll<St>where
St: Debug,
impl<St> Debug for BufferUnordered<St>
impl<St> Debug for Buffered<St>
impl<St> Debug for futures_util::stream::stream::catch_unwind::CatchUnwind<St>where
St: Debug,
impl<St> Debug for futures_util::stream::stream::chunks::Chunks<St>
impl<St> Debug for futures_util::stream::stream::concat::Concat<St>
impl<St> Debug for Count<St>where
St: Debug,
impl<St> Debug for futures_util::stream::stream::cycle::Cycle<St>where
St: Debug,
impl<St> Debug for futures_util::stream::stream::enumerate::Enumerate<St>where
St: Debug,
impl<St> Debug for futures_util::stream::stream::fuse::Fuse<St>where
St: Debug,
impl<St> Debug for StreamFuture<St>where
St: Debug,
impl<St> Debug for Peek<'_, St>
impl<St> Debug for futures_util::stream::stream::peek::PeekMut<'_, St>
impl<St> Debug for futures_util::stream::stream::peek::Peekable<St>
impl<St> Debug for ReadyChunks<St>
impl<St> Debug for futures_util::stream::stream::skip::Skip<St>where
St: Debug,
impl<St> Debug for futures_util::stream::stream::Flatten<St>
impl<St> Debug for futures_util::stream::stream::take::Take<St>where
St: Debug,
impl<St> Debug for IntoAsyncRead<St>
impl<St> Debug for futures_util::stream::try_stream::into_stream::IntoStream<St>where
St: Debug,
impl<St> Debug for TryBufferUnordered<St>
impl<St> Debug for TryBuffered<St>
impl<St> Debug for TryChunks<St>
impl<St> Debug for TryConcat<St>
impl<St> Debug for futures_util::stream::try_stream::try_flatten::TryFlatten<St>
impl<St> Debug for TryFlattenUnordered<St>
impl<St> Debug for TryReadyChunks<St>
impl<St> Debug for tokio_stream::stream_ext::skip::Skip<St>where
St: Debug,
impl<St> Debug for tokio_stream::stream_ext::take::Take<St>where
St: Debug,
impl<St, C> Debug for Collect<St, C>
impl<St, C> Debug for TryCollect<St, C>
impl<St, E> Debug for futures_util::stream::try_stream::ErrInto<St, E>
impl<St, F> Debug for futures_util::stream::stream::map::Map<St, F>where
St: Debug,
impl<St, F> Debug for NextIf<'_, St, F>
impl<St, F> Debug for futures_util::stream::stream::Inspect<St, F>
impl<St, F> Debug for futures_util::stream::try_stream::InspectErr<St, F>
impl<St, F> Debug for futures_util::stream::try_stream::InspectOk<St, F>
impl<St, F> Debug for futures_util::stream::try_stream::MapErr<St, F>
impl<St, F> Debug for futures_util::stream::try_stream::MapOk<St, F>
impl<St, F> Debug for Iterate<St, F>where
St: Debug,
impl<St, F> Debug for itertools::sources::Unfold<St, F>where
St: Debug,
impl<St, F> Debug for tokio_stream::stream_ext::filter::Filter<St, F>where
St: Debug,
impl<St, F> Debug for tokio_stream::stream_ext::filter_map::FilterMap<St, F>where
St: Debug,
impl<St, F> Debug for tokio_stream::stream_ext::map::Map<St, F>where
St: Debug,
impl<St, F> Debug for tokio_stream::stream_ext::map_while::MapWhile<St, F>where
St: Debug,
impl<St, F> Debug for tokio_stream::stream_ext::skip_while::SkipWhile<St, F>where
St: Debug,
impl<St, F> Debug for tokio_stream::stream_ext::take_while::TakeWhile<St, F>where
St: Debug,
impl<St, FromA, FromB> Debug for Unzip<St, FromA, FromB>
impl<St, Fut> Debug for TakeUntil<St, Fut>
impl<St, Fut, F> Debug for All<St, Fut, F>
impl<St, Fut, F> Debug for Any<St, Fut, F>
impl<St, Fut, F> Debug for futures_util::stream::stream::filter::Filter<St, Fut, F>
impl<St, Fut, F> Debug for futures_util::stream::stream::filter_map::FilterMap<St, Fut, F>
impl<St, Fut, F> Debug for ForEach<St, Fut, F>
impl<St, Fut, F> Debug for ForEachConcurrent<St, Fut, F>
impl<St, Fut, F> Debug for futures_util::stream::stream::skip_while::SkipWhile<St, Fut, F>
impl<St, Fut, F> Debug for futures_util::stream::stream::take_while::TakeWhile<St, Fut, F>
impl<St, Fut, F> Debug for futures_util::stream::stream::then::Then<St, Fut, F>
impl<St, Fut, F> Debug for futures_util::stream::try_stream::and_then::AndThen<St, Fut, F>
impl<St, Fut, F> Debug for futures_util::stream::try_stream::or_else::OrElse<St, Fut, F>
impl<St, Fut, F> Debug for TryAll<St, Fut, F>
impl<St, Fut, F> Debug for TryAny<St, Fut, F>
impl<St, Fut, F> Debug for TryFilter<St, Fut, F>
impl<St, Fut, F> Debug for TryFilterMap<St, Fut, F>
impl<St, Fut, F> Debug for TryForEach<St, Fut, F>
impl<St, Fut, F> Debug for TryForEachConcurrent<St, Fut, F>
impl<St, Fut, F> Debug for TrySkipWhile<St, Fut, F>
impl<St, Fut, F> Debug for TryTakeWhile<St, Fut, F>
impl<St, Fut, F> Debug for tokio_stream::stream_ext::then::Then<St, Fut, F>where
St: Debug,
impl<St, Fut, T, F> Debug for Fold<St, Fut, T, F>
impl<St, Fut, T, F> Debug for TryFold<St, Fut, T, F>
impl<St, S, Fut, F> Debug for futures_util::stream::stream::scan::Scan<St, S, Fut, F>
impl<St, Si> Debug for Forward<St, Si>
impl<St, T> Debug for NextIfEq<'_, St, T>
impl<St, U, F> Debug for futures_util::stream::stream::FlatMap<St, U, F>
impl<St, U, F> Debug for FlatMapUnordered<St, U, F>
impl<Static> Debug for Atom<Static>where
Static: StaticAtomSet,
impl<Storage> Debug for __BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<T> Debug for LocalResult<T>where
T: Debug,
impl<T> Debug for VectorDiff<T>where
T: Debug,
impl<T> Debug for httparse::Status<T>where
T: Debug,
impl<T> Debug for MaybeHttpsStream<T>where
T: Debug,
impl<T> Debug for FoldWhile<T>where
T: Debug,
impl<T> Debug for MinMaxResult<T>where
T: Debug,
impl<T> Debug for JsOption<T>where
T: Debug,
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for tokio::sync::mpsc::error::TrySendError<T>
impl<T> Debug for SetError<T>where
T: Debug,
impl<T> Debug for tokio_rustls::TlsStream<T>where
T: Debug,
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for core::task::poll::Poll<T>where
T: Debug,
impl<T> Debug for std::sync::mpsc::TrySendError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)
This trait is implemented for tuples up to twelve items long.