pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}Expand description
? formatting.
Debug should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive a Debug implementation.
When used with the alternate format specifier #?, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive] if all fields implement Debug. When
derived for structs, it will use the name of the struct, then {, then a
comma-separated list of each field’s name and Debug value, then }. For
enums, it will use the name of the variant and, if applicable, (, then the
Debug values of the fields, then ).
§Stability
Derived Debug formats are not stable, and so may change with future Rust
versions. Additionally, Debug implementations of types provided by the
standard library (std, core, alloc, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);There are a number of helper methods on the Formatter struct to help you with manual
implementations, such as debug_struct.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter trait (debug_struct, debug_tuple,
debug_list, debug_set, debug_map) can do something totally custom by
manually writing an arbitrary representation to the Formatter.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}Debug implementations using either derive or the debug builder API
on Formatter support pretty-printing using the alternate flag: {:#?}.
Pretty-printing with #?:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err if, and only if, the provided Formatter returns Err.
String formatting is considered an infallible operation; this function only
returns a Result because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");Implementors§
impl Debug for Adt
impl Debug for ArithOp
impl Debug for AsmOperand
impl Debug for AsmPiece
impl Debug for AssocItem
impl Debug for AttrKind
impl Debug for BinaryOp
impl Debug for CallableExpr
impl Debug for CmpOp
impl Debug for CommentPlacement
impl Debug for CommentShape
impl Debug for ElseBranch
impl Debug for Expr
impl Debug for ExternItem
impl Debug for FieldKind
impl Debug for FieldList
impl Debug for GenericArg
impl Debug for GenericParam
impl Debug for capability_3p::ast::Item
impl Debug for capability_3p::ast::LiteralKind
impl Debug for LogicOp
impl Debug for Macro
impl Debug for NameLike
impl Debug for NameOrNameRef
impl Debug for capability_3p::ast::Ordering
impl Debug for Pat
impl Debug for PathSegmentKind
impl Debug for Radix
impl Debug for RangeOp
impl Debug for SelfParamKind
impl Debug for Stmt
impl Debug for StructKind
impl Debug for TraitOrAlias
impl Debug for capability_3p::ast::Type
impl Debug for TypeBoundKind
impl Debug for TypeOrConstParam
impl Debug for UnaryOp
impl Debug for capability_3p::colored::Color
impl Debug for Styles
impl Debug for AgentCoordinateBuilderError
impl Debug for BatchChoiceBuilderError
impl Debug for BatchDownloadError
impl Debug for BatchErrorDataBuilderError
impl Debug for BatchErrorDetailsBuilderError
impl Debug for BatchErrorFileProcessingOperation
impl Debug for BatchErrorProcessingError
impl Debug for BatchErrorResponseBodyBuilderError
impl Debug for BatchExecutionResultBuilderError
impl Debug for BatchFileState
impl Debug for BatchFileTripleBuilderError
impl Debug for BatchFileTripleReconciliationOperation
impl Debug for BatchIndex
impl Debug for BatchInputCreationError
impl Debug for BatchInputDataBuilderError
impl Debug for BatchMessageBuilderError
impl Debug for BatchMessageContentBuilderError
impl Debug for BatchMetadataBuilderError
impl Debug for BatchMetadataError
impl Debug for BatchOutputDataBuilderError
impl Debug for BatchOutputProcessingError
impl Debug for BatchProcessingError
impl Debug for BatchReconciliationError
impl Debug for BatchRequestRecordBuilderError
impl Debug for BatchResponseBody
impl Debug for BatchResponseContentBuilderError
impl Debug for BatchResponseRecordBuilderError
impl Debug for BatchSuccessResponseBodyBuilderError
impl Debug for BatchSuccessResponseHandlingError
impl Debug for BatchTokenDetailsBuilderError
impl Debug for BatchUsageBuilderError
impl Debug for BatchValidationError
impl Debug for BatchWorkspaceBuilderError
impl Debug for BatchWorkspaceError
impl Debug for CamelCaseTokenWithCommentBuilderError
impl Debug for Case
impl Debug for capability_3p::ChatCompletionRequestMessage
impl Debug for capability_3p::ChatCompletionRequestSystemMessageContent
impl Debug for capability_3p::ChatCompletionRequestUserMessageContent
impl Debug for ContentParseError
impl Debug for capability_3p::Direction
impl Debug for capability_3p::DotConfig
impl Debug for capability_3p::Edition
impl Debug for capability_3p::ErrorKind
impl Debug for ErrorSavingFailedBatchEntries
impl Debug for ErrorType
impl Debug for EventKind
impl Debug for EventPrinter
impl Debug for ExpectedContentType
impl Debug for FileMoveError
impl Debug for capability_3p::FinishReason
impl Debug for HttpMethod
impl Debug for InstructedLanguageModelAtCoordinateBuilderError
impl Debug for JsonParseError
impl Debug for capability_3p::JsonValue
impl Debug for capability_3p::Language
impl Debug for LanguageModelApiUrl
impl Debug for LanguageModelBatchCreationError
impl Debug for LanguageModelBatchWorkflowError
impl Debug for LanguageModelMessageRole
impl Debug for LanguageModelOutputFormatInstruction
impl Debug for LanguageModelType
impl Debug for capability_3p::MessageRole
impl Debug for MockBatchClientError
impl Debug for MockBatchConfigBuilderError
impl Debug for MockBatchWorkspaceBuilderError
impl Debug for MockLanguageModelClientBuilderError
impl Debug for NameError
impl Debug for OpenAIClientError
impl Debug for capability_3p::OpenAiClientRole
impl Debug for ParseTokenDescriptionLineError
impl Debug for RecursiveMode
impl Debug for RustLanguage
impl Debug for SaveLoadError
impl Debug for capability_3p::SyntaxKind
impl Debug for TokenExpanderError
impl Debug for TokenParseError
impl Debug for TokenizerError
impl Debug for capability_3p::TomlEditItem
impl Debug for capability_3p::TomlEditValue
impl Debug for capability_3p::TomlValue
impl Debug for UuidParseError
impl Debug for capability_3p::Variant
impl Debug for capability_3p::Version
impl Debug for capability_3p::WhichError
impl Debug for capability_3p::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for Sign
impl Debug for TryReserveErrorKind
impl Debug for AsciiChar
impl Debug for core::cmp::Ordering
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for AtomicOrdering
impl Debug for core::net::ip_addr::IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for core::net::socket_addr::SocketAddr
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for core::slice::GetDisjointMutError
impl Debug for core::str::pattern::SearchStep
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for std::fs::TryLockError
impl Debug for std::net::Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for std::sync::mpsc::RecvTimeoutError
impl Debug for std::sync::mpsc::TryRecvError
impl Debug for AhoCorasickKind
impl Debug for aho_corasick::packed::api::MatchKind
impl Debug for aho_corasick::util::error::MatchErrorKind
impl Debug for Candidate
impl Debug for aho_corasick::util::search::Anchored
impl Debug for aho_corasick::util::search::MatchKind
impl Debug for StartKind
impl Debug for Colour
impl Debug for anstyle_parse::state::definitions::Action
impl Debug for anstyle_parse::state::definitions::State
impl Debug for AnsiColor
impl Debug for anstyle::color::Color
impl Debug for async_channel::TryRecvError
impl Debug for async_openai::error::OpenAIError
impl Debug for async_openai::error::OpenAIError
impl Debug for async_openai::types::assistant::AssistantToolType
impl Debug for async_openai::types::assistant::AssistantToolType
impl Debug for async_openai::types::assistant::AssistantTools
impl Debug for async_openai::types::assistant::AssistantTools
impl Debug for async_openai::types::assistant::AssistantVectorStoreChunkingStrategy
impl Debug for async_openai::types::assistant::AssistantVectorStoreChunkingStrategy
impl Debug for async_openai::types::assistant::AssistantsApiResponseFormatOption
impl Debug for async_openai::types::assistant::AssistantsApiResponseFormatOption
impl Debug for async_openai::types::assistant::AssistantsApiToolChoiceOption
impl Debug for async_openai::types::assistant::AssistantsApiToolChoiceOption
impl Debug for async_openai::types::assistant::FileSearchRanker
impl Debug for async_openai::types::assistant::FileSearchRanker
impl Debug for async_openai::types::assistant_stream::AssistantStreamEvent
impl Debug for async_openai::types::assistant_stream::AssistantStreamEvent
impl Debug for async_openai::types::audio::AudioResponseFormat
impl Debug for async_openai::types::audio::AudioResponseFormat
impl Debug for async_openai::types::audio::SpeechModel
impl Debug for async_openai::types::audio::SpeechModel
impl Debug for async_openai::types::audio::SpeechResponseFormat
impl Debug for async_openai::types::audio::SpeechResponseFormat
impl Debug for async_openai::types::audio::TimestampGranularity
impl Debug for async_openai::types::audio::TimestampGranularity
impl Debug for async_openai::types::audio::Voice
impl Debug for async_openai::types::audio::Voice
impl Debug for async_openai::types::audit_log::AuditLogActorApiKeyType
impl Debug for async_openai::types::audit_log::AuditLogActorApiKeyType
impl Debug for async_openai::types::audit_log::AuditLogEventType
impl Debug for async_openai::types::audit_log::AuditLogEventType
impl Debug for async_openai::types::batch::BatchCompletionWindow
impl Debug for async_openai::types::batch::BatchCompletionWindow
impl Debug for async_openai::types::batch::BatchEndpoint
impl Debug for async_openai::types::batch::BatchEndpoint
impl Debug for async_openai::types::batch::BatchRequestInputMethod
impl Debug for async_openai::types::batch::BatchRequestInputMethod
impl Debug for async_openai::types::batch::BatchStatus
impl Debug for async_openai::types::batch::BatchStatus
impl Debug for async_openai::types::chat::ChatCompletionAudioFormat
impl Debug for async_openai::types::chat::ChatCompletionAudioFormat
impl Debug for async_openai::types::chat::ChatCompletionAudioVoice
impl Debug for async_openai::types::chat::ChatCompletionAudioVoice
impl Debug for async_openai::types::chat::ChatCompletionFunctionCall
impl Debug for async_openai::types::chat::ChatCompletionFunctionCall
impl Debug for async_openai::types::chat::ChatCompletionModalities
impl Debug for async_openai::types::chat::ChatCompletionModalities
impl Debug for async_openai::types::chat::ChatCompletionRequestAssistantMessageContent
impl Debug for async_openai::types::chat::ChatCompletionRequestAssistantMessageContent
impl Debug for async_openai::types::chat::ChatCompletionRequestAssistantMessageContentPart
impl Debug for async_openai::types::chat::ChatCompletionRequestAssistantMessageContentPart
impl Debug for async_openai::types::chat::ChatCompletionRequestDeveloperMessageContent
impl Debug for async_openai::types::chat::ChatCompletionRequestDeveloperMessageContent
impl Debug for async_openai::types::chat::ChatCompletionRequestMessage
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartRefusalBuilderError
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartRefusalBuilderError
impl Debug for async_openai::types::chat::ChatCompletionRequestSystemMessageContent
impl Debug for async_openai::types::chat::ChatCompletionRequestSystemMessageContentPart
impl Debug for async_openai::types::chat::ChatCompletionRequestSystemMessageContentPart
impl Debug for async_openai::types::chat::ChatCompletionRequestToolMessageContent
impl Debug for async_openai::types::chat::ChatCompletionRequestToolMessageContent
impl Debug for async_openai::types::chat::ChatCompletionRequestToolMessageContentPart
impl Debug for async_openai::types::chat::ChatCompletionRequestToolMessageContentPart
impl Debug for async_openai::types::chat::ChatCompletionRequestUserMessageContent
impl Debug for async_openai::types::chat::ChatCompletionRequestUserMessageContentPart
impl Debug for async_openai::types::chat::ChatCompletionRequestUserMessageContentPart
impl Debug for async_openai::types::chat::ChatCompletionToolChoiceOption
impl Debug for async_openai::types::chat::ChatCompletionToolChoiceOption
impl Debug for async_openai::types::chat::ChatCompletionToolType
impl Debug for async_openai::types::chat::ChatCompletionToolType
impl Debug for async_openai::types::chat::CompletionFinishReason
impl Debug for async_openai::types::chat::CompletionFinishReason
impl Debug for async_openai::types::chat::FinishReason
impl Debug for async_openai::types::chat::FinishReason
impl Debug for async_openai::types::chat::ImageDetail
impl Debug for async_openai::types::chat::ImageDetail
impl Debug for async_openai::types::chat::InputAudioFormat
impl Debug for async_openai::types::chat::InputAudioFormat
impl Debug for async_openai::types::chat::PredictionContent
impl Debug for async_openai::types::chat::PredictionContent
impl Debug for async_openai::types::chat::PredictionContentContent
impl Debug for async_openai::types::chat::PredictionContentContent
impl Debug for async_openai::types::chat::Prompt
impl Debug for async_openai::types::chat::Prompt
impl Debug for async_openai::types::chat::ReasoningEffort
impl Debug for async_openai::types::chat::ReasoningEffort
impl Debug for async_openai::types::chat::ResponseFormat
impl Debug for async_openai::types::chat::ResponseFormat
impl Debug for async_openai::types::chat::Role
impl Debug for async_openai::types::chat::ServiceTier
impl Debug for async_openai::types::chat::ServiceTier
impl Debug for async_openai::types::chat::ServiceTierResponse
impl Debug for async_openai::types::chat::ServiceTierResponse
impl Debug for async_openai::types::chat::Stop
impl Debug for async_openai::types::chat::Stop
impl Debug for async_openai::types::chat::WebSearchContextSize
impl Debug for WebSearchUserLocationType
impl Debug for async_openai::types::common::InputSource
impl Debug for async_openai::types::common::InputSource
impl Debug for async_openai::types::common::OrganizationRole
impl Debug for async_openai::types::common::OrganizationRole
impl Debug for async_openai::types::embedding::EmbeddingInput
impl Debug for async_openai::types::embedding::EmbeddingInput
impl Debug for async_openai::types::embedding::EncodingFormat
impl Debug for async_openai::types::embedding::EncodingFormat
impl Debug for async_openai::types::file::FilePurpose
impl Debug for async_openai::types::file::FilePurpose
impl Debug for async_openai::types::file::OpenAIFilePurpose
impl Debug for async_openai::types::file::OpenAIFilePurpose
impl Debug for async_openai::types::fine_tuning::BatchSize
impl Debug for async_openai::types::fine_tuning::BatchSize
impl Debug for async_openai::types::fine_tuning::Beta
impl Debug for async_openai::types::fine_tuning::Beta
impl Debug for async_openai::types::fine_tuning::FineTuneMethod
impl Debug for async_openai::types::fine_tuning::FineTuneMethod
impl Debug for async_openai::types::fine_tuning::FineTuningJobEventType
impl Debug for async_openai::types::fine_tuning::FineTuningJobEventType
impl Debug for async_openai::types::fine_tuning::FineTuningJobIntegrationType
impl Debug for async_openai::types::fine_tuning::FineTuningJobIntegrationType
impl Debug for async_openai::types::fine_tuning::FineTuningJobStatus
impl Debug for async_openai::types::fine_tuning::FineTuningJobStatus
impl Debug for async_openai::types::fine_tuning::LearningRateMultiplier
impl Debug for async_openai::types::fine_tuning::LearningRateMultiplier
impl Debug for async_openai::types::fine_tuning::Level
impl Debug for async_openai::types::fine_tuning::Level
impl Debug for async_openai::types::fine_tuning::NEpochs
impl Debug for async_openai::types::fine_tuning::NEpochs
impl Debug for async_openai::types::image::DallE2ImageSize
impl Debug for async_openai::types::image::DallE2ImageSize
impl Debug for async_openai::types::image::Image
impl Debug for async_openai::types::image::Image
impl Debug for async_openai::types::image::ImageModel
impl Debug for async_openai::types::image::ImageModel
impl Debug for async_openai::types::image::ImageQuality
impl Debug for async_openai::types::image::ImageQuality
impl Debug for async_openai::types::image::ImageResponseFormat
impl Debug for async_openai::types::image::ImageResponseFormat
impl Debug for async_openai::types::image::ImageSize
impl Debug for async_openai::types::image::ImageSize
impl Debug for async_openai::types::image::ImageStyle
impl Debug for async_openai::types::image::ImageStyle
impl Debug for async_openai::types::invites::InviteStatus
impl Debug for async_openai::types::invites::InviteStatus
impl Debug for async_openai::types::message::CreateMessageRequestContent
impl Debug for async_openai::types::message::CreateMessageRequestContent
impl Debug for async_openai::types::message::MessageAttachmentTool
impl Debug for async_openai::types::message::MessageAttachmentTool
impl Debug for async_openai::types::message::MessageContent
impl Debug for async_openai::types::message::MessageContent
impl Debug for async_openai::types::message::MessageContentInput
impl Debug for async_openai::types::message::MessageContentInput
impl Debug for async_openai::types::message::MessageContentTextAnnotations
impl Debug for async_openai::types::message::MessageContentTextAnnotations
impl Debug for async_openai::types::message::MessageDeltaContent
impl Debug for async_openai::types::message::MessageDeltaContent
impl Debug for async_openai::types::message::MessageDeltaContentTextAnnotations
impl Debug for async_openai::types::message::MessageDeltaContentTextAnnotations
impl Debug for async_openai::types::message::MessageIncompleteDetailsType
impl Debug for async_openai::types::message::MessageIncompleteDetailsType
impl Debug for async_openai::types::message::MessageRole
impl Debug for async_openai::types::message::MessageRole
impl Debug for async_openai::types::message::MessageStatus
impl Debug for async_openai::types::message::MessageStatus
impl Debug for async_openai::types::moderation::ModInputType
impl Debug for async_openai::types::moderation::ModInputType
impl Debug for async_openai::types::moderation::ModerationContentPart
impl Debug for async_openai::types::moderation::ModerationContentPart
impl Debug for async_openai::types::moderation::ModerationInput
impl Debug for async_openai::types::moderation::ModerationInput
impl Debug for async_openai::types::project_api_key::ProjectApiKeyOwnerType
impl Debug for async_openai::types::project_api_key::ProjectApiKeyOwnerType
impl Debug for async_openai::types::project_users::ProjectUserRole
impl Debug for async_openai::types::project_users::ProjectUserRole
impl Debug for async_openai::types::projects::ProjectStatus
impl Debug for async_openai::types::projects::ProjectStatus
impl Debug for AllowedTools
impl Debug for Annotation
impl Debug for ButtonPress
impl Debug for CodeInterpreterContainer
impl Debug for CodeInterpreterContainerKind
impl Debug for CodeInterpreterResult
impl Debug for async_openai::types::responses::ComparisonType
impl Debug for CompoundType
impl Debug for ComputerCallAction
impl Debug for ComputerUsePreviewArgsError
impl Debug for Content
impl Debug for async_openai::types::responses::ContentType
impl Debug for FileSearchCallOutputStatus
impl Debug for async_openai::types::responses::Filter
impl Debug for FunctionArgsError
impl Debug for HostedToolType
impl Debug for ImageGenerationBackground
impl Debug for ImageGenerationOutputFormat
impl Debug for ImageGenerationQuality
impl Debug for ImageGenerationSize
impl Debug for async_openai::types::responses::Input
impl Debug for InputContent
impl Debug for InputItem
impl Debug for InputMessageType
impl Debug for OutputContent
impl Debug for OutputStatus
impl Debug for ReasoningSummary
impl Debug for RequireApproval
impl Debug for RequireApprovalPolicy
impl Debug for async_openai::types::responses::Role
impl Debug for async_openai::types::responses::ServiceTier
impl Debug for async_openai::types::responses::Status
impl Debug for TextResponseFormat
impl Debug for ToolChoice
impl Debug for ToolChoiceMode
impl Debug for ToolDefinition
impl Debug for Truncation
impl Debug for async_openai::types::responses::WebSearchContextSize
impl Debug for WebSearchPreviewArgsError
impl Debug for async_openai::types::run::LastErrorCode
impl Debug for async_openai::types::run::LastErrorCode
impl Debug for async_openai::types::run::RunObjectIncompleteDetailsReason
impl Debug for async_openai::types::run::RunObjectIncompleteDetailsReason
impl Debug for async_openai::types::run::RunStatus
impl Debug for async_openai::types::run::RunStatus
impl Debug for async_openai::types::run::TruncationObjectType
impl Debug for async_openai::types::run::TruncationObjectType
impl Debug for async_openai::types::step::CodeInterpreterOutput
impl Debug for async_openai::types::step::CodeInterpreterOutput
impl Debug for async_openai::types::step::DeltaCodeInterpreterOutput
impl Debug for async_openai::types::step::DeltaCodeInterpreterOutput
impl Debug for async_openai::types::step::DeltaStepDetails
impl Debug for async_openai::types::step::DeltaStepDetails
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCalls
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCalls
impl Debug for async_openai::types::step::RunStepDetailsToolCalls
impl Debug for async_openai::types::step::RunStepDetailsToolCalls
impl Debug for async_openai::types::step::RunStepType
impl Debug for async_openai::types::step::RunStepType
impl Debug for async_openai::types::step::StepDetails
impl Debug for async_openai::types::step::StepDetails
impl Debug for async_openai::types::upload::UploadPurpose
impl Debug for async_openai::types::upload::UploadPurpose
impl Debug for async_openai::types::upload::UploadStatus
impl Debug for async_openai::types::upload::UploadStatus
impl Debug for AttributeValue
impl Debug for async_openai::types::vector_store::ComparisonType
impl Debug for CompoundFilterType
impl Debug for Ranker
impl Debug for async_openai::types::vector_store::VectorStoreChunkingStrategy
impl Debug for async_openai::types::vector_store::VectorStoreChunkingStrategy
impl Debug for async_openai::types::vector_store::VectorStoreFileBatchStatus
impl Debug for async_openai::types::vector_store::VectorStoreFileBatchStatus
impl Debug for async_openai::types::vector_store::VectorStoreFileErrorCode
impl Debug for async_openai::types::vector_store::VectorStoreFileErrorCode
impl Debug for async_openai::types::vector_store::VectorStoreFileObjectChunkingStrategy
impl Debug for async_openai::types::vector_store::VectorStoreFileObjectChunkingStrategy
impl Debug for async_openai::types::vector_store::VectorStoreFileStatus
impl Debug for async_openai::types::vector_store::VectorStoreFileStatus
impl Debug for VectorStoreSearchFilter
impl Debug for VectorStoreSearchQuery
impl Debug for async_openai::types::vector_store::VectorStoreStatus
impl Debug for async_openai::types::vector_store::VectorStoreStatus
impl Debug for atty::Stream
impl Debug for ParseAlphabetError
impl Debug for DecodeError
impl Debug for DecodeSliceError
impl Debug for EncodeSliceError
impl Debug for DecodePaddingMode
impl Debug for BatchCreationError
impl Debug for batch_mode_batch_error::batch_error::BatchError
impl Debug for ErrorWritingBatchExpansionErrorFile
impl Debug for calloop::error::Error
impl Debug for PostAction
impl Debug for TimeoutAction
impl Debug for calloop::sys::Mode
impl Debug for Utf8Component<'_>
impl Debug for cargo_lock::error::Error
impl Debug for ResolveVersion
impl Debug for Checksum
impl Debug for GitReference
impl Debug for SourceKind
impl Debug for Cfg
impl Debug for CfgExpr
impl Debug for Platform
impl Debug for cargo_platform::error::ParseErrorKind
impl Debug for DependencyKind
impl Debug for Applicability
impl Debug for DiagnosticLevel
impl Debug for CargoOpt
impl Debug for cargo_metadata::Edition
impl Debug for cargo_metadata::errors::Error
impl Debug for ArtifactDebuginfo
impl Debug for cargo_metadata::messages::Message
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 chrono::format::ParseErrorKind
impl Debug for SecondsFormat
impl Debug for chrono::month::Month
impl Debug for RoundingError
impl Debug for chrono::weekday::Weekday
impl Debug for AppSettings
impl Debug for ArgSettings
impl Debug for Shell
impl Debug for clap::errors::ErrorKind
impl Debug for ColorChoice
impl Debug for PopError
impl Debug for Expiration
impl Debug for cookie::parse::ParseError
impl Debug for SameSite
impl Debug for crossbeam_channel::err::RecvTimeoutError
impl Debug for crossbeam_channel::err::TryRecvError
impl Debug for CursorIcon
impl Debug for DlError
impl Debug for CoderResult
impl Debug for DecoderResult
impl Debug for EncoderResult
impl Debug for Latin1Bidi
impl Debug for TimestampPrecision
impl Debug for WriteStyle
impl Debug for env_logger::fmt::writer::target::Target
impl Debug for Actual
impl Debug for figment::error::Kind
impl Debug for figment::metadata::Source
impl Debug for figment::value::value::Empty
impl Debug for Num
impl Debug for figment::value::value::Value
impl Debug for PollNext
impl Debug for hashbrown::TryReserveError
impl Debug for hashbrown::TryReserveError
impl Debug for httparse::Error
impl Debug for GetTimezoneError
impl Debug for TrieResult
impl Debug for InvalidStringList
impl Debug for TrieType
impl Debug for icu_collections::codepointtrie::error::Error
impl Debug for ExtensionType
impl Debug for icu_locale_core::parser::errors::ParseError
impl Debug for PreferencesParseError
impl Debug for Decomposed
impl Debug for BidiPairedBracketType
impl Debug for GeneralCategory
impl Debug for BufferFormat
impl Debug for DataErrorKind
impl Debug for ProcessingError
impl Debug for ProcessingSuccess
impl Debug for indexmap::GetDisjointMutError
impl Debug for InlinableString
impl Debug for IpAddrRange
impl Debug for IpNet
impl Debug for IpSubnets
impl Debug for IriSpec
impl Debug for UriSpec
impl Debug for VisitPurpose
impl Debug for iri_string::template::simple_context::Value
impl Debug for itertools::with_position::Position
impl Debug for Era
impl Debug for jiff::civil::weekday::Weekday
impl Debug for Designator
impl Debug for jiff::fmt::friendly::printer::Direction
impl Debug for FractionalUnit
impl Debug for Spacing
impl Debug for Meridiem
impl Debug for PiecesOffset
impl Debug for jiff::span::Unit
impl Debug for AmbiguousOffset
impl Debug for Disambiguation
impl Debug for Dst
impl Debug for OffsetConflict
impl Debug for RoundMode
impl Debug for json5::error::Error
impl Debug for JsonRepairError
impl Debug for json_repair::repair_json_add_missing_quotes::Token
impl Debug for JsonParsingStrategy
impl Debug for libloading::error::Error
impl Debug for linux_raw_sys::general::fsconfig_command
impl Debug for linux_raw_sys::general::fsconfig_command
impl Debug for linux_raw_sys::general::membarrier_cmd
impl Debug for linux_raw_sys::general::membarrier_cmd
impl Debug for linux_raw_sys::general::membarrier_cmd_flag
impl Debug for linux_raw_sys::general::membarrier_cmd_flag
impl Debug for procmap_query_flags
impl Debug for linux_raw_sys::net::_bindgen_ty_1
impl Debug for linux_raw_sys::net::_bindgen_ty_2
impl Debug for linux_raw_sys::net::_bindgen_ty_3
impl Debug for linux_raw_sys::net::_bindgen_ty_4
impl Debug for linux_raw_sys::net::_bindgen_ty_5
impl Debug for linux_raw_sys::net::_bindgen_ty_6
impl Debug for linux_raw_sys::net::_bindgen_ty_7
impl Debug for linux_raw_sys::net::_bindgen_ty_8
impl Debug for linux_raw_sys::net::_bindgen_ty_9
impl Debug for net_device_flags
impl Debug for nf_dev_hooks
impl Debug for nf_inet_hooks
impl Debug for nf_ip6_hook_priorities
impl Debug for nf_ip_hook_priorities
impl Debug for socket_state
impl Debug for tcp_ca_state
impl Debug for tcp_fastopen_client_fail
impl Debug for linux_raw_sys::netlink::_bindgen_ty_1
impl Debug for linux_raw_sys::netlink::_bindgen_ty_2
impl Debug for linux_raw_sys::netlink::_bindgen_ty_3
impl Debug for linux_raw_sys::netlink::_bindgen_ty_4
impl Debug for linux_raw_sys::netlink::_bindgen_ty_5
impl Debug for linux_raw_sys::netlink::_bindgen_ty_6
impl Debug for linux_raw_sys::netlink::_bindgen_ty_7
impl Debug for linux_raw_sys::netlink::_bindgen_ty_8
impl Debug for linux_raw_sys::netlink::_bindgen_ty_9
impl Debug for _bindgen_ty_10
impl Debug for _bindgen_ty_11
impl Debug for _bindgen_ty_12
impl Debug for _bindgen_ty_13
impl Debug for _bindgen_ty_14
impl Debug for _bindgen_ty_15
impl Debug for _bindgen_ty_16
impl Debug for _bindgen_ty_17
impl Debug for _bindgen_ty_18
impl Debug for _bindgen_ty_19
impl Debug for _bindgen_ty_20
impl Debug for _bindgen_ty_21
impl Debug for _bindgen_ty_22
impl Debug for _bindgen_ty_23
impl Debug for _bindgen_ty_24
impl Debug for _bindgen_ty_25
impl Debug for _bindgen_ty_26
impl Debug for _bindgen_ty_27
impl Debug for _bindgen_ty_28
impl Debug for _bindgen_ty_29
impl Debug for _bindgen_ty_30
impl Debug for _bindgen_ty_31
impl Debug for _bindgen_ty_32
impl Debug for _bindgen_ty_33
impl Debug for _bindgen_ty_34
impl Debug for _bindgen_ty_35
impl Debug for _bindgen_ty_36
impl Debug for _bindgen_ty_37
impl Debug for _bindgen_ty_38
impl Debug for _bindgen_ty_39
impl Debug for _bindgen_ty_40
impl Debug for _bindgen_ty_41
impl Debug for _bindgen_ty_42
impl Debug for _bindgen_ty_43
impl Debug for _bindgen_ty_44
impl Debug for _bindgen_ty_45
impl Debug for _bindgen_ty_46
impl Debug for _bindgen_ty_47
impl Debug for _bindgen_ty_48
impl Debug for _bindgen_ty_49
impl Debug for _bindgen_ty_50
impl Debug for _bindgen_ty_51
impl Debug for _bindgen_ty_52
impl Debug for _bindgen_ty_53
impl Debug for _bindgen_ty_54
impl Debug for _bindgen_ty_55
impl Debug for _bindgen_ty_56
impl Debug for _bindgen_ty_57
impl Debug for _bindgen_ty_58
impl Debug for _bindgen_ty_59
impl Debug for _bindgen_ty_60
impl Debug for _bindgen_ty_61
impl Debug for _bindgen_ty_62
impl Debug for _bindgen_ty_63
impl Debug for _bindgen_ty_64
impl Debug for _bindgen_ty_65
impl Debug for _bindgen_ty_66
impl Debug for ifla_geneve_df
impl Debug for ifla_gtp_role
impl Debug for ifla_vxlan_df
impl Debug for in6_addr_gen_mode
impl Debug for ipvlan_mode
impl Debug for macsec_offload
impl Debug for macsec_validation_type
impl Debug for macvlan_macaddr_mode
impl Debug for macvlan_mode
impl Debug for netlink_attribute_type
impl Debug for netlink_policy_type_attr
impl Debug for nl_mmap_status
impl Debug for nlmsgerr_attrs
impl Debug for rt_class_t
impl Debug for rt_scope_t
impl Debug for rtattr_type_t
impl Debug for rtnetlink_groups
impl Debug for log::Level
impl Debug for log::LevelFilter
impl Debug for PrefilterConfig
impl Debug for memmap2::advice::Advice
impl Debug for UncheckedAdvice
impl Debug for multer::error::Error
impl Debug for native_tls::Protocol
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 WatcherKind
impl Debug for notify::error::ErrorKind
impl Debug for AccessKind
impl Debug for AccessMode
impl Debug for CreateKind
impl Debug for DataChange
impl Debug for notify::event::Flag
impl Debug for MetadataKind
impl Debug for ModifyKind
impl Debug for RemoveKind
impl Debug for RenameMode
impl Debug for TargetGround
impl Debug for nu_ansi_term::style::Color
impl Debug for FloatErrorKind
impl Debug for ShutdownResult
impl Debug for parking_lot::once::OnceState
impl Debug for parking_lot::once::OnceState
impl Debug for parking_lot_core::parking_lot::FilterOp
impl Debug for parking_lot_core::parking_lot::FilterOp
impl Debug for parking_lot_core::parking_lot::ParkResult
impl Debug for parking_lot_core::parking_lot::ParkResult
impl Debug for parking_lot_core::parking_lot::RequeueOp
impl Debug for parking_lot_core::parking_lot::RequeueOp
impl Debug for InputLocation
impl Debug for LineColLocation
impl Debug for Atomicity
impl Debug for Lookahead
impl Debug for MatchDir
impl Debug for pest::pratt_parser::Assoc
impl Debug for pest::prec_climber::Assoc
impl Debug for Directed
impl Debug for petgraph::Direction
impl Debug for Undirected
impl Debug for polling::PollMode
impl Debug for Base
impl Debug for DocStyle
impl Debug for ra_ap_rustc_lexer::LiteralKind
impl Debug for RawStrError
impl Debug for TokenKind
impl Debug for PrefixEntryPoint
impl Debug for TopEntryPoint
impl Debug for ThreadIntent
impl Debug for rand::distr::bernoulli::BernoulliError
impl Debug for rand::distr::uniform::Error
impl Debug for rand::distr::weighted::Error
impl Debug for rand::distributions::bernoulli::BernoulliError
impl Debug for WeightedError
impl Debug for rand::seq::index::IndexVec
impl Debug for rand::seq::index::IndexVecIntoIter
impl Debug for rand::seq::index_::IndexVec
impl Debug for rand::seq::index_::IndexVecIntoIter
impl Debug for regex_automata::error::ErrorKind
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 regex_syntax::ast::AssertionKind
impl Debug for regex_syntax::ast::AssertionKind
impl Debug for regex_syntax::ast::Ast
impl Debug for regex_syntax::ast::Ast
impl Debug for regex_syntax::ast::Class
impl Debug for regex_syntax::ast::ClassAsciiKind
impl Debug for regex_syntax::ast::ClassAsciiKind
impl Debug for regex_syntax::ast::ClassPerlKind
impl Debug for regex_syntax::ast::ClassPerlKind
impl Debug for regex_syntax::ast::ClassSet
impl Debug for regex_syntax::ast::ClassSet
impl Debug for regex_syntax::ast::ClassSetBinaryOpKind
impl Debug for regex_syntax::ast::ClassSetBinaryOpKind
impl Debug for regex_syntax::ast::ClassSetItem
impl Debug for regex_syntax::ast::ClassSetItem
impl Debug for regex_syntax::ast::ClassUnicodeKind
impl Debug for regex_syntax::ast::ClassUnicodeKind
impl Debug for regex_syntax::ast::ClassUnicodeOpKind
impl Debug for regex_syntax::ast::ClassUnicodeOpKind
impl Debug for regex_syntax::ast::ErrorKind
impl Debug for regex_syntax::ast::ErrorKind
impl Debug for regex_syntax::ast::Flag
impl Debug for regex_syntax::ast::Flag
impl Debug for regex_syntax::ast::FlagsItemKind
impl Debug for regex_syntax::ast::FlagsItemKind
impl Debug for regex_syntax::ast::GroupKind
impl Debug for regex_syntax::ast::GroupKind
impl Debug for regex_syntax::ast::HexLiteralKind
impl Debug for regex_syntax::ast::HexLiteralKind
impl Debug for regex_syntax::ast::LiteralKind
impl Debug for regex_syntax::ast::LiteralKind
impl Debug for regex_syntax::ast::RepetitionKind
impl Debug for regex_syntax::ast::RepetitionKind
impl Debug for regex_syntax::ast::RepetitionRange
impl Debug for regex_syntax::ast::RepetitionRange
impl Debug for regex_syntax::ast::SpecialLiteralKind
impl Debug for regex_syntax::ast::SpecialLiteralKind
impl Debug for regex_syntax::error::Error
impl Debug for regex_syntax::error::Error
impl Debug for regex_syntax::hir::Anchor
impl Debug for regex_syntax::hir::Class
impl Debug for regex_syntax::hir::Class
impl Debug for regex_syntax::hir::Dot
impl Debug for regex_syntax::hir::ErrorKind
impl Debug for regex_syntax::hir::ErrorKind
impl Debug for regex_syntax::hir::GroupKind
impl Debug for regex_syntax::hir::HirKind
impl Debug for regex_syntax::hir::HirKind
impl Debug for regex_syntax::hir::Literal
impl Debug for regex_syntax::hir::Look
impl Debug for regex_syntax::hir::RepetitionKind
impl Debug for regex_syntax::hir::RepetitionRange
impl Debug for WordBoundary
impl Debug for ExtractKind
impl Debug for regex_syntax::utf8::Utf8Sequence
impl Debug for regex_syntax::utf8::Utf8Sequence
impl Debug for regex::error::Error
impl Debug for reqwest_eventsource::error::Error
impl Debug for reqwest_eventsource::event_source::Event
impl Debug for ReadyState
impl Debug for Sig
impl Debug for rocket::error::ErrorKind
impl Debug for Entity
impl Debug for LogLevel
impl Debug for rocket::shield::policy::Allow
impl Debug for rocket::shield::policy::Feature
impl Debug for rocket_http::method::Method
impl Debug for StatusClass
impl Debug for PathError
impl Debug for rocket_http::uri::fmt::part::Path
impl Debug for rocket_http::uri::fmt::part::Query
impl Debug for rustix::backend::fs::types::Advice
impl Debug for rustix::backend::fs::types::Advice
impl Debug for rustix::backend::fs::types::FileType
impl Debug for rustix::backend::fs::types::FileType
impl Debug for rustix::backend::fs::types::FlockOperation
impl Debug for rustix::backend::fs::types::FlockOperation
impl Debug for MembarrierCommand
impl Debug for rustix::backend::process::types::Resource
impl Debug for rustix::backend::process::types::Resource
impl Debug for TimerfdClockId
impl Debug for ClockId
impl Debug for rustix::fs::seek_from::SeekFrom
impl Debug for rustix::fs::seek_from::SeekFrom
impl Debug for rustix::ioctl::Direction
impl Debug for rustix::ioctl::Direction
impl Debug for SocketAddrAny
impl Debug for rustix::net::sockopt::Timeout
impl Debug for rustix::net::types::Shutdown
impl Debug for rustix::process::prctl::DumpableBehavior
impl Debug for rustix::process::prctl::DumpableBehavior
impl Debug for rustix::process::prctl::EndianMode
impl Debug for rustix::process::prctl::EndianMode
impl Debug for rustix::process::prctl::FloatingPointMode
impl Debug for rustix::process::prctl::FloatingPointMode
impl Debug for rustix::process::prctl::MachineCheckMemoryCorruptionKillPolicy
impl Debug for rustix::process::prctl::MachineCheckMemoryCorruptionKillPolicy
impl Debug for rustix::process::prctl::PTracer
impl Debug for rustix::process::prctl::PTracer
impl Debug for rustix::process::prctl::SpeculationFeature
impl Debug for rustix::process::prctl::SpeculationFeature
impl Debug for rustix::process::prctl::TimeStampCounterReadability
impl Debug for rustix::process::prctl::TimeStampCounterReadability
impl Debug for rustix::process::prctl::TimingMethod
impl Debug for rustix::process::prctl::TimingMethod
impl Debug for rustix::process::prctl::VirtualMemoryMapAddress
impl Debug for rustix::process::prctl::VirtualMemoryMapAddress
impl Debug for FlockOffsetType
impl Debug for FlockType
impl Debug for rustix::signal::Signal
impl Debug for RebootCommand
impl Debug for rustls_native_certs::ErrorKind
impl Debug for rustls_pki_types::pem::Error
impl Debug for SectionKind
impl Debug for rustls_pki_types::server_name::IpAddr
impl Debug for ServerName<'_>
impl Debug for 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 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 CompressionLevel
impl Debug for rustls::conn::connection::Connection
impl Debug for EncodeError
impl Debug for EncryptError
impl Debug for AlertDescription
impl Debug for CertificateCompressionAlgorithm
impl Debug for CertificateType
impl Debug for CipherSuite
impl Debug for rustls::enums::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 ExtendedKeyPurpose
impl Debug for InconsistentKeys
impl Debug for InvalidMessage
impl Debug for PeerIncompatible
impl Debug for PeerMisbehaved
impl Debug for HashAlgorithm
impl Debug for NamedGroup
impl Debug for KeyExchangeAlgorithm
impl Debug for rustls::quic::connection::Connection
impl Debug for rustls::quic::Version
impl Debug for SupportedCipherSuite
impl Debug for VerifierBuilderError
impl Debug for Always
impl Debug for Op
impl Debug for serde_json::error::Category
impl Debug for serde_path_to_error::path::Segment
impl Debug for serde_urlencoded::ser::Error
impl Debug for slab::GetDisjointMutError
impl Debug for CollectionAllocErr
impl Debug for DataOfferError
impl Debug for smithay_client_toolkit::error::GlobalError
impl Debug for smithay_client_toolkit::seat::Capability
impl Debug for SeatError
impl Debug for PointerEventKind
impl Debug for PointerThemeError
impl Debug for smithay_client_toolkit::shell::wlr_layer::KeyboardInteractivity
impl Debug for smithay_client_toolkit::shell::wlr_layer::Layer
impl Debug for SurfaceKind
impl Debug for ConfigureKind
impl Debug for DecorationMode
impl Debug for WindowDecorations
impl Debug for CreatePoolError
impl Debug for PoolError
impl Debug for ActivateSlotError
impl Debug for CreateBufferError
impl Debug for InterfaceIndexOrAddress
impl Debug for stable_pattern::pattern::SearchStep
impl Debug for strsim::StrSimError
impl Debug for strsim::StrSimError
impl Debug for StructuredLanguageForm
impl Debug for strum::ParseError
impl Debug for strum::ParseError
impl Debug for SpooledData
impl Debug for time::error::Error
impl Debug for time::error::format::Format
impl Debug for InvalidFormatDescription
impl Debug for time::error::parse::Parse
impl Debug for ParseFromDescription
impl Debug for TryFromParsed
impl Debug for BorrowedFormatItem<'_>
impl Debug for time::format_description::component::Component
impl Debug for MonthRepr
impl Debug for time::format_description::modifier::Padding
impl Debug for SubsecondDigits
impl Debug for UnixTimestampPrecision
impl Debug for WeekNumberRepr
impl Debug for WeekdayRepr
impl Debug for YearRange
impl Debug for YearRepr
impl Debug for OwnedFormatItem
impl Debug for DateKind
impl Debug for FormattedComponents
impl Debug for time::format_description::well_known::iso8601::OffsetPrecision
impl Debug for TimePrecision
impl Debug for time::month::Month
impl Debug for time::weekday::Weekday
impl Debug for tinystr::error::ParseError
impl Debug for AnyDelimiterCodecError
impl Debug for LinesCodecError
impl Debug for toml_datetime::datetime::Offset
impl Debug for toml_edit::ser::Error
impl Debug for ServerErrorsFailureClass
impl Debug for GrpcCode
impl Debug for GrpcFailureClass
impl Debug for StatusInRangeFailureClass
impl Debug for LatencyUnit
impl Debug for tower_http::follow_redirect::policy::Action
impl Debug for ubyte::parse::Error
impl Debug for ucd_trie::owned::Error
impl Debug for EmojiStatus
impl Debug for url::origin::Origin
impl Debug for url::parser::ParseError
impl Debug for SyntaxViolation
impl Debug for url::slicing::Position
impl Debug for AllowNull
impl Debug for ArgumentType
impl Debug for WaylandError
impl Debug for DisconnectReason
impl Debug for wayland_backend::types::server::InitError
impl Debug for wayland_client::conn::ConnectError
impl Debug for DispatchError
impl Debug for BindError
impl Debug for wayland_client::globals::GlobalError
impl Debug for wayland_client::protocol::wl_buffer::Event
impl Debug for wayland_client::protocol::wl_callback::Event
impl Debug for wayland_client::protocol::wl_compositor::Event
impl Debug for wayland_client::protocol::wl_data_device::Error
impl Debug for wayland_client::protocol::wl_data_device::Event
impl Debug for wayland_client::protocol::wl_data_device_manager::Event
impl Debug for wayland_client::protocol::wl_data_offer::Error
impl Debug for wayland_client::protocol::wl_data_offer::Event
impl Debug for wayland_client::protocol::wl_data_source::Error
impl Debug for wayland_client::protocol::wl_data_source::Event
impl Debug for wayland_client::protocol::wl_display::Error
impl Debug for wayland_client::protocol::wl_display::Event
impl Debug for wayland_client::protocol::wl_keyboard::Event
impl Debug for KeyState
impl Debug for KeymapFormat
impl Debug for wayland_client::protocol::wl_output::Event
impl Debug for Subpixel
impl Debug for wayland_client::protocol::wl_output::Transform
impl Debug for Axis
impl Debug for AxisRelativeDirection
impl Debug for AxisSource
impl Debug for wayland_client::protocol::wl_pointer::ButtonState
impl Debug for wayland_client::protocol::wl_pointer::Error
impl Debug for wayland_client::protocol::wl_pointer::Event
impl Debug for wayland_client::protocol::wl_region::Event
impl Debug for wayland_client::protocol::wl_registry::Event
impl Debug for wayland_client::protocol::wl_seat::Error
impl Debug for wayland_client::protocol::wl_seat::Event
impl Debug for wayland_client::protocol::wl_shell::Error
impl Debug for wayland_client::protocol::wl_shell::Event
impl Debug for wayland_client::protocol::wl_shell_surface::Event
impl Debug for FullscreenMethod
impl Debug for wayland_client::protocol::wl_shm::Error
impl Debug for wayland_client::protocol::wl_shm::Event
impl Debug for wayland_client::protocol::wl_shm::Format
impl Debug for wayland_client::protocol::wl_shm_pool::Event
impl Debug for wayland_client::protocol::wl_subcompositor::Error
impl Debug for wayland_client::protocol::wl_subcompositor::Event
impl Debug for wayland_client::protocol::wl_subsurface::Error
impl Debug for wayland_client::protocol::wl_subsurface::Event
impl Debug for wayland_client::protocol::wl_surface::Error
impl Debug for wayland_client::protocol::wl_surface::Event
impl Debug for wayland_client::protocol::wl_touch::Event
impl Debug for FrameAction
impl Debug for FrameClick
impl Debug for wayland_csd_frame::ResizeEdge
impl Debug for wayland_protocols_wlr::data_control::v1::generated::client::zwlr_data_control_device_v1::Error
impl Debug for wayland_protocols_wlr::data_control::v1::generated::client::zwlr_data_control_device_v1::Event
impl Debug for wayland_protocols_wlr::data_control::v1::generated::client::zwlr_data_control_manager_v1::Event
impl Debug for wayland_protocols_wlr::data_control::v1::generated::client::zwlr_data_control_offer_v1::Event
impl Debug for wayland_protocols_wlr::data_control::v1::generated::client::zwlr_data_control_source_v1::Error
impl Debug for wayland_protocols_wlr::data_control::v1::generated::client::zwlr_data_control_source_v1::Event
impl Debug for CancelReason
impl Debug for wayland_protocols_wlr::export_dmabuf::v1::generated::client::zwlr_export_dmabuf_frame_v1::Event
impl Debug for wayland_protocols_wlr::export_dmabuf::v1::generated::client::zwlr_export_dmabuf_frame_v1::Flags
impl Debug for wayland_protocols_wlr::export_dmabuf::v1::generated::client::zwlr_export_dmabuf_manager_v1::Event
impl Debug for wayland_protocols_wlr::foreign_toplevel::v1::generated::client::zwlr_foreign_toplevel_handle_v1::Error
impl Debug for wayland_protocols_wlr::foreign_toplevel::v1::generated::client::zwlr_foreign_toplevel_handle_v1::Event
impl Debug for wayland_protocols_wlr::foreign_toplevel::v1::generated::client::zwlr_foreign_toplevel_handle_v1::State
impl Debug for wayland_protocols_wlr::foreign_toplevel::v1::generated::client::zwlr_foreign_toplevel_manager_v1::Event
impl Debug for wayland_protocols_wlr::gamma_control::v1::generated::client::zwlr_gamma_control_manager_v1::Event
impl Debug for wayland_protocols_wlr::gamma_control::v1::generated::client::zwlr_gamma_control_v1::Error
impl Debug for wayland_protocols_wlr::gamma_control::v1::generated::client::zwlr_gamma_control_v1::Event
impl Debug for wayland_protocols_wlr::input_inhibitor::v1::generated::client::zwlr_input_inhibit_manager_v1::Error
impl Debug for wayland_protocols_wlr::input_inhibitor::v1::generated::client::zwlr_input_inhibit_manager_v1::Event
impl Debug for wayland_protocols_wlr::input_inhibitor::v1::generated::client::zwlr_input_inhibitor_v1::Event
impl Debug for wayland_protocols_wlr::layer_shell::v1::generated::client::zwlr_layer_shell_v1::Error
impl Debug for wayland_protocols_wlr::layer_shell::v1::generated::client::zwlr_layer_shell_v1::Event
impl Debug for wayland_protocols_wlr::layer_shell::v1::generated::client::zwlr_layer_shell_v1::Layer
impl Debug for wayland_protocols_wlr::layer_shell::v1::generated::client::zwlr_layer_surface_v1::Error
impl Debug for wayland_protocols_wlr::layer_shell::v1::generated::client::zwlr_layer_surface_v1::Event
impl Debug for wayland_protocols_wlr::layer_shell::v1::generated::client::zwlr_layer_surface_v1::KeyboardInteractivity
impl Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_configuration_head_v1::Error
impl Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_configuration_head_v1::Event
impl Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_configuration_v1::Error
impl Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_configuration_v1::Event
impl Debug for AdaptiveSyncState
impl Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_head_v1::Event
impl Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_manager_v1::Event
impl Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_mode_v1::Event
impl Debug for wayland_protocols_wlr::output_power_management::v1::generated::client::zwlr_output_power_manager_v1::Event
impl Debug for wayland_protocols_wlr::output_power_management::v1::generated::client::zwlr_output_power_v1::Error
impl Debug for wayland_protocols_wlr::output_power_management::v1::generated::client::zwlr_output_power_v1::Event
impl Debug for wayland_protocols_wlr::output_power_management::v1::generated::client::zwlr_output_power_v1::Mode
impl Debug for wayland_protocols_wlr::screencopy::v1::generated::client::zwlr_screencopy_frame_v1::Error
impl Debug for wayland_protocols_wlr::screencopy::v1::generated::client::zwlr_screencopy_frame_v1::Event
impl Debug for wayland_protocols_wlr::screencopy::v1::generated::client::zwlr_screencopy_manager_v1::Event
impl Debug for wayland_protocols_wlr::virtual_pointer::v1::generated::client::zwlr_virtual_pointer_manager_v1::Event
impl Debug for wayland_protocols_wlr::virtual_pointer::v1::generated::client::zwlr_virtual_pointer_v1::Error
impl Debug for wayland_protocols_wlr::virtual_pointer::v1::generated::client::zwlr_virtual_pointer_v1::Event
impl Debug for wayland_protocols::ext::data_control::v1::generated::client::ext_data_control_device_v1::Error
impl Debug for wayland_protocols::ext::data_control::v1::generated::client::ext_data_control_device_v1::Event
impl Debug for wayland_protocols::ext::data_control::v1::generated::client::ext_data_control_manager_v1::Event
impl Debug for wayland_protocols::ext::data_control::v1::generated::client::ext_data_control_offer_v1::Event
impl Debug for wayland_protocols::ext::data_control::v1::generated::client::ext_data_control_source_v1::Error
impl Debug for wayland_protocols::ext::data_control::v1::generated::client::ext_data_control_source_v1::Event
impl Debug for wayland_protocols::ext::foreign_toplevel_list::v1::generated::client::ext_foreign_toplevel_handle_v1::Event
impl Debug for wayland_protocols::ext::foreign_toplevel_list::v1::generated::client::ext_foreign_toplevel_list_v1::Event
impl Debug for wayland_protocols::ext::idle_notify::v1::generated::client::ext_idle_notification_v1::Event
impl Debug for wayland_protocols::ext::idle_notify::v1::generated::client::ext_idle_notifier_v1::Event
impl Debug for wayland_protocols::ext::image_capture_source::v1::generated::client::ext_foreign_toplevel_image_capture_source_manager_v1::Event
impl Debug for wayland_protocols::ext::image_capture_source::v1::generated::client::ext_image_capture_source_v1::Event
impl Debug for wayland_protocols::ext::image_capture_source::v1::generated::client::ext_output_image_capture_source_manager_v1::Event
impl Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_cursor_session_v1::Error
impl Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_cursor_session_v1::Event
impl Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_frame_v1::Error
impl Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_frame_v1::Event
impl Debug for FailureReason
impl Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_manager_v1::Error
impl Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_manager_v1::Event
impl Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_session_v1::Error
impl Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_session_v1::Event
impl Debug for wayland_protocols::ext::session_lock::v1::generated::client::ext_session_lock_manager_v1::Event
impl Debug for wayland_protocols::ext::session_lock::v1::generated::client::ext_session_lock_surface_v1::Error
impl Debug for wayland_protocols::ext::session_lock::v1::generated::client::ext_session_lock_surface_v1::Event
impl Debug for wayland_protocols::ext::session_lock::v1::generated::client::ext_session_lock_v1::Error
impl Debug for wayland_protocols::ext::session_lock::v1::generated::client::ext_session_lock_v1::Event
impl Debug for wayland_protocols::ext::transient_seat::v1::generated::client::ext_transient_seat_manager_v1::Event
impl Debug for wayland_protocols::ext::transient_seat::v1::generated::client::ext_transient_seat_v1::Event
impl Debug for wayland_protocols::ext::workspace::v1::generated::client::ext_workspace_group_handle_v1::Event
impl Debug for wayland_protocols::ext::workspace::v1::generated::client::ext_workspace_handle_v1::Event
impl Debug for wayland_protocols::ext::workspace::v1::generated::client::ext_workspace_manager_v1::Event
impl Debug for wayland_protocols::wp::alpha_modifier::v1::generated::client::wp_alpha_modifier_surface_v1::Error
impl Debug for wayland_protocols::wp::alpha_modifier::v1::generated::client::wp_alpha_modifier_surface_v1::Event
impl Debug for wayland_protocols::wp::alpha_modifier::v1::generated::client::wp_alpha_modifier_v1::Error
impl Debug for wayland_protocols::wp::alpha_modifier::v1::generated::client::wp_alpha_modifier_v1::Event
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_management_output_v1::Event
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_management_surface_feedback_v1::Error
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_management_surface_feedback_v1::Event
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_management_surface_v1::Error
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_management_surface_v1::Event
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_manager_v1::Error
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_manager_v1::Event
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_manager_v1::Feature
impl Debug for Primaries
impl Debug for RenderIntent
impl Debug for TransferFunction
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_image_description_creator_icc_v1::Error
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_image_description_creator_icc_v1::Event
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_image_description_creator_params_v1::Error
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_image_description_creator_params_v1::Event
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_image_description_info_v1::Event
impl Debug for Cause
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_image_description_v1::Error
impl Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_image_description_v1::Event
impl Debug for wayland_protocols::wp::color_representation::v1::generated::client::wp_color_representation_manager_v1::Error
impl Debug for wayland_protocols::wp::color_representation::v1::generated::client::wp_color_representation_manager_v1::Event
impl Debug for AlphaMode
impl Debug for ChromaLocation
impl Debug for Coefficients
impl Debug for wayland_protocols::wp::color_representation::v1::generated::client::wp_color_representation_surface_v1::Error
impl Debug for wayland_protocols::wp::color_representation::v1::generated::client::wp_color_representation_surface_v1::Event
impl Debug for wayland_protocols::wp::color_representation::v1::generated::client::wp_color_representation_surface_v1::Range
impl Debug for wayland_protocols::wp::commit_timing::v1::generated::client::wp_commit_timer_v1::Error
impl Debug for wayland_protocols::wp::commit_timing::v1::generated::client::wp_commit_timer_v1::Event
impl Debug for wayland_protocols::wp::commit_timing::v1::generated::client::wp_commit_timing_manager_v1::Error
impl Debug for wayland_protocols::wp::commit_timing::v1::generated::client::wp_commit_timing_manager_v1::Event
impl Debug for wayland_protocols::wp::content_type::v1::generated::client::wp_content_type_manager_v1::Error
impl Debug for wayland_protocols::wp::content_type::v1::generated::client::wp_content_type_manager_v1::Event
impl Debug for wayland_protocols::wp::content_type::v1::generated::client::wp_content_type_v1::Event
impl Debug for wayland_protocols::wp::content_type::v1::generated::client::wp_content_type_v1::Type
impl Debug for wayland_protocols::wp::cursor_shape::v1::generated::client::wp_cursor_shape_device_v1::Error
impl Debug for wayland_protocols::wp::cursor_shape::v1::generated::client::wp_cursor_shape_device_v1::Event
impl Debug for Shape
impl Debug for wayland_protocols::wp::cursor_shape::v1::generated::client::wp_cursor_shape_manager_v1::Event
impl Debug for wayland_protocols::wp::drm_lease::v1::generated::client::wp_drm_lease_connector_v1::Event
impl Debug for wayland_protocols::wp::drm_lease::v1::generated::client::wp_drm_lease_device_v1::Event
impl Debug for wayland_protocols::wp::drm_lease::v1::generated::client::wp_drm_lease_request_v1::Error
impl Debug for wayland_protocols::wp::drm_lease::v1::generated::client::wp_drm_lease_request_v1::Event
impl Debug for wayland_protocols::wp::drm_lease::v1::generated::client::wp_drm_lease_v1::Event
impl Debug for wayland_protocols::wp::fifo::v1::generated::client::wp_fifo_manager_v1::Error
impl Debug for wayland_protocols::wp::fifo::v1::generated::client::wp_fifo_manager_v1::Event
impl Debug for wayland_protocols::wp::fifo::v1::generated::client::wp_fifo_v1::Error
impl Debug for wayland_protocols::wp::fifo::v1::generated::client::wp_fifo_v1::Event
impl Debug for wayland_protocols::wp::fractional_scale::v1::generated::client::wp_fractional_scale_manager_v1::Error
impl Debug for wayland_protocols::wp::fractional_scale::v1::generated::client::wp_fractional_scale_manager_v1::Event
impl Debug for wayland_protocols::wp::fractional_scale::v1::generated::client::wp_fractional_scale_v1::Event
impl Debug for wayland_protocols::wp::fullscreen_shell::zv1::generated::client::zwp_fullscreen_shell_mode_feedback_v1::Event
impl Debug for wayland_protocols::wp::fullscreen_shell::zv1::generated::client::zwp_fullscreen_shell_v1::Capability
impl Debug for wayland_protocols::wp::fullscreen_shell::zv1::generated::client::zwp_fullscreen_shell_v1::Error
impl Debug for wayland_protocols::wp::fullscreen_shell::zv1::generated::client::zwp_fullscreen_shell_v1::Event
impl Debug for PresentMethod
impl Debug for wayland_protocols::wp::idle_inhibit::zv1::generated::client::zwp_idle_inhibit_manager_v1::Event
impl Debug for wayland_protocols::wp::idle_inhibit::zv1::generated::client::zwp_idle_inhibitor_v1::Event
impl Debug for wayland_protocols::wp::input_method::zv1::generated::client::zwp_input_method_context_v1::Event
impl Debug for wayland_protocols::wp::input_method::zv1::generated::client::zwp_input_method_v1::Event
impl Debug for wayland_protocols::wp::input_method::zv1::generated::client::zwp_input_panel_surface_v1::Event
impl Debug for wayland_protocols::wp::input_method::zv1::generated::client::zwp_input_panel_surface_v1::Position
impl Debug for wayland_protocols::wp::input_method::zv1::generated::client::zwp_input_panel_v1::Event
impl Debug for wayland_protocols::wp::input_timestamps::zv1::generated::client::zwp_input_timestamps_manager_v1::Event
impl Debug for wayland_protocols::wp::input_timestamps::zv1::generated::client::zwp_input_timestamps_v1::Event
impl Debug for wayland_protocols::wp::keyboard_shortcuts_inhibit::zv1::generated::client::zwp_keyboard_shortcuts_inhibit_manager_v1::Error
impl Debug for wayland_protocols::wp::keyboard_shortcuts_inhibit::zv1::generated::client::zwp_keyboard_shortcuts_inhibit_manager_v1::Event
impl Debug for wayland_protocols::wp::keyboard_shortcuts_inhibit::zv1::generated::client::zwp_keyboard_shortcuts_inhibitor_v1::Event
impl Debug for wayland_protocols::wp::linux_dmabuf::zv1::generated::client::zwp_linux_buffer_params_v1::Error
impl Debug for wayland_protocols::wp::linux_dmabuf::zv1::generated::client::zwp_linux_buffer_params_v1::Event
impl Debug for wayland_protocols::wp::linux_dmabuf::zv1::generated::client::zwp_linux_dmabuf_feedback_v1::Event
impl Debug for wayland_protocols::wp::linux_dmabuf::zv1::generated::client::zwp_linux_dmabuf_v1::Event
impl Debug for wayland_protocols::wp::linux_drm_syncobj::v1::generated::client::wp_linux_drm_syncobj_manager_v1::Error
impl Debug for wayland_protocols::wp::linux_drm_syncobj::v1::generated::client::wp_linux_drm_syncobj_manager_v1::Event
impl Debug for wayland_protocols::wp::linux_drm_syncobj::v1::generated::client::wp_linux_drm_syncobj_surface_v1::Error
impl Debug for wayland_protocols::wp::linux_drm_syncobj::v1::generated::client::wp_linux_drm_syncobj_surface_v1::Event
impl Debug for wayland_protocols::wp::linux_drm_syncobj::v1::generated::client::wp_linux_drm_syncobj_timeline_v1::Event
impl Debug for wayland_protocols::wp::linux_explicit_synchronization::zv1::generated::client::zwp_linux_buffer_release_v1::Event
impl Debug for wayland_protocols::wp::linux_explicit_synchronization::zv1::generated::client::zwp_linux_explicit_synchronization_v1::Error
impl Debug for wayland_protocols::wp::linux_explicit_synchronization::zv1::generated::client::zwp_linux_explicit_synchronization_v1::Event
impl Debug for wayland_protocols::wp::linux_explicit_synchronization::zv1::generated::client::zwp_linux_surface_synchronization_v1::Error
impl Debug for wayland_protocols::wp::linux_explicit_synchronization::zv1::generated::client::zwp_linux_surface_synchronization_v1::Event
impl Debug for wayland_protocols::wp::pointer_constraints::zv1::generated::client::zwp_confined_pointer_v1::Event
impl Debug for wayland_protocols::wp::pointer_constraints::zv1::generated::client::zwp_locked_pointer_v1::Event
impl Debug for wayland_protocols::wp::pointer_constraints::zv1::generated::client::zwp_pointer_constraints_v1::Error
impl Debug for wayland_protocols::wp::pointer_constraints::zv1::generated::client::zwp_pointer_constraints_v1::Event
impl Debug for wayland_protocols::wp::pointer_constraints::zv1::generated::client::zwp_pointer_constraints_v1::Lifetime
impl Debug for wayland_protocols::wp::pointer_gestures::zv1::generated::client::zwp_pointer_gesture_hold_v1::Event
impl Debug for wayland_protocols::wp::pointer_gestures::zv1::generated::client::zwp_pointer_gesture_pinch_v1::Event
impl Debug for wayland_protocols::wp::pointer_gestures::zv1::generated::client::zwp_pointer_gesture_swipe_v1::Event
impl Debug for wayland_protocols::wp::pointer_gestures::zv1::generated::client::zwp_pointer_gestures_v1::Event
impl Debug for wayland_protocols::wp::presentation_time::generated::client::wp_presentation::Error
impl Debug for wayland_protocols::wp::presentation_time::generated::client::wp_presentation::Event
impl Debug for wayland_protocols::wp::presentation_time::generated::client::wp_presentation_feedback::Event
impl Debug for wayland_protocols::wp::primary_selection::zv1::generated::client::zwp_primary_selection_device_manager_v1::Event
impl Debug for wayland_protocols::wp::primary_selection::zv1::generated::client::zwp_primary_selection_device_v1::Event
impl Debug for wayland_protocols::wp::primary_selection::zv1::generated::client::zwp_primary_selection_offer_v1::Event
impl Debug for wayland_protocols::wp::primary_selection::zv1::generated::client::zwp_primary_selection_source_v1::Event
impl Debug for wayland_protocols::wp::relative_pointer::zv1::generated::client::zwp_relative_pointer_manager_v1::Event
impl Debug for wayland_protocols::wp::relative_pointer::zv1::generated::client::zwp_relative_pointer_v1::Event
impl Debug for wayland_protocols::wp::security_context::v1::generated::client::wp_security_context_manager_v1::Error
impl Debug for wayland_protocols::wp::security_context::v1::generated::client::wp_security_context_manager_v1::Event
impl Debug for wayland_protocols::wp::security_context::v1::generated::client::wp_security_context_v1::Error
impl Debug for wayland_protocols::wp::security_context::v1::generated::client::wp_security_context_v1::Event
impl Debug for wayland_protocols::wp::single_pixel_buffer::v1::generated::client::wp_single_pixel_buffer_manager_v1::Event
impl Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_manager_v1::Event
impl Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_seat_v1::Event
impl Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_tool_v1::ButtonState
impl Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_tool_v1::Capability
impl Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_tool_v1::Error
impl Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_tool_v1::Event
impl Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_tool_v1::Type
impl Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_v1::Event
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_manager_v2::Event
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_pad_group_v2::Event
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_pad_ring_v2::Event
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_pad_ring_v2::Source
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_pad_strip_v2::Event
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_pad_strip_v2::Source
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_pad_v2::ButtonState
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_pad_v2::Event
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_seat_v2::Event
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_tool_v2::ButtonState
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_tool_v2::Capability
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_tool_v2::Error
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_tool_v2::Event
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_tool_v2::Type
impl Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_v2::Event
impl Debug for wayland_protocols::wp::tearing_control::v1::generated::client::wp_tearing_control_manager_v1::Error
impl Debug for wayland_protocols::wp::tearing_control::v1::generated::client::wp_tearing_control_manager_v1::Event
impl Debug for wayland_protocols::wp::tearing_control::v1::generated::client::wp_tearing_control_v1::Event
impl Debug for PresentationHint
impl Debug for wayland_protocols::wp::text_input::zv1::generated::client::zwp_text_input_manager_v1::Event
impl Debug for wayland_protocols::wp::text_input::zv1::generated::client::zwp_text_input_v1::ContentPurpose
impl Debug for wayland_protocols::wp::text_input::zv1::generated::client::zwp_text_input_v1::Event
impl Debug for PreeditStyle
impl Debug for TextDirection
impl Debug for wayland_protocols::wp::text_input::zv3::generated::client::zwp_text_input_manager_v3::Event
impl Debug for ChangeCause
impl Debug for wayland_protocols::wp::text_input::zv3::generated::client::zwp_text_input_v3::ContentPurpose
impl Debug for wayland_protocols::wp::text_input::zv3::generated::client::zwp_text_input_v3::Event
impl Debug for wayland_protocols::wp::viewporter::generated::client::wp_viewport::Error
impl Debug for wayland_protocols::wp::viewporter::generated::client::wp_viewport::Event
impl Debug for wayland_protocols::wp::viewporter::generated::client::wp_viewporter::Error
impl Debug for wayland_protocols::wp::viewporter::generated::client::wp_viewporter::Event
impl Debug for wayland_protocols::xdg::activation::v1::generated::client::xdg_activation_token_v1::Error
impl Debug for wayland_protocols::xdg::activation::v1::generated::client::xdg_activation_token_v1::Event
impl Debug for wayland_protocols::xdg::activation::v1::generated::client::xdg_activation_v1::Event
impl Debug for wayland_protocols::xdg::decoration::zv1::generated::client::zxdg_decoration_manager_v1::Event
impl Debug for wayland_protocols::xdg::decoration::zv1::generated::client::zxdg_toplevel_decoration_v1::Error
impl Debug for wayland_protocols::xdg::decoration::zv1::generated::client::zxdg_toplevel_decoration_v1::Event
impl Debug for wayland_protocols::xdg::decoration::zv1::generated::client::zxdg_toplevel_decoration_v1::Mode
impl Debug for wayland_protocols::xdg::dialog::v1::generated::client::xdg_dialog_v1::Event
impl Debug for wayland_protocols::xdg::dialog::v1::generated::client::xdg_wm_dialog_v1::Error
impl Debug for wayland_protocols::xdg::dialog::v1::generated::client::xdg_wm_dialog_v1::Event
impl Debug for wayland_protocols::xdg::foreign::zv1::generated::client::zxdg_exported_v1::Event
impl Debug for wayland_protocols::xdg::foreign::zv1::generated::client::zxdg_exporter_v1::Event
impl Debug for wayland_protocols::xdg::foreign::zv1::generated::client::zxdg_imported_v1::Event
impl Debug for wayland_protocols::xdg::foreign::zv1::generated::client::zxdg_importer_v1::Event
impl Debug for wayland_protocols::xdg::foreign::zv2::generated::client::zxdg_exported_v2::Event
impl Debug for wayland_protocols::xdg::foreign::zv2::generated::client::zxdg_exporter_v2::Error
impl Debug for wayland_protocols::xdg::foreign::zv2::generated::client::zxdg_exporter_v2::Event
impl Debug for wayland_protocols::xdg::foreign::zv2::generated::client::zxdg_imported_v2::Error
impl Debug for wayland_protocols::xdg::foreign::zv2::generated::client::zxdg_imported_v2::Event
impl Debug for wayland_protocols::xdg::foreign::zv2::generated::client::zxdg_importer_v2::Event
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_popup::Error
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_popup::Event
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_positioner::Anchor
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_positioner::Error
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_positioner::Event
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_positioner::Gravity
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_surface::Error
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_surface::Event
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_toplevel::Error
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_toplevel::Event
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_toplevel::ResizeEdge
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_toplevel::State
impl Debug for WmCapabilities
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_wm_base::Error
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_wm_base::Event
impl Debug for wayland_protocols::xdg::system_bell::v1::generated::client::xdg_system_bell_v1::Event
impl Debug for wayland_protocols::xdg::toplevel_drag::v1::generated::client::xdg_toplevel_drag_manager_v1::Error
impl Debug for wayland_protocols::xdg::toplevel_drag::v1::generated::client::xdg_toplevel_drag_manager_v1::Event
impl Debug for wayland_protocols::xdg::toplevel_drag::v1::generated::client::xdg_toplevel_drag_v1::Error
impl Debug for wayland_protocols::xdg::toplevel_drag::v1::generated::client::xdg_toplevel_drag_v1::Event
impl Debug for wayland_protocols::xdg::toplevel_icon::v1::generated::client::xdg_toplevel_icon_manager_v1::Event
impl Debug for wayland_protocols::xdg::toplevel_icon::v1::generated::client::xdg_toplevel_icon_v1::Error
impl Debug for wayland_protocols::xdg::toplevel_icon::v1::generated::client::xdg_toplevel_icon_v1::Event
impl Debug for wayland_protocols::xdg::toplevel_tag::v1::generated::client::xdg_toplevel_tag_manager_v1::Event
impl Debug for wayland_protocols::xdg::xdg_output::zv1::generated::client::zxdg_output_manager_v1::Event
impl Debug for wayland_protocols::xdg::xdg_output::zv1::generated::client::zxdg_output_v1::Event
impl Debug for wayland_protocols::xwayland::keyboard_grab::zv1::generated::client::zwp_xwayland_keyboard_grab_manager_v1::Event
impl Debug for wayland_protocols::xwayland::keyboard_grab::zv1::generated::client::zwp_xwayland_keyboard_grab_v1::Event
impl Debug for wayland_protocols::xwayland::shell::v1::generated::client::xwayland_shell_v1::Error
impl Debug for wayland_protocols::xwayland::shell::v1::generated::client::xwayland_shell_v1::Event
impl Debug for wayland_protocols::xwayland::shell::v1::generated::client::xwayland_surface_v1::Error
impl Debug for wayland_protocols::xwayland::shell::v1::generated::client::xwayland_surface_v1::Event
impl Debug for NonFatalError
impl Debug for winnow::binary::Endianness
impl Debug for winnow::error::Needed
impl Debug for StrContext
impl Debug for StrContextValue
impl Debug for winnow::stream::CompareResult
impl Debug for x11_clipboard::error::Error
impl Debug for PollReply
impl Debug for ReplyFdKind
impl Debug for DiscardMode
impl Debug for x11rb_protocol::errors::ConnectError
impl Debug for DisplayParsingError
impl Debug for x11rb_protocol::errors::ParseError
impl Debug for x11rb_protocol::protocol::ErrorKind
impl Debug for x11rb_protocol::protocol::Event
impl Debug for Reply
impl Debug for BigRequests
impl Debug for RequestKind
impl Debug for ConnectionError
impl Debug for ReplyError
impl Debug for ReplyOrIdError
impl Debug for WmHintsState
impl Debug for WmSizeHintsSpecification
impl Debug for x11rb::rust_connection::stream::PollMode
impl Debug for yansi::attr_quirk::Attribute
impl Debug for Quirk
impl Debug for yansi::color::Color
impl Debug for BigEndian
impl Debug for LittleEndian
impl Debug for ZeroTrieBuildError
impl Debug for UleError
impl Debug for capability_3p::io::SeekFrom
impl Debug for capability_3p::mpsc::error::TryRecvError
impl Debug for RuntimeFlavor
impl Debug for capability_3p::tokio::sync::broadcast::error::RecvError
impl Debug for capability_3p::tokio::sync::broadcast::error::TryRecvError
impl Debug for TryAcquireError
impl Debug for capability_3p::tokio::sync::oneshot::error::TryRecvError
impl Debug for MissedTickBehavior
impl Debug for EscapeError
impl Debug for capability_3p::unescape::Mode
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 TreeDiff
impl Debug for IndentLevel
impl Debug for Abi
impl Debug for AnyHasArgList
impl Debug for AnyHasAttrs
impl Debug for AnyHasDocComments
impl Debug for AnyHasGenericArgs
impl Debug for AnyHasGenericParams
impl Debug for AnyHasLoopBody
impl Debug for AnyHasModuleItem
impl Debug for AnyHasName
impl Debug for AnyHasTypeBounds
impl Debug for AnyHasVisibility
impl Debug for ArgList
impl Debug for ArrayExpr
impl Debug for ArrayType
impl Debug for AsmClobberAbi
impl Debug for AsmConst
impl Debug for AsmDirSpec
impl Debug for AsmExpr
impl Debug for AsmLabel
impl Debug for AsmOperandExpr
impl Debug for AsmOperandNamed
impl Debug for AsmOption
impl Debug for AsmOptions
impl Debug for AsmRegOperand
impl Debug for AsmRegSpec
impl Debug for AsmSym
impl Debug for AssocItemList
impl Debug for AssocTypeArg
impl Debug for Attr
impl Debug for AwaitExpr
impl Debug for BecomeExpr
impl Debug for BinExpr
impl Debug for BlockExpr
impl Debug for BoxPat
impl Debug for BreakExpr
impl Debug for Byte
impl Debug for capability_3p::ast::ByteString
impl Debug for capability_3p::ast::CString
impl Debug for CallExpr
impl Debug for CastExpr
impl Debug for Char
impl Debug for ClosureBinder
impl Debug for ClosureExpr
impl Debug for capability_3p::ast::Comment
impl Debug for CommentKind
impl Debug for Const
impl Debug for ConstArg
impl Debug for ConstBlockPat
impl Debug for ConstParam
impl Debug for ContinueExpr
impl Debug for DynTraitType
impl Debug for Enum
impl Debug for ExprStmt
impl Debug for ExternBlock
impl Debug for ExternCrate
impl Debug for ExternItemList
impl Debug for FieldExpr
impl Debug for FloatNumber
impl Debug for Fn
impl Debug for FnPtrType
impl Debug for ForExpr
impl Debug for ForType
impl Debug for FormatArgsArg
impl Debug for FormatArgsExpr
impl Debug for GenericArgList
impl Debug for GenericParamList
impl Debug for capability_3p::ast::Ident
impl Debug for IdentPat
impl Debug for IfExpr
impl Debug for Impl
impl Debug for ImplTraitType
impl Debug for IndexExpr
impl Debug for InferType
impl Debug for IntNumber
impl Debug for ItemList
impl Debug for Label
impl Debug for LetElse
impl Debug for LetExpr
impl Debug for LetStmt
impl Debug for capability_3p::ast::Lifetime
impl Debug for LifetimeArg
impl Debug for LifetimeParam
impl Debug for capability_3p::ast::Literal
impl Debug for LiteralPat
impl Debug for LoopExpr
impl Debug for MacroCall
impl Debug for MacroDef
impl Debug for MacroExpr
impl Debug for MacroItems
impl Debug for MacroPat
impl Debug for MacroRules
impl Debug for MacroStmts
impl Debug for MacroType
impl Debug for MatchArm
impl Debug for MatchArmList
impl Debug for MatchExpr
impl Debug for MatchGuard
impl Debug for Meta
impl Debug for MethodCallExpr
impl Debug for Module
impl Debug for capability_3p::ast::Name
impl Debug for NameRef
impl Debug for NeverType
impl Debug for OffsetOfExpr
impl Debug for OrPat
impl Debug for Param
impl Debug for ParamList
impl Debug for ParenExpr
impl Debug for ParenPat
impl Debug for ParenType
impl Debug for capability_3p::ast::Path
impl Debug for PathExpr
impl Debug for PathPat
impl Debug for PathSegment
impl Debug for PathType
impl Debug for PrefixExpr
impl Debug for PtrType
impl Debug for QuoteOffsets
impl Debug for RangeExpr
impl Debug for RangePat
impl Debug for RecordExpr
impl Debug for RecordExprField
impl Debug for RecordExprFieldList
impl Debug for RecordField
impl Debug for RecordFieldList
impl Debug for RecordPat
impl Debug for RecordPatField
impl Debug for RecordPatFieldList
impl Debug for RefExpr
impl Debug for RefPat
impl Debug for RefType
impl Debug for Rename
impl Debug for RestPat
impl Debug for RetType
impl Debug for ReturnExpr
impl Debug for ReturnTypeSyntax
impl Debug for SelfParam
impl Debug for SlicePat
impl Debug for SliceType
impl Debug for Static
impl Debug for StmtList
impl Debug for capability_3p::ast::String
impl Debug for Struct
impl Debug for TokenTree
impl Debug for Trait
impl Debug for TraitAlias
impl Debug for TryExpr
impl Debug for TupleExpr
impl Debug for TupleField
impl Debug for TupleFieldList
impl Debug for TuplePat
impl Debug for TupleStructPat
impl Debug for TupleType
impl Debug for TypeAlias
impl Debug for TypeArg
impl Debug for TypeBound
impl Debug for TypeBoundList
impl Debug for TypeParam
impl Debug for UnderscoreExpr
impl Debug for capability_3p::ast::Union
impl Debug for Use
impl Debug for UseTree
impl Debug for UseTreeList
impl Debug for capability_3p::ast::Variant
impl Debug for VariantList
impl Debug for capability_3p::ast::Visibility
impl Debug for WhereClause
impl Debug for WherePred
impl Debug for WhileExpr
impl Debug for Whitespace
impl Debug for WildcardPat
impl Debug for YeetExpr
impl Debug for YieldExpr
impl Debug for ColoredString
impl Debug for CustomColor
impl Debug for capability_3p::colored::Style
impl Debug for Arguments<'_>
impl Debug for capability_3p::fmt::Error
impl Debug for FormattingOptions
impl Debug for capability_3p::fs::DirBuilder
impl Debug for capability_3p::fs::DirEntry
impl Debug for capability_3p::fs::OpenOptions
impl Debug for capability_3p::fs::ReadDir
impl Debug for alloc::alloc::Global
impl Debug for Box<dyn Interpolator<Output = String>>
impl Debug for Box<dyn for<'a> FilterMap<Output = Option<Uncased<'a>>>>
impl Debug for alloc::bstr::ByteString
impl Debug for UnorderedKeyError
impl Debug for alloc::collections::TryReserveError
impl Debug for alloc::ffi::c_str::CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for alloc::string::String
impl Debug for Layout
impl Debug for LayoutError
impl Debug for core::alloc::AllocError
impl Debug for TypeId
impl Debug for TryFromSliceError
impl Debug for core::ascii::EscapeDefault
impl Debug for ByteStr
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for ParseCharError
impl Debug for DecodeUtf16Error
impl Debug for core::char::EscapeDebug
impl Debug for core::char::EscapeDefault
impl Debug for core::char::EscapeUnicode
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for CpuidResult
impl Debug for __m128
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128h
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for bf16
impl Debug for CStr
Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
impl Debug for FromBytesUntilNulError
impl Debug for SipHasher
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomPinned
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
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 core::panic::location::Location<'_>
impl Debug for PanicMessage<'_>
impl Debug for core::ptr::alignment::Alignment
impl Debug for ParseBoolError
impl Debug for Utf8Error
impl Debug for Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for Utf8Chunks<'_>
impl Debug for AtomicBool
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 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 RandomState
impl Debug for WriterPanicked
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for std::io::stdio::Stderr
impl Debug for StderrLock<'_>
impl Debug for std::io::stdio::Stdin
impl Debug for StdinLock<'_>
impl Debug for std::io::stdio::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 NormalizeError
impl Debug for StripPrefixError
impl Debug for std::process::Child
impl Debug for std::process::ChildStderr
impl Debug for std::process::ChildStdin
impl Debug for std::process::ChildStdout
impl Debug for std::process::Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for DefaultRandomSource
impl Debug for std::sync::barrier::Barrier
impl Debug for std::sync::barrier::BarrierWaitResult
impl Debug for std::sync::mpsc::RecvError
impl Debug for std::sync::nonpoison::condvar::Condvar
impl Debug for WouldBlock
impl Debug for std::sync::once::Once
impl Debug for std::sync::once::OnceState
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for std::sync::WaitTimeoutResult
impl Debug for std::time::Instant
impl Debug for std::time::SystemTime
impl Debug for SystemTimeError
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 ansi_term::ansi::Infix
impl Debug for ansi_term::ansi::Prefix
impl Debug for ansi_term::ansi::Suffix
impl Debug for ansi_term::style::Style
Styles have a special Debug implementation that only shows the fields that
are set. Fields that haven’t been touched aren’t included in the output.
This behaviour gets bypassed when using the alternate formatting mode
format!("{:#?}").
use ansi_term::Colour::{Red, Blue};
assert_eq!("Style { fg(Red), on(Blue), bold, italic }",
format!("{:?}", Red.on(Blue).bold().italic()));impl Debug for StripBytes
impl Debug for StripStr
impl Debug for WinconBytes
impl Debug for anstyle_parse::params::Params
impl Debug for AsciiParser
impl Debug for Utf8Parser
impl Debug for Ansi256Color
impl Debug for RgbColor
impl Debug for EffectIter
impl Debug for Effects
§Examples
let effects = anstyle::Effects::new();
assert_eq!(format!("{:?}", effects), "Effects()");
let effects = anstyle::Effects::BOLD | anstyle::Effects::UNDERLINE;
assert_eq!(format!("{:?}", effects), "Effects(BOLD | UNDERLINE)");impl Debug for Reset
impl Debug for anstyle::style::Style
impl Debug for async_channel::RecvError
impl Debug for async_openai::config::AzureConfig
impl Debug for async_openai::config::AzureConfig
impl Debug for async_openai::config::OpenAIConfig
impl Debug for async_openai::config::OpenAIConfig
impl Debug for async_openai::error::ApiError
impl Debug for async_openai::error::ApiError
impl Debug for WrappedError
impl Debug for async_openai::types::assistant::AssistantObject
impl Debug for async_openai::types::assistant::AssistantObject
impl Debug for async_openai::types::assistant::AssistantToolCodeInterpreterResources
impl Debug for async_openai::types::assistant::AssistantToolCodeInterpreterResources
impl Debug for async_openai::types::assistant::AssistantToolFileSearchResources
impl Debug for async_openai::types::assistant::AssistantToolFileSearchResources
impl Debug for async_openai::types::assistant::AssistantToolResources
impl Debug for async_openai::types::assistant::AssistantToolResources
impl Debug for async_openai::types::assistant::AssistantToolsFileSearch
impl Debug for async_openai::types::assistant::AssistantToolsFileSearch
impl Debug for async_openai::types::assistant::AssistantToolsFileSearchOverrides
impl Debug for async_openai::types::assistant::AssistantToolsFileSearchOverrides
impl Debug for async_openai::types::assistant::AssistantToolsFunction
impl Debug for async_openai::types::assistant::AssistantToolsFunction
impl Debug for async_openai::types::assistant::AssistantVectorStore
impl Debug for async_openai::types::assistant::AssistantVectorStore
impl Debug for async_openai::types::assistant::AssistantsNamedToolChoice
impl Debug for async_openai::types::assistant::AssistantsNamedToolChoice
impl Debug for async_openai::types::assistant::CreateAssistantRequest
impl Debug for async_openai::types::assistant::CreateAssistantRequest
impl Debug for async_openai::types::assistant::CreateAssistantRequestArgs
impl Debug for async_openai::types::assistant::CreateAssistantRequestArgs
impl Debug for async_openai::types::assistant::CreateAssistantToolFileSearchResources
impl Debug for async_openai::types::assistant::CreateAssistantToolFileSearchResources
impl Debug for async_openai::types::assistant::CreateAssistantToolResources
impl Debug for async_openai::types::assistant::CreateAssistantToolResources
impl Debug for async_openai::types::assistant::DeleteAssistantResponse
impl Debug for async_openai::types::assistant::DeleteAssistantResponse
impl Debug for async_openai::types::assistant::FileSearchRankingOptions
impl Debug for async_openai::types::assistant::FileSearchRankingOptions
impl Debug for async_openai::types::assistant::ListAssistantsResponse
impl Debug for async_openai::types::assistant::ListAssistantsResponse
impl Debug for async_openai::types::assistant::ModifyAssistantRequest
impl Debug for async_openai::types::assistant::ModifyAssistantRequest
impl Debug for async_openai::types::assistant::ModifyAssistantRequestArgs
impl Debug for async_openai::types::assistant::ModifyAssistantRequestArgs
impl Debug for async_openai::types::assistant::StaticChunkingStrategy
impl Debug for async_openai::types::assistant::StaticChunkingStrategy
impl Debug for AssistantFileObject
impl Debug for CreateAssistantFileRequest
impl Debug for DeleteAssistantFileResponse
impl Debug for ListAssistantFilesResponse
impl Debug for async_openai::types::audio::AudioInput
impl Debug for async_openai::types::audio::AudioInput
impl Debug for async_openai::types::audio::CreateSpeechRequest
impl Debug for async_openai::types::audio::CreateSpeechRequest
impl Debug for async_openai::types::audio::CreateSpeechRequestArgs
impl Debug for async_openai::types::audio::CreateSpeechRequestArgs
impl Debug for async_openai::types::audio::CreateSpeechResponse
impl Debug for async_openai::types::audio::CreateSpeechResponse
impl Debug for async_openai::types::audio::CreateTranscriptionRequest
impl Debug for async_openai::types::audio::CreateTranscriptionRequest
impl Debug for async_openai::types::audio::CreateTranscriptionRequestArgs
impl Debug for async_openai::types::audio::CreateTranscriptionRequestArgs
impl Debug for async_openai::types::audio::CreateTranscriptionResponseJson
impl Debug for async_openai::types::audio::CreateTranscriptionResponseJson
impl Debug for async_openai::types::audio::CreateTranscriptionResponseVerboseJson
impl Debug for async_openai::types::audio::CreateTranscriptionResponseVerboseJson
impl Debug for async_openai::types::audio::CreateTranslationRequest
impl Debug for async_openai::types::audio::CreateTranslationRequest
impl Debug for async_openai::types::audio::CreateTranslationRequestArgs
impl Debug for async_openai::types::audio::CreateTranslationRequestArgs
impl Debug for async_openai::types::audio::CreateTranslationResponseJson
impl Debug for async_openai::types::audio::CreateTranslationResponseJson
impl Debug for async_openai::types::audio::CreateTranslationResponseVerboseJson
impl Debug for async_openai::types::audio::CreateTranslationResponseVerboseJson
impl Debug for async_openai::types::audio::TranscriptionSegment
impl Debug for async_openai::types::audio::TranscriptionSegment
impl Debug for async_openai::types::audio::TranscriptionWord
impl Debug for async_openai::types::audio::TranscriptionWord
impl Debug for async_openai::types::audit_log::AuditLog
impl Debug for async_openai::types::audit_log::AuditLog
impl Debug for async_openai::types::audit_log::AuditLogActor
impl Debug for async_openai::types::audit_log::AuditLogActor
impl Debug for async_openai::types::audit_log::AuditLogActorApiKey
impl Debug for async_openai::types::audit_log::AuditLogActorApiKey
impl Debug for async_openai::types::audit_log::AuditLogActorServiceAccount
impl Debug for async_openai::types::audit_log::AuditLogActorServiceAccount
impl Debug for async_openai::types::audit_log::AuditLogActorSession
impl Debug for async_openai::types::audit_log::AuditLogActorSession
impl Debug for async_openai::types::audit_log::AuditLogActorUser
impl Debug for async_openai::types::audit_log::AuditLogActorUser
impl Debug for async_openai::types::audit_log::AuditLogApiKeyCreated
impl Debug for async_openai::types::audit_log::AuditLogApiKeyCreated
impl Debug for async_openai::types::audit_log::AuditLogApiKeyCreatedData
impl Debug for async_openai::types::audit_log::AuditLogApiKeyCreatedData
impl Debug for async_openai::types::audit_log::AuditLogApiKeyDeleted
impl Debug for async_openai::types::audit_log::AuditLogApiKeyDeleted
impl Debug for async_openai::types::audit_log::AuditLogApiKeyUpdated
impl Debug for async_openai::types::audit_log::AuditLogApiKeyUpdated
impl Debug for async_openai::types::audit_log::AuditLogApiKeyUpdatedChangesRequested
impl Debug for async_openai::types::audit_log::AuditLogApiKeyUpdatedChangesRequested
impl Debug for async_openai::types::audit_log::AuditLogInviteAccepted
impl Debug for async_openai::types::audit_log::AuditLogInviteAccepted
impl Debug for async_openai::types::audit_log::AuditLogInviteDeleted
impl Debug for async_openai::types::audit_log::AuditLogInviteDeleted
impl Debug for async_openai::types::audit_log::AuditLogInviteSent
impl Debug for async_openai::types::audit_log::AuditLogInviteSent
impl Debug for async_openai::types::audit_log::AuditLogInviteSentData
impl Debug for async_openai::types::audit_log::AuditLogInviteSentData
impl Debug for async_openai::types::audit_log::AuditLogLoginFailed
impl Debug for async_openai::types::audit_log::AuditLogLoginFailed
impl Debug for async_openai::types::audit_log::AuditLogLogoutFailed
impl Debug for async_openai::types::audit_log::AuditLogLogoutFailed
impl Debug for async_openai::types::audit_log::AuditLogOrganizationUpdated
impl Debug for async_openai::types::audit_log::AuditLogOrganizationUpdated
impl Debug for async_openai::types::audit_log::AuditLogOrganizationUpdatedChangesRequested
impl Debug for async_openai::types::audit_log::AuditLogOrganizationUpdatedChangesRequested
impl Debug for async_openai::types::audit_log::AuditLogOrganizationUpdatedChangesRequestedSettings
impl Debug for async_openai::types::audit_log::AuditLogOrganizationUpdatedChangesRequestedSettings
impl Debug for async_openai::types::audit_log::AuditLogProject
impl Debug for async_openai::types::audit_log::AuditLogProject
impl Debug for async_openai::types::audit_log::AuditLogProjectArchived
impl Debug for async_openai::types::audit_log::AuditLogProjectArchived
impl Debug for async_openai::types::audit_log::AuditLogProjectCreated
impl Debug for async_openai::types::audit_log::AuditLogProjectCreated
impl Debug for async_openai::types::audit_log::AuditLogProjectCreatedData
impl Debug for async_openai::types::audit_log::AuditLogProjectCreatedData
impl Debug for async_openai::types::audit_log::AuditLogProjectUpdated
impl Debug for async_openai::types::audit_log::AuditLogProjectUpdated
impl Debug for async_openai::types::audit_log::AuditLogProjectUpdatedChangesRequested
impl Debug for async_openai::types::audit_log::AuditLogProjectUpdatedChangesRequested
impl Debug for async_openai::types::audit_log::AuditLogServiceAccountCreated
impl Debug for async_openai::types::audit_log::AuditLogServiceAccountCreated
impl Debug for async_openai::types::audit_log::AuditLogServiceAccountCreatedData
impl Debug for async_openai::types::audit_log::AuditLogServiceAccountCreatedData
impl Debug for async_openai::types::audit_log::AuditLogServiceAccountDeleted
impl Debug for async_openai::types::audit_log::AuditLogServiceAccountDeleted
impl Debug for async_openai::types::audit_log::AuditLogServiceAccountUpdated
impl Debug for async_openai::types::audit_log::AuditLogServiceAccountUpdated
impl Debug for async_openai::types::audit_log::AuditLogServiceAccountUpdatedChangesRequested
impl Debug for async_openai::types::audit_log::AuditLogServiceAccountUpdatedChangesRequested
impl Debug for async_openai::types::audit_log::AuditLogUserAdded
impl Debug for async_openai::types::audit_log::AuditLogUserAdded
impl Debug for async_openai::types::audit_log::AuditLogUserAddedData
impl Debug for async_openai::types::audit_log::AuditLogUserAddedData
impl Debug for async_openai::types::audit_log::AuditLogUserDeleted
impl Debug for async_openai::types::audit_log::AuditLogUserDeleted
impl Debug for async_openai::types::audit_log::AuditLogUserUpdated
impl Debug for async_openai::types::audit_log::AuditLogUserUpdated
impl Debug for async_openai::types::audit_log::AuditLogUserUpdatedChangesRequested
impl Debug for async_openai::types::audit_log::AuditLogUserUpdatedChangesRequested
impl Debug for async_openai::types::audit_log::ListAuditLogsResponse
impl Debug for async_openai::types::audit_log::ListAuditLogsResponse
impl Debug for async_openai::types::batch::Batch
impl Debug for async_openai::types::batch::Batch
impl Debug for async_openai::types::batch::BatchError
impl Debug for async_openai::types::batch::BatchError
impl Debug for async_openai::types::batch::BatchErrors
impl Debug for async_openai::types::batch::BatchErrors
impl Debug for async_openai::types::batch::BatchRequest
impl Debug for async_openai::types::batch::BatchRequest
impl Debug for async_openai::types::batch::BatchRequestArgs
impl Debug for async_openai::types::batch::BatchRequestArgs
impl Debug for async_openai::types::batch::BatchRequestCounts
impl Debug for async_openai::types::batch::BatchRequestCounts
impl Debug for async_openai::types::batch::BatchRequestInput
impl Debug for async_openai::types::batch::BatchRequestInput
impl Debug for async_openai::types::batch::BatchRequestOutput
impl Debug for async_openai::types::batch::BatchRequestOutput
impl Debug for async_openai::types::batch::BatchRequestOutputError
impl Debug for async_openai::types::batch::BatchRequestOutputError
impl Debug for async_openai::types::batch::BatchRequestOutputResponse
impl Debug for async_openai::types::batch::BatchRequestOutputResponse
impl Debug for async_openai::types::batch::ListBatchesResponse
impl Debug for async_openai::types::batch::ListBatchesResponse
impl Debug for async_openai::types::chat::ChatChoice
impl Debug for async_openai::types::chat::ChatChoice
impl Debug for async_openai::types::chat::ChatChoiceLogprobs
impl Debug for async_openai::types::chat::ChatChoiceLogprobs
impl Debug for async_openai::types::chat::ChatChoiceStream
impl Debug for async_openai::types::chat::ChatChoiceStream
impl Debug for async_openai::types::chat::ChatCompletionAudio
impl Debug for async_openai::types::chat::ChatCompletionAudio
impl Debug for async_openai::types::chat::ChatCompletionFunctions
impl Debug for async_openai::types::chat::ChatCompletionFunctions
impl Debug for async_openai::types::chat::ChatCompletionFunctionsArgs
impl Debug for async_openai::types::chat::ChatCompletionFunctionsArgs
impl Debug for async_openai::types::chat::ChatCompletionMessageToolCall
impl Debug for async_openai::types::chat::ChatCompletionMessageToolCall
impl Debug for async_openai::types::chat::ChatCompletionMessageToolCallChunk
impl Debug for async_openai::types::chat::ChatCompletionMessageToolCallChunk
impl Debug for async_openai::types::chat::ChatCompletionNamedToolChoice
impl Debug for async_openai::types::chat::ChatCompletionNamedToolChoice
impl Debug for async_openai::types::chat::ChatCompletionRequestAssistantMessage
impl Debug for async_openai::types::chat::ChatCompletionRequestAssistantMessage
impl Debug for async_openai::types::chat::ChatCompletionRequestAssistantMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestAssistantMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestAssistantMessageAudio
impl Debug for async_openai::types::chat::ChatCompletionRequestAssistantMessageAudio
impl Debug for async_openai::types::chat::ChatCompletionRequestDeveloperMessage
impl Debug for async_openai::types::chat::ChatCompletionRequestDeveloperMessage
impl Debug for async_openai::types::chat::ChatCompletionRequestDeveloperMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestDeveloperMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestFunctionMessage
impl Debug for async_openai::types::chat::ChatCompletionRequestFunctionMessage
impl Debug for async_openai::types::chat::ChatCompletionRequestFunctionMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestFunctionMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartAudio
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartAudio
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartAudioArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartAudioArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartImage
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartImage
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartImageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartImageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartRefusal
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartRefusal
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartText
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartText
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartTextArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestMessageContentPartTextArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestSystemMessage
impl Debug for async_openai::types::chat::ChatCompletionRequestSystemMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestSystemMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestToolMessage
impl Debug for async_openai::types::chat::ChatCompletionRequestToolMessage
impl Debug for async_openai::types::chat::ChatCompletionRequestToolMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestToolMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestUserMessage
impl Debug for async_openai::types::chat::ChatCompletionRequestUserMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionRequestUserMessageArgs
impl Debug for async_openai::types::chat::ChatCompletionResponseMessage
impl Debug for async_openai::types::chat::ChatCompletionResponseMessage
impl Debug for async_openai::types::chat::ChatCompletionResponseMessageAudio
impl Debug for async_openai::types::chat::ChatCompletionResponseMessageAudio
impl Debug for async_openai::types::chat::ChatCompletionStreamOptions
impl Debug for async_openai::types::chat::ChatCompletionStreamOptions
impl Debug for async_openai::types::chat::ChatCompletionStreamResponseDelta
impl Debug for async_openai::types::chat::ChatCompletionStreamResponseDelta
impl Debug for async_openai::types::chat::ChatCompletionTokenLogprob
impl Debug for async_openai::types::chat::ChatCompletionTokenLogprob
impl Debug for async_openai::types::chat::ChatCompletionTool
impl Debug for async_openai::types::chat::ChatCompletionTool
impl Debug for async_openai::types::chat::ChatCompletionToolArgs
impl Debug for async_openai::types::chat::ChatCompletionToolArgs
impl Debug for async_openai::types::chat::Choice
impl Debug for async_openai::types::chat::Choice
impl Debug for async_openai::types::chat::CompletionTokensDetails
impl Debug for async_openai::types::chat::CompletionTokensDetails
impl Debug for async_openai::types::chat::CompletionUsage
impl Debug for async_openai::types::chat::CompletionUsage
impl Debug for async_openai::types::chat::CreateChatCompletionRequest
impl Debug for async_openai::types::chat::CreateChatCompletionRequest
impl Debug for async_openai::types::chat::CreateChatCompletionRequestArgs
impl Debug for async_openai::types::chat::CreateChatCompletionResponse
impl Debug for async_openai::types::chat::CreateChatCompletionResponse
impl Debug for async_openai::types::chat::CreateChatCompletionStreamResponse
impl Debug for async_openai::types::chat::CreateChatCompletionStreamResponse
impl Debug for async_openai::types::chat::FunctionCall
impl Debug for async_openai::types::chat::FunctionCall
impl Debug for async_openai::types::chat::FunctionCallStream
impl Debug for async_openai::types::chat::FunctionCallStream
impl Debug for async_openai::types::chat::FunctionName
impl Debug for async_openai::types::chat::FunctionName
impl Debug for async_openai::types::chat::FunctionObject
impl Debug for async_openai::types::chat::FunctionObject
impl Debug for async_openai::types::chat::FunctionObjectArgs
impl Debug for async_openai::types::chat::FunctionObjectArgs
impl Debug for async_openai::types::chat::ImageUrl
impl Debug for async_openai::types::chat::ImageUrl
impl Debug for async_openai::types::chat::ImageUrlArgs
impl Debug for async_openai::types::chat::ImageUrlArgs
impl Debug for async_openai::types::chat::InputAudio
impl Debug for async_openai::types::chat::InputAudio
impl Debug for async_openai::types::chat::Logprobs
impl Debug for async_openai::types::chat::Logprobs
impl Debug for async_openai::types::chat::PromptTokensDetails
impl Debug for async_openai::types::chat::PromptTokensDetails
impl Debug for async_openai::types::chat::ResponseFormatJsonSchema
impl Debug for async_openai::types::chat::ResponseFormatJsonSchema
impl Debug for async_openai::types::chat::TopLogprobs
impl Debug for async_openai::types::chat::TopLogprobs
impl Debug for WebSearchLocation
impl Debug for WebSearchOptions
impl Debug for WebSearchUserLocation
impl Debug for async_openai::types::completion::CreateCompletionRequest
impl Debug for async_openai::types::completion::CreateCompletionRequest
impl Debug for async_openai::types::completion::CreateCompletionRequestArgs
impl Debug for async_openai::types::completion::CreateCompletionRequestArgs
impl Debug for async_openai::types::completion::CreateCompletionResponse
impl Debug for async_openai::types::completion::CreateCompletionResponse
impl Debug for async_openai::types::embedding::Base64Embedding
impl Debug for async_openai::types::embedding::Base64Embedding
impl Debug for async_openai::types::embedding::Base64EmbeddingVector
impl Debug for async_openai::types::embedding::Base64EmbeddingVector
impl Debug for async_openai::types::embedding::CreateBase64EmbeddingResponse
impl Debug for async_openai::types::embedding::CreateBase64EmbeddingResponse
impl Debug for async_openai::types::embedding::CreateEmbeddingRequest
impl Debug for async_openai::types::embedding::CreateEmbeddingRequest
impl Debug for async_openai::types::embedding::CreateEmbeddingRequestArgs
impl Debug for async_openai::types::embedding::CreateEmbeddingRequestArgs
impl Debug for async_openai::types::embedding::CreateEmbeddingResponse
impl Debug for async_openai::types::embedding::CreateEmbeddingResponse
impl Debug for async_openai::types::embedding::Embedding
impl Debug for async_openai::types::embedding::Embedding
impl Debug for async_openai::types::embedding::EmbeddingUsage
impl Debug for async_openai::types::embedding::EmbeddingUsage
impl Debug for async_openai::types::file::CreateFileRequest
impl Debug for async_openai::types::file::CreateFileRequest
impl Debug for async_openai::types::file::CreateFileRequestArgs
impl Debug for async_openai::types::file::CreateFileRequestArgs
impl Debug for async_openai::types::file::DeleteFileResponse
impl Debug for async_openai::types::file::DeleteFileResponse
impl Debug for async_openai::types::file::FileInput
impl Debug for async_openai::types::file::FileInput
impl Debug for async_openai::types::file::ListFilesResponse
impl Debug for async_openai::types::file::ListFilesResponse
impl Debug for async_openai::types::file::OpenAIFile
impl Debug for async_openai::types::file::OpenAIFile
impl Debug for async_openai::types::fine_tuning::CreateFineTuningJobRequest
impl Debug for async_openai::types::fine_tuning::CreateFineTuningJobRequest
impl Debug for async_openai::types::fine_tuning::CreateFineTuningJobRequestArgs
impl Debug for async_openai::types::fine_tuning::CreateFineTuningJobRequestArgs
impl Debug for async_openai::types::fine_tuning::DPOHyperparameters
impl Debug for async_openai::types::fine_tuning::DPOHyperparameters
impl Debug for async_openai::types::fine_tuning::FineTuneDPOMethod
impl Debug for async_openai::types::fine_tuning::FineTuneDPOMethod
impl Debug for async_openai::types::fine_tuning::FineTuneJobError
impl Debug for async_openai::types::fine_tuning::FineTuneJobError
impl Debug for async_openai::types::fine_tuning::FineTuneSupervisedMethod
impl Debug for async_openai::types::fine_tuning::FineTuneSupervisedMethod
impl Debug for async_openai::types::fine_tuning::FineTuningIntegration
impl Debug for async_openai::types::fine_tuning::FineTuningIntegration
impl Debug for async_openai::types::fine_tuning::FineTuningJob
impl Debug for async_openai::types::fine_tuning::FineTuningJob
impl Debug for async_openai::types::fine_tuning::FineTuningJobCheckpoint
impl Debug for async_openai::types::fine_tuning::FineTuningJobCheckpoint
impl Debug for async_openai::types::fine_tuning::FineTuningJobCheckpointMetrics
impl Debug for async_openai::types::fine_tuning::FineTuningJobCheckpointMetrics
impl Debug for async_openai::types::fine_tuning::FineTuningJobEvent
impl Debug for async_openai::types::fine_tuning::FineTuningJobEvent
impl Debug for async_openai::types::fine_tuning::Hyperparameters
impl Debug for async_openai::types::fine_tuning::Hyperparameters
impl Debug for async_openai::types::fine_tuning::ListFineTuningJobCheckpointsResponse
impl Debug for async_openai::types::fine_tuning::ListFineTuningJobCheckpointsResponse
impl Debug for async_openai::types::fine_tuning::ListFineTuningJobEventsResponse
impl Debug for async_openai::types::fine_tuning::ListFineTuningJobEventsResponse
impl Debug for async_openai::types::fine_tuning::ListPaginatedFineTuningJobsResponse
impl Debug for async_openai::types::fine_tuning::ListPaginatedFineTuningJobsResponse
impl Debug for async_openai::types::fine_tuning::WandB
impl Debug for async_openai::types::fine_tuning::WandB
impl Debug for async_openai::types::image::CreateImageEditRequest
impl Debug for async_openai::types::image::CreateImageEditRequest
impl Debug for async_openai::types::image::CreateImageEditRequestArgs
impl Debug for async_openai::types::image::CreateImageEditRequestArgs
impl Debug for async_openai::types::image::CreateImageRequest
impl Debug for async_openai::types::image::CreateImageRequest
impl Debug for async_openai::types::image::CreateImageRequestArgs
impl Debug for async_openai::types::image::CreateImageRequestArgs
impl Debug for async_openai::types::image::CreateImageVariationRequest
impl Debug for async_openai::types::image::CreateImageVariationRequest
impl Debug for async_openai::types::image::CreateImageVariationRequestArgs
impl Debug for async_openai::types::image::CreateImageVariationRequestArgs
impl Debug for async_openai::types::image::ImageInput
impl Debug for async_openai::types::image::ImageInput
impl Debug for async_openai::types::image::ImagesResponse
impl Debug for async_openai::types::image::ImagesResponse
impl Debug for async_openai::types::invites::Invite
impl Debug for async_openai::types::invites::Invite
impl Debug for async_openai::types::invites::InviteDeleteResponse
impl Debug for async_openai::types::invites::InviteDeleteResponse
impl Debug for async_openai::types::invites::InviteListResponse
impl Debug for async_openai::types::invites::InviteListResponse
impl Debug for async_openai::types::invites::InviteRequest
impl Debug for async_openai::types::invites::InviteRequest
impl Debug for async_openai::types::invites::InviteRequestArgs
impl Debug for async_openai::types::invites::InviteRequestArgs
impl Debug for async_openai::types::message::CreateMessageRequest
impl Debug for async_openai::types::message::CreateMessageRequest
impl Debug for async_openai::types::message::CreateMessageRequestArgs
impl Debug for async_openai::types::message::CreateMessageRequestArgs
impl Debug for async_openai::types::message::DeleteMessageResponse
impl Debug for async_openai::types::message::DeleteMessageResponse
impl Debug for async_openai::types::message::FileCitation
impl Debug for async_openai::types::message::FileCitation
impl Debug for async_openai::types::message::FilePath
impl Debug for async_openai::types::message::FilePath
impl Debug for async_openai::types::message::ImageFile
impl Debug for async_openai::types::message::ImageFile
impl Debug for async_openai::types::message::ListMessagesResponse
impl Debug for async_openai::types::message::ListMessagesResponse
impl Debug for async_openai::types::message::MessageAttachment
impl Debug for async_openai::types::message::MessageAttachment
impl Debug for async_openai::types::message::MessageContentImageFileObject
impl Debug for async_openai::types::message::MessageContentImageFileObject
impl Debug for async_openai::types::message::MessageContentImageUrlObject
impl Debug for async_openai::types::message::MessageContentImageUrlObject
impl Debug for async_openai::types::message::MessageContentRefusalObject
impl Debug for async_openai::types::message::MessageContentRefusalObject
impl Debug for async_openai::types::message::MessageContentTextAnnotationsFileCitationObject
impl Debug for async_openai::types::message::MessageContentTextAnnotationsFileCitationObject
impl Debug for async_openai::types::message::MessageContentTextAnnotationsFilePathObject
impl Debug for async_openai::types::message::MessageContentTextAnnotationsFilePathObject
impl Debug for async_openai::types::message::MessageContentTextObject
impl Debug for async_openai::types::message::MessageContentTextObject
impl Debug for async_openai::types::message::MessageDelta
impl Debug for async_openai::types::message::MessageDelta
impl Debug for async_openai::types::message::MessageDeltaContentImageFileObject
impl Debug for async_openai::types::message::MessageDeltaContentImageFileObject
impl Debug for async_openai::types::message::MessageDeltaContentImageUrlObject
impl Debug for async_openai::types::message::MessageDeltaContentImageUrlObject
impl Debug for async_openai::types::message::MessageDeltaContentRefusalObject
impl Debug for async_openai::types::message::MessageDeltaContentRefusalObject
impl Debug for async_openai::types::message::MessageDeltaContentText
impl Debug for async_openai::types::message::MessageDeltaContentText
impl Debug for async_openai::types::message::MessageDeltaContentTextAnnotationsFileCitationObject
impl Debug for async_openai::types::message::MessageDeltaContentTextAnnotationsFileCitationObject
impl Debug for async_openai::types::message::MessageDeltaContentTextAnnotationsFilePathObject
impl Debug for async_openai::types::message::MessageDeltaContentTextAnnotationsFilePathObject
impl Debug for async_openai::types::message::MessageDeltaContentTextObject
impl Debug for async_openai::types::message::MessageDeltaContentTextObject
impl Debug for async_openai::types::message::MessageDeltaObject
impl Debug for async_openai::types::message::MessageDeltaObject
impl Debug for async_openai::types::message::MessageIncompleteDetails
impl Debug for async_openai::types::message::MessageIncompleteDetails
impl Debug for async_openai::types::message::MessageObject
impl Debug for async_openai::types::message::MessageObject
impl Debug for async_openai::types::message::MessageRequestContentTextObject
impl Debug for async_openai::types::message::MessageRequestContentTextObject
impl Debug for async_openai::types::message::ModifyMessageRequest
impl Debug for async_openai::types::message::ModifyMessageRequest
impl Debug for async_openai::types::message::TextData
impl Debug for async_openai::types::message::TextData
impl Debug for ListMessageFilesResponse
impl Debug for MessageFileObject
impl Debug for async_openai::types::model::DeleteModelResponse
impl Debug for async_openai::types::model::DeleteModelResponse
impl Debug for async_openai::types::model::ListModelResponse
impl Debug for async_openai::types::model::ListModelResponse
impl Debug for async_openai::types::model::Model
impl Debug for async_openai::types::model::Model
impl Debug for async_openai::types::moderation::Category
impl Debug for async_openai::types::moderation::Category
impl Debug for async_openai::types::moderation::CategoryAppliedInputTypes
impl Debug for async_openai::types::moderation::CategoryAppliedInputTypes
impl Debug for async_openai::types::moderation::CategoryScore
impl Debug for async_openai::types::moderation::CategoryScore
impl Debug for async_openai::types::moderation::ContentModerationResult
impl Debug for async_openai::types::moderation::ContentModerationResult
impl Debug for async_openai::types::moderation::CreateModerationRequest
impl Debug for async_openai::types::moderation::CreateModerationRequest
impl Debug for async_openai::types::moderation::CreateModerationRequestArgs
impl Debug for async_openai::types::moderation::CreateModerationRequestArgs
impl Debug for async_openai::types::moderation::CreateModerationResponse
impl Debug for async_openai::types::moderation::CreateModerationResponse
impl Debug for async_openai::types::moderation::ModerationImageUrl
impl Debug for async_openai::types::moderation::ModerationImageUrl
impl Debug for async_openai::types::project_api_key::ProjectApiKey
impl Debug for async_openai::types::project_api_key::ProjectApiKey
impl Debug for async_openai::types::project_api_key::ProjectApiKeyDeleteResponse
impl Debug for async_openai::types::project_api_key::ProjectApiKeyDeleteResponse
impl Debug for async_openai::types::project_api_key::ProjectApiKeyListResponse
impl Debug for async_openai::types::project_api_key::ProjectApiKeyListResponse
impl Debug for async_openai::types::project_api_key::ProjectApiKeyOwner
impl Debug for async_openai::types::project_api_key::ProjectApiKeyOwner
impl Debug for async_openai::types::project_service_account::ProjectServiceAccount
impl Debug for async_openai::types::project_service_account::ProjectServiceAccount
impl Debug for async_openai::types::project_service_account::ProjectServiceAccountApiKey
impl Debug for async_openai::types::project_service_account::ProjectServiceAccountApiKey
impl Debug for async_openai::types::project_service_account::ProjectServiceAccountCreateRequest
impl Debug for async_openai::types::project_service_account::ProjectServiceAccountCreateRequest
impl Debug for async_openai::types::project_service_account::ProjectServiceAccountCreateResponse
impl Debug for async_openai::types::project_service_account::ProjectServiceAccountCreateResponse
impl Debug for async_openai::types::project_service_account::ProjectServiceAccountDeleteResponse
impl Debug for async_openai::types::project_service_account::ProjectServiceAccountDeleteResponse
impl Debug for async_openai::types::project_service_account::ProjectServiceAccountListResponse
impl Debug for async_openai::types::project_service_account::ProjectServiceAccountListResponse
impl Debug for async_openai::types::project_users::ProjectUser
impl Debug for async_openai::types::project_users::ProjectUser
impl Debug for async_openai::types::project_users::ProjectUserCreateRequest
impl Debug for async_openai::types::project_users::ProjectUserCreateRequest
impl Debug for async_openai::types::project_users::ProjectUserCreateRequestArgs
impl Debug for async_openai::types::project_users::ProjectUserCreateRequestArgs
impl Debug for async_openai::types::project_users::ProjectUserDeleteResponse
impl Debug for async_openai::types::project_users::ProjectUserDeleteResponse
impl Debug for async_openai::types::project_users::ProjectUserListResponse
impl Debug for async_openai::types::project_users::ProjectUserListResponse
impl Debug for async_openai::types::project_users::ProjectUserUpdateRequest
impl Debug for async_openai::types::project_users::ProjectUserUpdateRequest
impl Debug for async_openai::types::project_users::ProjectUserUpdateRequestArgs
impl Debug for async_openai::types::project_users::ProjectUserUpdateRequestArgs
impl Debug for async_openai::types::projects::Project
impl Debug for async_openai::types::projects::Project
impl Debug for async_openai::types::projects::ProjectCreateRequest
impl Debug for async_openai::types::projects::ProjectCreateRequest
impl Debug for async_openai::types::projects::ProjectCreateRequestArgs
impl Debug for async_openai::types::projects::ProjectCreateRequestArgs
impl Debug for async_openai::types::projects::ProjectListResponse
impl Debug for async_openai::types::projects::ProjectListResponse
impl Debug for async_openai::types::projects::ProjectUpdateRequest
impl Debug for async_openai::types::projects::ProjectUpdateRequest
impl Debug for async_openai::types::projects::ProjectUpdateRequestArgs
impl Debug for async_openai::types::projects::ProjectUpdateRequestArgs
impl Debug for Click
impl Debug for async_openai::types::responses::CodeInterpreter
impl Debug for CodeInterpreterCallOutput
impl Debug for CodeInterpreterFile
impl Debug for CodeInterpreterFileOutput
impl Debug for CodeInterpreterTextOutput
impl Debug for async_openai::types::responses::ComparisonFilter
impl Debug for async_openai::types::responses::CompoundFilter
impl Debug for ComputerCallOutput
impl Debug for ComputerUsePreview
impl Debug for CreateResponse
impl Debug for DoubleClick
impl Debug for Drag
impl Debug for ErrorObject
impl Debug for async_openai::types::responses::FileCitation
impl Debug for async_openai::types::responses::FilePath
impl Debug for FileSearch
impl Debug for FileSearchCallOutput
impl Debug for FileSearchResult
impl Debug for Function
impl Debug for async_openai::types::responses::FunctionCall
impl Debug for ImageGeneration
impl Debug for ImageGenerationCallOutput
impl Debug for IncompleteDetails
impl Debug for InputFile
impl Debug for InputImage
impl Debug for InputImageMask
impl Debug for InputMessage
impl Debug for InputText
impl Debug for KeyPress
impl Debug for LocalShellAction
impl Debug for LocalShellCallOutput
impl Debug for async_openai::types::responses::Location
impl Debug for Mcp
impl Debug for McpAllowedToolsFilter
impl Debug for McpApprovalFilter
impl Debug for McpApprovalRequestOutput
impl Debug for McpCallOutput
impl Debug for McpListToolsOutput
impl Debug for McpToolInfo
impl Debug for MoveAction
impl Debug for OutputMessage
impl Debug for OutputText
impl Debug for async_openai::types::responses::Point
impl Debug for PromptConfig
impl Debug for async_openai::types::responses::RankingOptions
impl Debug for ReasoningConfig
impl Debug for ReasoningItem
impl Debug for Refusal
impl Debug for async_openai::types::responses::Response
impl Debug for SafetyCheck
impl Debug for Scroll
impl Debug for SummaryText
impl Debug for TextConfig
impl Debug for TypeAction
impl Debug for UrlCitation
impl Debug for Usage
impl Debug for WebSearchCallOutput
impl Debug for WebSearchPreview
impl Debug for async_openai::types::run::CreateRunRequest
impl Debug for async_openai::types::run::CreateRunRequest
impl Debug for async_openai::types::run::CreateRunRequestArgs
impl Debug for async_openai::types::run::CreateRunRequestArgs
impl Debug for async_openai::types::run::LastError
impl Debug for async_openai::types::run::LastError
impl Debug for async_openai::types::run::ListRunsResponse
impl Debug for async_openai::types::run::ListRunsResponse
impl Debug for async_openai::types::run::ModifyRunRequest
impl Debug for async_openai::types::run::ModifyRunRequest
impl Debug for async_openai::types::run::RequiredAction
impl Debug for async_openai::types::run::RequiredAction
impl Debug for async_openai::types::run::RunCompletionUsage
impl Debug for async_openai::types::run::RunCompletionUsage
impl Debug for async_openai::types::run::RunObject
impl Debug for async_openai::types::run::RunObject
impl Debug for async_openai::types::run::RunObjectIncompleteDetails
impl Debug for async_openai::types::run::RunObjectIncompleteDetails
impl Debug for async_openai::types::run::RunToolCallObject
impl Debug for async_openai::types::run::RunToolCallObject
impl Debug for async_openai::types::run::SubmitToolOutputs
impl Debug for async_openai::types::run::SubmitToolOutputs
impl Debug for async_openai::types::run::SubmitToolOutputsRunRequest
impl Debug for async_openai::types::run::SubmitToolOutputsRunRequest
impl Debug for async_openai::types::run::ToolsOutputs
impl Debug for async_openai::types::run::ToolsOutputs
impl Debug for async_openai::types::run::ToolsOutputsArgs
impl Debug for async_openai::types::run::ToolsOutputsArgs
impl Debug for async_openai::types::run::TruncationObject
impl Debug for async_openai::types::run::TruncationObject
impl Debug for async_openai::types::step::CodeInterpreter
impl Debug for async_openai::types::step::CodeInterpreter
impl Debug for async_openai::types::step::DeltaCodeInterpreter
impl Debug for async_openai::types::step::DeltaCodeInterpreter
impl Debug for async_openai::types::step::ListRunStepsResponse
impl Debug for async_openai::types::step::ListRunStepsResponse
impl Debug for async_openai::types::step::MessageCreation
impl Debug for async_openai::types::step::MessageCreation
impl Debug for async_openai::types::step::RunStepCompletionUsage
impl Debug for async_openai::types::step::RunStepCompletionUsage
impl Debug for async_openai::types::step::RunStepDelta
impl Debug for async_openai::types::step::RunStepDelta
impl Debug for async_openai::types::step::RunStepDeltaObject
impl Debug for async_openai::types::step::RunStepDeltaObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsMessageCreationObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsMessageCreationObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsCodeObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsCodeObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsFileSearchObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsFileSearchObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsFunctionObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsFunctionObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsObject
impl Debug for async_openai::types::step::RunStepDeltaStepDetailsToolCallsObject
impl Debug for async_openai::types::step::RunStepDetailsMessageCreationObject
impl Debug for async_openai::types::step::RunStepDetailsMessageCreationObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsCodeObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsCodeObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsCodeOutputImageObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsCodeOutputImageObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsCodeOutputLogsObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsCodeOutputLogsObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsFileSearchObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsFileSearchObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsFileSearchObjectFileSearch
impl Debug for async_openai::types::step::RunStepDetailsToolCallsFileSearchObjectFileSearch
impl Debug for async_openai::types::step::RunStepDetailsToolCallsFileSearchResultObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsFileSearchResultObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsFileSearchResultObjectContent
impl Debug for async_openai::types::step::RunStepDetailsToolCallsFileSearchResultObjectContent
impl Debug for async_openai::types::step::RunStepDetailsToolCallsFunctionObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsFunctionObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsObject
impl Debug for async_openai::types::step::RunStepDetailsToolCallsObject
impl Debug for async_openai::types::step::RunStepFunctionObject
impl Debug for async_openai::types::step::RunStepFunctionObject
impl Debug for async_openai::types::step::RunStepFunctionObjectDelta
impl Debug for async_openai::types::step::RunStepFunctionObjectDelta
impl Debug for async_openai::types::step::RunStepObject
impl Debug for async_openai::types::step::RunStepObject
impl Debug for async_openai::types::thread::CreateThreadAndRunRequest
impl Debug for async_openai::types::thread::CreateThreadAndRunRequest
impl Debug for async_openai::types::thread::CreateThreadAndRunRequestArgs
impl Debug for async_openai::types::thread::CreateThreadAndRunRequestArgs
impl Debug for async_openai::types::thread::CreateThreadRequest
impl Debug for async_openai::types::thread::CreateThreadRequest
impl Debug for async_openai::types::thread::CreateThreadRequestArgs
impl Debug for async_openai::types::thread::CreateThreadRequestArgs
impl Debug for async_openai::types::thread::DeleteThreadResponse
impl Debug for async_openai::types::thread::DeleteThreadResponse
impl Debug for async_openai::types::thread::ModifyThreadRequest
impl Debug for async_openai::types::thread::ModifyThreadRequest
impl Debug for async_openai::types::thread::ThreadObject
impl Debug for async_openai::types::thread::ThreadObject
impl Debug for async_openai::types::upload::AddUploadPartRequest
impl Debug for async_openai::types::upload::AddUploadPartRequest
impl Debug for async_openai::types::upload::CompleteUploadRequest
impl Debug for async_openai::types::upload::CompleteUploadRequest
impl Debug for async_openai::types::upload::CreateUploadRequest
impl Debug for async_openai::types::upload::CreateUploadRequest
impl Debug for async_openai::types::upload::CreateUploadRequestArgs
impl Debug for async_openai::types::upload::CreateUploadRequestArgs
impl Debug for async_openai::types::upload::Upload
impl Debug for async_openai::types::upload::Upload
impl Debug for async_openai::types::upload::UploadPart
impl Debug for async_openai::types::upload::UploadPart
impl Debug for async_openai::types::users::User
impl Debug for async_openai::types::users::User
impl Debug for async_openai::types::users::UserDeleteResponse
impl Debug for async_openai::types::users::UserDeleteResponse
impl Debug for async_openai::types::users::UserListResponse
impl Debug for async_openai::types::users::UserListResponse
impl Debug for async_openai::types::users::UserRoleUpdateRequest
impl Debug for async_openai::types::users::UserRoleUpdateRequest
impl Debug for async_openai::types::users::UserRoleUpdateRequestArgs
impl Debug for async_openai::types::users::UserRoleUpdateRequestArgs
impl Debug for async_openai::types::vector_store::ComparisonFilter
impl Debug for async_openai::types::vector_store::CompoundFilter
impl Debug for async_openai::types::vector_store::CreateVectorStoreFileBatchRequest
impl Debug for async_openai::types::vector_store::CreateVectorStoreFileBatchRequest
impl Debug for async_openai::types::vector_store::CreateVectorStoreFileBatchRequestArgs
impl Debug for async_openai::types::vector_store::CreateVectorStoreFileBatchRequestArgs
impl Debug for async_openai::types::vector_store::CreateVectorStoreFileRequest
impl Debug for async_openai::types::vector_store::CreateVectorStoreFileRequest
impl Debug for async_openai::types::vector_store::CreateVectorStoreFileRequestArgs
impl Debug for async_openai::types::vector_store::CreateVectorStoreFileRequestArgs
impl Debug for async_openai::types::vector_store::CreateVectorStoreRequest
impl Debug for async_openai::types::vector_store::CreateVectorStoreRequest
impl Debug for async_openai::types::vector_store::CreateVectorStoreRequestArgs
impl Debug for async_openai::types::vector_store::CreateVectorStoreRequestArgs
impl Debug for async_openai::types::vector_store::DeleteVectorStoreFileResponse
impl Debug for async_openai::types::vector_store::DeleteVectorStoreFileResponse
impl Debug for async_openai::types::vector_store::DeleteVectorStoreResponse
impl Debug for async_openai::types::vector_store::DeleteVectorStoreResponse
impl Debug for async_openai::types::vector_store::ListVectorStoreFilesResponse
impl Debug for async_openai::types::vector_store::ListVectorStoreFilesResponse
impl Debug for async_openai::types::vector_store::ListVectorStoresResponse
impl Debug for async_openai::types::vector_store::ListVectorStoresResponse
impl Debug for async_openai::types::vector_store::RankingOptions
impl Debug for async_openai::types::vector_store::UpdateVectorStoreRequest
impl Debug for async_openai::types::vector_store::UpdateVectorStoreRequest
impl Debug for async_openai::types::vector_store::UpdateVectorStoreRequestArgs
impl Debug for async_openai::types::vector_store::UpdateVectorStoreRequestArgs
impl Debug for async_openai::types::vector_store::VectorStoreExpirationAfter
impl Debug for async_openai::types::vector_store::VectorStoreExpirationAfter
impl Debug for async_openai::types::vector_store::VectorStoreFileBatchCounts
impl Debug for async_openai::types::vector_store::VectorStoreFileBatchCounts
impl Debug for async_openai::types::vector_store::VectorStoreFileBatchObject
impl Debug for async_openai::types::vector_store::VectorStoreFileBatchObject
impl Debug for VectorStoreFileContentObject
impl Debug for VectorStoreFileContentResponse
impl Debug for async_openai::types::vector_store::VectorStoreFileCounts
impl Debug for async_openai::types::vector_store::VectorStoreFileCounts
impl Debug for async_openai::types::vector_store::VectorStoreFileError
impl Debug for async_openai::types::vector_store::VectorStoreFileError
impl Debug for async_openai::types::vector_store::VectorStoreFileObject
impl Debug for async_openai::types::vector_store::VectorStoreFileObject
impl Debug for async_openai::types::vector_store::VectorStoreObject
impl Debug for async_openai::types::vector_store::VectorStoreObject
impl Debug for VectorStoreSearchRequest
impl Debug for VectorStoreSearchRequestArgs
impl Debug for VectorStoreSearchResultContentObject
impl Debug for VectorStoreSearchResultItem
impl Debug for VectorStoreSearchResultsPage
impl Debug for atomic_waker::AtomicWaker
impl Debug for backoff::backoff::Constant
impl Debug for backoff::backoff::Stop
impl Debug for Zero
impl Debug for SystemClock
impl Debug for Alphabet
impl Debug for GeneralPurpose
impl Debug for GeneralPurposeConfig
impl Debug for DecodeMetadata
impl Debug for bitflags::parser::ParseError
impl Debug for UninitSlice
impl Debug for bytes::bytes::Bytes
impl Debug for BytesMut
impl Debug for TryGetError
impl Debug for LoopSignal
impl Debug for RegistrationToken
impl Debug for ChannelError
impl Debug for PingError
impl Debug for TimeoutFuture
impl Debug for Timer
impl Debug for calloop::sys::Interest
impl Debug for calloop::sys::Poll
impl Debug for Readiness
impl Debug for calloop::sys::Token
impl Debug for TokenFactory
impl Debug for FromPathBufError
impl Debug for FromPathError
impl Debug for camino::Iter<'_>
impl Debug for ReadDirUtf8
impl Debug for Utf8Ancestors<'_>
impl Debug for Utf8Components<'_>
impl Debug for Utf8DirEntry
impl Debug for Utf8Path
impl Debug for Utf8PathBuf
impl Debug for Utf8PrefixComponent<'_>
impl Debug for cargo_lock::dependency::Dependency
impl Debug for Lockfile
impl Debug for MetadataKey
impl Debug for MetadataValue
impl Debug for cargo_lock::package::name::Name
impl Debug for SourceId
impl Debug for cargo_lock::package::Package
impl Debug for Patch
impl Debug for cargo_platform::error::ParseError
impl Debug for Diagnostic
impl Debug for DiagnosticCode
impl Debug for DiagnosticSpan
impl Debug for DiagnosticSpanLine
impl Debug for DiagnosticSpanMacroExpansion
impl Debug for Artifact
impl Debug for ArtifactProfile
impl Debug for BuildFinished
impl Debug for BuildScript
impl Debug for CompilerMessage
impl Debug for DepKindInfo
impl Debug for cargo_metadata::Node
impl Debug for NodeDep
impl Debug for Resolve
impl Debug for cargo_metadata::Source
impl Debug for cargo_metadata::Target
impl Debug for WorkspaceDefaultMembers
impl Debug for chrono::format::parsed::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 WeekdaySet
Print the underlying bitmask, padded to 7 bits.
§Example
use chrono::Weekday::*;
assert_eq!(format!("{:?}", WeekdaySet::single(Mon)), "WeekdaySet(0000001)");
assert_eq!(format!("{:?}", WeekdaySet::single(Tue)), "WeekdaySet(0000010)");
assert_eq!(format!("{:?}", WeekdaySet::ALL), "WeekdaySet(1111111)");impl Debug for clap::errors::Error
impl Debug for cookie::jar::CookieJar
impl Debug for AllCounts
impl Debug for Counts
impl Debug for ReadyTimeoutError
impl Debug for crossbeam_channel::err::RecvError
impl Debug for SelectTimeoutError
impl Debug for TryReadyError
impl Debug for TrySelectError
impl Debug for crossbeam_channel::select::Select<'_>
impl Debug for SelectedOperation<'_>
impl Debug for Collector
impl Debug for LocalHandle
impl Debug for Guard
impl Debug for Backoff
impl Debug for crossbeam_utils::sync::parker::Parker
impl Debug for crossbeam_utils::sync::parker::Unparker
impl Debug for WaitGroup
impl Debug for crossbeam_utils::thread::Scope<'_>
impl Debug for cursor_icon::ParseError
impl Debug for deranged::ParseIntError
impl Debug for deranged::TryFromIntError
impl Debug for UninitializedFieldError
impl Debug for DebugDropBomb
impl Debug for DropBomb
impl Debug for Encoding
impl Debug for env_filter::filter::Builder
impl Debug for env_filter::filter::Filter
impl Debug for env_filter::parser::ParseError
impl Debug for env_logger::fmt::humantime::Timestamp
impl Debug for Formatter
impl Debug for env_logger::logger::Builder
impl Debug for Logger
impl Debug for Blocking
impl Debug for eventsource_stream::event::Event
impl Debug for Rng
impl Debug for figment::error::Error
impl Debug for Figment
impl Debug for figment::metadata::Metadata
impl Debug for Profile
impl Debug for figment::providers::env::Env
impl Debug for RelativePathBuf
impl Debug for figment::value::tag::Tag
impl Debug for FileTime
impl Debug for FixedBitSet
impl Debug for futures_channel::mpsc::SendError
impl Debug for futures_channel::mpsc::TryRecvError
impl Debug for Canceled
impl Debug for futures_core::task::__internal::atomic_waker::AtomicWaker
impl Debug for Enter
impl Debug for EnterError
impl Debug for LocalPool
impl Debug for LocalSpawner
impl Debug for SpawnError
impl Debug for Delay
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 getrandom::error::Error
impl Debug for h2::client::Builder
impl Debug for h2::client::Builder
impl Debug for h2::client::PushPromise
impl Debug for h2::client::PushPromise
impl Debug for h2::client::PushPromises
impl Debug for h2::client::PushPromises
impl Debug for h2::client::PushedResponseFuture
impl Debug for h2::client::PushedResponseFuture
impl Debug for h2::client::ResponseFuture
impl Debug for h2::client::ResponseFuture
impl Debug for h2::error::Error
impl Debug for h2::error::Error
impl Debug for h2::ext::Protocol
impl Debug for h2::ext::Protocol
impl Debug for h2::frame::reason::Reason
impl Debug for h2::frame::reason::Reason
impl Debug for h2::server::Builder
impl Debug for h2::server::Builder
impl Debug for h2::share::FlowControl
impl Debug for h2::share::FlowControl
impl Debug for h2::share::Ping
impl Debug for h2::share::Ping
impl Debug for h2::share::PingPong
impl Debug for h2::share::PingPong
impl Debug for h2::share::Pong
impl Debug for h2::share::Pong
impl Debug for h2::share::RecvStream
impl Debug for h2::share::RecvStream
impl Debug for h2::share::StreamId
impl Debug for h2::share::StreamId
impl Debug for http_body_util::limited::LengthLimitError
impl Debug for http_body::limited::LengthLimitError
impl Debug for http_body::size_hint::SizeHint
impl Debug for http_body::size_hint::SizeHint
impl Debug for http::error::Error
impl Debug for http::error::Error
impl Debug for http::extensions::Extensions
impl Debug for http::extensions::Extensions
impl Debug for http::header::map::MaxSizeReached
impl Debug for http::header::map::MaxSizeReached
impl Debug for http::header::name::HeaderName
impl Debug for http::header::name::HeaderName
impl Debug for http::header::name::InvalidHeaderName
impl Debug for http::header::name::InvalidHeaderName
impl Debug for http::header::value::HeaderValue
impl Debug for http::header::value::HeaderValue
impl Debug for http::header::value::InvalidHeaderValue
impl Debug for http::header::value::InvalidHeaderValue
impl Debug for http::header::value::ToStrError
impl Debug for http::header::value::ToStrError
impl Debug for http::method::InvalidMethod
impl Debug for http::method::InvalidMethod
impl Debug for http::method::Method
impl Debug for http::method::Method
impl Debug for http::request::Builder
impl Debug for http::request::Builder
impl Debug for http::request::Parts
impl Debug for http::request::Parts
impl Debug for http::response::Builder
impl Debug for http::response::Builder
impl Debug for http::response::Parts
impl Debug for http::response::Parts
impl Debug for http::status::InvalidStatusCode
impl Debug for http::status::InvalidStatusCode
impl Debug for http::status::StatusCode
impl Debug for http::status::StatusCode
impl Debug for http::uri::authority::Authority
impl Debug for http::uri::authority::Authority
impl Debug for http::uri::builder::Builder
impl Debug for http::uri::builder::Builder
impl Debug for http::uri::path::PathAndQuery
impl Debug for http::uri::path::PathAndQuery
impl Debug for http::uri::scheme::Scheme
impl Debug for http::uri::scheme::Scheme
impl Debug for http::uri::InvalidUri
impl Debug for http::uri::InvalidUri
impl Debug for http::uri::InvalidUriParts
impl Debug for http::uri::InvalidUriParts
impl Debug for http::uri::Parts
impl Debug for http::uri::Parts
impl Debug for http::uri::Uri
impl Debug for http::uri::Uri
impl Debug for http::version::Version
impl Debug for http::version::Version
impl Debug for httparse::Header<'_>
impl Debug for InvalidChunkSize
impl Debug for ParserConfig
impl Debug for HttpDate
impl Debug for httpdate::Error
impl Debug for hyper_util::client::legacy::client::Builder
impl Debug for hyper_util::client::legacy::client::Error
impl Debug for hyper_util::client::legacy::client::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 Intercept
impl Debug for hyper_util::client::proxy::matcher::Matcher
impl Debug for TokioExecutor
impl Debug for TokioTimer
impl Debug for hyper::body::body::Body
impl Debug for hyper::body::body::Sender
impl Debug for hyper::body::incoming::Incoming
impl Debug for hyper::client::conn::http1::Builder
impl Debug for hyper::error::Error
impl Debug for hyper::error::Error
impl Debug for hyper::ext::h1_reason_phrase::ReasonPhrase
impl Debug for hyper::ext::h1_reason_phrase::ReasonPhrase
impl Debug for hyper::ext::Protocol
impl Debug for hyper::ext::Protocol
impl Debug for hyper::rt::io::ReadBuf<'_>
impl Debug for AddrStream
impl Debug for AddrIncoming
impl Debug for hyper::upgrade::OnUpgrade
impl Debug for hyper::upgrade::OnUpgrade
impl Debug for hyper::upgrade::Upgraded
impl Debug for hyper::upgrade::Upgraded
impl Debug for CodePointInversionListULE
impl Debug for InvalidSetError
impl Debug for RangeError
impl Debug for CodePointInversionListAndStringListULE
impl Debug for CodePointTrieHeader
impl Debug for DataLocale
impl Debug for Other
impl Debug for icu_locale_core::extensions::private::other::Subtag
impl Debug for Private
impl Debug for icu_locale_core::extensions::Extensions
impl Debug for Fields
impl Debug for icu_locale_core::extensions::transform::key::Key
impl Debug for icu_locale_core::extensions::transform::Transform
impl Debug for icu_locale_core::extensions::transform::value::Value
impl Debug for icu_locale_core::extensions::unicode::attribute::Attribute
impl Debug for icu_locale_core::extensions::unicode::attributes::Attributes
impl Debug for icu_locale_core::extensions::unicode::key::Key
impl Debug for Keywords
impl Debug for Unicode
impl Debug for SubdivisionId
impl Debug for SubdivisionSuffix
impl Debug for icu_locale_core::extensions::unicode::value::Value
impl Debug for LanguageIdentifier
impl Debug for Locale
impl Debug for CurrencyType
impl Debug for NumberingSystem
impl Debug for RegionOverride
impl Debug for RegionalSubdivision
impl Debug for TimeZoneShortId
impl Debug for LocalePreferences
impl Debug for icu_locale_core::subtags::language::Language
impl Debug for icu_locale_core::subtags::region::Region
impl Debug for icu_locale_core::subtags::script::Script
impl Debug for icu_locale_core::subtags::Subtag
impl Debug for icu_locale_core::subtags::variant::Variant
impl Debug for Variants
impl Debug for CanonicalCombiningClassMap
impl Debug for CanonicalComposition
impl Debug for CanonicalDecomposition
impl Debug for icu_normalizer::provider::Baked
impl Debug for ComposingNormalizer
impl Debug for DecomposingNormalizer
impl Debug for Uts46Mapper
impl Debug for BidiMirroringGlyph
impl Debug for CodePointSetData
impl Debug for EmojiSetData
impl Debug for Alnum
impl Debug for icu_properties::props::Alphabetic
impl Debug for AsciiHexDigit
impl Debug for BasicEmoji
impl Debug for BidiClass
impl Debug for BidiControl
impl Debug for BidiMirrored
impl Debug for Blank
impl Debug for CanonicalCombiningClass
impl Debug for CaseIgnorable
impl Debug for CaseSensitive
impl Debug for Cased
impl Debug for ChangesWhenCasefolded
impl Debug for ChangesWhenCasemapped
impl Debug for ChangesWhenLowercased
impl Debug for ChangesWhenNfkcCasefolded
impl Debug for ChangesWhenTitlecased
impl Debug for ChangesWhenUppercased
impl Debug for Dash
impl Debug for DefaultIgnorableCodePoint
impl Debug for Deprecated
impl Debug for Diacritic
impl Debug for EastAsianWidth
impl Debug for Emoji
impl Debug for EmojiComponent
impl Debug for EmojiModifier
impl Debug for EmojiModifierBase
impl Debug for EmojiPresentation
impl Debug for ExtendedPictographic
impl Debug for Extender
impl Debug for FullCompositionExclusion
impl Debug for GeneralCategoryGroup
impl Debug for GeneralCategoryOutOfBoundsError
impl Debug for icu_properties::props::Graph
impl Debug for GraphemeBase
impl Debug for GraphemeClusterBreak
impl Debug for GraphemeExtend
impl Debug for GraphemeLink
impl Debug for HangulSyllableType
impl Debug for HexDigit
impl Debug for Hyphen
impl Debug for IdContinue
impl Debug for IdStart
impl Debug for Ideographic
impl Debug for IdsBinaryOperator
impl Debug for IdsTrinaryOperator
impl Debug for IndicSyllabicCategory
impl Debug for JoinControl
impl Debug for JoiningType
impl Debug for LineBreak
impl Debug for LogicalOrderException
impl Debug for Lowercase
impl Debug for Math
impl Debug for NfcInert
impl Debug for NfdInert
impl Debug for NfkcInert
impl Debug for NfkdInert
impl Debug for NoncharacterCodePoint
impl Debug for PatternSyntax
impl Debug for PatternWhiteSpace
impl Debug for PrependedConcatenationMark
impl Debug for Print
impl Debug for QuotationMark
impl Debug for Radical
impl Debug for RegionalIndicator
impl Debug for icu_properties::props::Script
impl Debug for SegmentStarter
impl Debug for SentenceBreak
impl Debug for SentenceTerminal
impl Debug for SoftDotted
impl Debug for TerminalPunctuation
impl Debug for UnifiedIdeograph
impl Debug for Uppercase
impl Debug for VariationSelector
impl Debug for VerticalOrientation
impl Debug for WhiteSpace
impl Debug for WordBreak
impl Debug for Xdigit
impl Debug for XidContinue
impl Debug for XidStart
impl Debug for icu_properties::provider::Baked
impl Debug for ScriptWithExtensions
impl Debug for BufferMarker
impl Debug for DataError
impl Debug for DataMarkerId
impl Debug for DataMarkerIdHash
impl Debug for DataMarkerInfo
impl Debug for AttributeParseError
impl Debug for DataMarkerAttributes
impl Debug for DataRequestMetadata
impl Debug for Cart
impl Debug for DataResponseMetadata
impl Debug for idna::Errors
impl Debug for indexmap::TryReserveError
impl Debug for InlineString
impl Debug for NotEnoughSpaceError
impl Debug for inotify_sys::inotify_event
impl Debug for inotify::events::EventMask
impl Debug for Inotify
impl Debug for WatchDescriptor
impl Debug for WatchMask
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 UserinfoBuilder<'_>
impl Debug for CapacityOverflowError
impl Debug for iri_string::normalize::error::Error
impl Debug for iri_string::template::error::Error
impl Debug for SimpleContext
impl Debug for UriTemplateString
impl Debug for UriTemplateStr
impl Debug for iri_string::validate::Error
impl Debug for jiff::civil::date::Date
impl Debug for DateArithmetic
impl Debug for DateDifference
impl Debug for DateSeries
impl Debug for DateWith
impl Debug for jiff::civil::datetime::DateTime
Converts a DateTime into a human readable datetime string.
(This Debug representation currently emits the same string as the
Display representation, but this is not a guarantee.)
Options currently supported:
std::fmt::Formatter::precisioncan be set to control the precision of the fractional second component.
§Example
use jiff::civil::date;
let dt = date(2024, 6, 15).at(7, 0, 0, 123_000_000);
assert_eq!(format!("{dt:.6?}"), "2024-06-15T07:00:00.123000");
// Precision values greater than 9 are clamped to 9.
assert_eq!(format!("{dt:.300?}"), "2024-06-15T07:00:00.123000000");
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(format!("{dt:.0?}"), "2024-06-15T07:00:00");
impl Debug for DateTimeArithmetic
impl Debug for DateTimeDifference
impl Debug for DateTimeRound
impl Debug for DateTimeSeries
impl Debug for DateTimeWith
impl Debug for ISOWeekDate
impl Debug for jiff::civil::time::Time
Converts a Time into a human readable time string.
(This Debug representation currently emits the same string as the
Display representation, but this is not a guarantee.)
Options currently supported:
std::fmt::Formatter::precisioncan be set to control the precision of the fractional second component.
§Example
use jiff::civil::time;
let t = time(7, 0, 0, 123_000_000);
assert_eq!(format!("{t:.6?}"), "07:00:00.123000");
// Precision values greater than 9 are clamped to 9.
assert_eq!(format!("{t:.300?}"), "07:00:00.123000000");
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(format!("{t:.0?}"), "07:00:00");
impl Debug for TimeArithmetic
impl Debug for TimeDifference
impl Debug for TimeRound
impl Debug for TimeSeries
impl Debug for TimeWith
impl Debug for WeekdaysForward
impl Debug for WeekdaysReverse
impl Debug for jiff::error::Error
impl Debug for jiff::fmt::friendly::parser::SpanParser
impl Debug for jiff::fmt::friendly::printer::SpanPrinter
impl Debug for jiff::fmt::rfc2822::DateTimeParser
impl Debug for jiff::fmt::rfc2822::DateTimePrinter
impl Debug for BrokenDownTime
impl Debug for DefaultCustom
impl Debug for Extension
impl Debug for PosixCustom
impl Debug for PiecesNumericOffset
impl Debug for jiff::fmt::temporal::DateTimeParser
impl Debug for jiff::fmt::temporal::DateTimePrinter
impl Debug for jiff::fmt::temporal::SpanParser
impl Debug for jiff::fmt::temporal::SpanPrinter
impl Debug for SignedDuration
impl Debug for SignedDurationRound
impl Debug for jiff::span::Span
impl Debug for SpanFieldwise
impl Debug for jiff::timestamp::Timestamp
Converts a Timestamp datetime into a human readable datetime string.
(This Debug representation currently emits the same string as the
Display representation, but this is not a guarantee.)
Options currently supported:
std::fmt::Formatter::precisioncan be set to control the precision of the fractional second component.
§Example
use jiff::Timestamp;
let ts = Timestamp::new(1_123_456_789, 123_000_000)?;
assert_eq!(
format!("{ts:.6?}"),
"2005-08-07T23:19:49.123000Z",
);
// Precision values greater than 9 are clamped to 9.
assert_eq!(
format!("{ts:.300?}"),
"2005-08-07T23:19:49.123000000Z",
);
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(
format!("{ts:.0?}"),
"2005-08-07T23:19:49Z",
);
impl Debug for TimestampArithmetic
impl Debug for TimestampDifference
impl Debug for TimestampDisplayWithOffset
impl Debug for TimestampRound
impl Debug for TimestampSeries
impl Debug for AmbiguousTimestamp
impl Debug for AmbiguousZoned
impl Debug for TimeZoneDatabase
impl Debug for jiff::tz::offset::Offset
impl Debug for OffsetArithmetic
impl Debug for OffsetRound
impl Debug for TimeZone
impl Debug for Zoned
Converts a Zoned datetime into a human readable datetime string.
(This Debug representation currently emits the same string as the
Display representation, but this is not a guarantee.)
Options currently supported:
std::fmt::Formatter::precisioncan be set to control the precision of the fractional second component.
§Example
use jiff::civil::date;
let zdt = date(2024, 6, 15).at(7, 0, 0, 123_000_000).in_tz("US/Eastern")?;
assert_eq!(
format!("{zdt:.6?}"),
"2024-06-15T07:00:00.123000-04:00[US/Eastern]",
);
// Precision values greater than 9 are clamped to 9.
assert_eq!(
format!("{zdt:.300?}"),
"2024-06-15T07:00:00.123000000-04:00[US/Eastern]",
);
// A precision of 0 implies the entire fractional
// component is always truncated.
assert_eq!(
format!("{zdt:.0?}"),
"2024-06-15T07:00:00-04:00[US/Eastern]",
);
impl Debug for ZonedArithmetic
impl Debug for ZonedRound
impl Debug for ZonedWith
impl Debug for jod_thread::Builder
impl Debug for json5::error::Location
impl Debug for OtherLanguage
impl Debug for libloading::os::unix::Library
impl Debug for libloading::safe::Library
impl Debug for linux_raw_sys::general::__kernel_fd_set
impl Debug for linux_raw_sys::general::__kernel_fd_set
impl Debug for linux_raw_sys::general::__kernel_fsid_t
impl Debug for linux_raw_sys::general::__kernel_fsid_t
impl Debug for linux_raw_sys::general::__kernel_itimerspec
impl Debug for linux_raw_sys::general::__kernel_itimerspec
impl Debug for linux_raw_sys::general::__kernel_old_itimerval
impl Debug for linux_raw_sys::general::__kernel_old_itimerval
impl Debug for linux_raw_sys::general::__kernel_old_timespec
impl Debug for linux_raw_sys::general::__kernel_old_timespec
impl Debug for linux_raw_sys::general::__kernel_old_timeval
impl Debug for linux_raw_sys::general::__kernel_old_timeval
impl Debug for linux_raw_sys::general::__kernel_sock_timeval
impl Debug for linux_raw_sys::general::__kernel_sock_timeval
impl Debug for linux_raw_sys::general::__kernel_timespec
impl Debug for linux_raw_sys::general::__kernel_timespec
impl Debug for linux_raw_sys::general::__old_kernel_stat
impl Debug for linux_raw_sys::general::__old_kernel_stat
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_1
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_1
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_4
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_4
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_6
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_6
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_7
impl Debug for linux_raw_sys::general::__sifields__bindgen_ty_7
impl Debug for linux_raw_sys::general::__user_cap_data_struct
impl Debug for linux_raw_sys::general::__user_cap_data_struct
impl Debug for linux_raw_sys::general::__user_cap_header_struct
impl Debug for linux_raw_sys::general::__user_cap_header_struct
impl Debug for cachestat
impl Debug for cachestat_range
impl Debug for linux_raw_sys::general::clone_args
impl Debug for linux_raw_sys::general::clone_args
impl Debug for linux_raw_sys::general::compat_statfs64
impl Debug for linux_raw_sys::general::compat_statfs64
impl Debug for dmabuf_cmsg
impl Debug for dmabuf_token
impl Debug for linux_raw_sys::general::epoll_event
impl Debug for linux_raw_sys::general::epoll_event
impl Debug for epoll_params
impl Debug for linux_raw_sys::general::f_owner_ex
impl Debug for linux_raw_sys::general::f_owner_ex
impl Debug for linux_raw_sys::general::file_clone_range
impl Debug for linux_raw_sys::general::file_clone_range
impl Debug for linux_raw_sys::general::file_dedupe_range
impl Debug for linux_raw_sys::general::file_dedupe_range
impl Debug for linux_raw_sys::general::file_dedupe_range_info
impl Debug for linux_raw_sys::general::file_dedupe_range_info
impl Debug for linux_raw_sys::general::files_stat_struct
impl Debug for linux_raw_sys::general::files_stat_struct
impl Debug for linux_raw_sys::general::flock64
impl Debug for linux_raw_sys::general::flock64
impl Debug for linux_raw_sys::general::flock
impl Debug for linux_raw_sys::general::flock
impl Debug for fs_sysfs_path
impl Debug for linux_raw_sys::general::fscrypt_key
impl Debug for linux_raw_sys::general::fscrypt_key
impl Debug for linux_raw_sys::general::fscrypt_policy_v1
impl Debug for linux_raw_sys::general::fscrypt_policy_v1
impl Debug for linux_raw_sys::general::fscrypt_policy_v2
impl Debug for linux_raw_sys::general::fscrypt_policy_v2
impl Debug for linux_raw_sys::general::fscrypt_provisioning_key_payload
impl Debug for linux_raw_sys::general::fscrypt_provisioning_key_payload
impl Debug for linux_raw_sys::general::fstrim_range
impl Debug for linux_raw_sys::general::fstrim_range
impl Debug for fsuuid2
impl Debug for linux_raw_sys::general::fsxattr
impl Debug for linux_raw_sys::general::fsxattr
impl Debug for linux_raw_sys::general::futex_waitv
impl Debug for linux_raw_sys::general::futex_waitv
impl Debug for linux_raw_sys::general::inodes_stat_t
impl Debug for linux_raw_sys::general::inodes_stat_t
impl Debug for linux_raw_sys::general::inotify_event
impl Debug for linux_raw_sys::general::inotify_event
impl Debug for linux_raw_sys::general::iovec
impl Debug for linux_raw_sys::general::iovec
impl Debug for linux_raw_sys::general::itimerspec
impl Debug for linux_raw_sys::general::itimerspec
impl Debug for linux_raw_sys::general::itimerval
impl Debug for linux_raw_sys::general::itimerval
impl Debug for linux_raw_sys::general::kernel_sigaction
impl Debug for linux_raw_sys::general::kernel_sigaction
impl Debug for linux_raw_sys::general::kernel_sigset_t
impl Debug for linux_raw_sys::general::kernel_sigset_t
impl Debug for linux_raw_sys::general::ktermios
impl Debug for linux_raw_sys::general::ktermios
impl Debug for linux_raw_sys::general::linux_dirent64
impl Debug for linux_raw_sys::general::linux_dirent64
impl Debug for mnt_id_req
impl Debug for linux_raw_sys::general::mount_attr
impl Debug for linux_raw_sys::general::mount_attr
impl Debug for linux_raw_sys::general::open_how
impl Debug for linux_raw_sys::general::open_how
impl Debug for page_region
impl Debug for pm_scan_arg
impl Debug for linux_raw_sys::general::pollfd
impl Debug for linux_raw_sys::general::pollfd
impl Debug for procmap_query
impl Debug for linux_raw_sys::general::rand_pool_info
impl Debug for linux_raw_sys::general::rand_pool_info
impl Debug for linux_raw_sys::general::rlimit64
impl Debug for linux_raw_sys::general::rlimit64
impl Debug for linux_raw_sys::general::rlimit
impl Debug for linux_raw_sys::general::rlimit
impl Debug for linux_raw_sys::general::robust_list
impl Debug for linux_raw_sys::general::robust_list
impl Debug for linux_raw_sys::general::robust_list_head
impl Debug for linux_raw_sys::general::robust_list_head
impl Debug for linux_raw_sys::general::rusage
impl Debug for linux_raw_sys::general::rusage
impl Debug for linux_raw_sys::general::sigaction
impl Debug for linux_raw_sys::general::sigaction
impl Debug for linux_raw_sys::general::sigaltstack
impl Debug for linux_raw_sys::general::sigaltstack
impl Debug for linux_raw_sys::general::sigevent__bindgen_ty_1__bindgen_ty_1
impl Debug for linux_raw_sys::general::sigevent__bindgen_ty_1__bindgen_ty_1
impl Debug for linux_raw_sys::general::stat
impl Debug for linux_raw_sys::general::stat
impl Debug for linux_raw_sys::general::statfs64
impl Debug for linux_raw_sys::general::statfs64
impl Debug for linux_raw_sys::general::statfs
impl Debug for linux_raw_sys::general::statfs
impl Debug for statmount
impl Debug for linux_raw_sys::general::statx
impl Debug for linux_raw_sys::general::statx
impl Debug for linux_raw_sys::general::statx_timestamp
impl Debug for linux_raw_sys::general::statx_timestamp
impl Debug for linux_raw_sys::general::termio
impl Debug for linux_raw_sys::general::termio
impl Debug for linux_raw_sys::general::termios2
impl Debug for linux_raw_sys::general::termios2
impl Debug for linux_raw_sys::general::termios
impl Debug for linux_raw_sys::general::termios
impl Debug for linux_raw_sys::general::timespec
impl Debug for linux_raw_sys::general::timespec
impl Debug for linux_raw_sys::general::timeval
impl Debug for linux_raw_sys::general::timeval
impl Debug for linux_raw_sys::general::timezone
impl Debug for linux_raw_sys::general::timezone
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_2
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_2
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_3
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_3
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_4
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_4
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_5
impl Debug for linux_raw_sys::general::uffd_msg__bindgen_ty_1__bindgen_ty_5
impl Debug for linux_raw_sys::general::uffdio_api
impl Debug for linux_raw_sys::general::uffdio_api
impl Debug for linux_raw_sys::general::uffdio_continue
impl Debug for linux_raw_sys::general::uffdio_continue
impl Debug for linux_raw_sys::general::uffdio_copy
impl Debug for linux_raw_sys::general::uffdio_copy
impl Debug for uffdio_move
impl Debug for uffdio_poison
impl Debug for linux_raw_sys::general::uffdio_range
impl Debug for linux_raw_sys::general::uffdio_range
impl Debug for linux_raw_sys::general::uffdio_register
impl Debug for linux_raw_sys::general::uffdio_register
impl Debug for linux_raw_sys::general::uffdio_writeprotect
impl Debug for linux_raw_sys::general::uffdio_writeprotect
impl Debug for linux_raw_sys::general::uffdio_zeropage
impl Debug for linux_raw_sys::general::uffdio_zeropage
impl Debug for linux_raw_sys::general::user_desc
impl Debug for linux_raw_sys::general::user_desc
impl Debug for linux_raw_sys::general::vfs_cap_data
impl Debug for linux_raw_sys::general::vfs_cap_data
impl Debug for linux_raw_sys::general::vfs_cap_data__bindgen_ty_1
impl Debug for linux_raw_sys::general::vfs_cap_data__bindgen_ty_1
impl Debug for linux_raw_sys::general::vfs_ns_cap_data
impl Debug for linux_raw_sys::general::vfs_ns_cap_data
impl Debug for linux_raw_sys::general::vfs_ns_cap_data__bindgen_ty_1
impl Debug for linux_raw_sys::general::vfs_ns_cap_data__bindgen_ty_1
impl Debug for vgetrandom_opaque_params
impl Debug for linux_raw_sys::general::winsize
impl Debug for linux_raw_sys::general::winsize
impl Debug for xattr_args
impl Debug for ethhdr
impl Debug for linux_raw_sys::net::__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1
impl Debug for _xt_align
impl Debug for cisco_proto
impl Debug for cmsghdr
impl Debug for fr_proto
impl Debug for fr_proto_pvc
impl Debug for fr_proto_pvc_info
impl Debug for ifmap
impl Debug for in_addr
impl Debug for in_pktinfo
impl Debug for linux_raw_sys::net::iovec
impl Debug for ip6t_getinfo
impl Debug for ip6t_icmp
impl Debug for ip_auth_hdr
impl Debug for ip_beet_phdr
impl Debug for ip_comp_hdr
impl Debug for ip_esp_hdr
impl Debug for ip_mreq
impl Debug for ip_mreq_source
impl Debug for ip_mreqn
impl Debug for ip_msfilter__bindgen_ty_1__bindgen_ty_1
impl Debug for ip_msfilter__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1
impl Debug for iphdr__bindgen_ty_1__bindgen_ty_1
impl Debug for iphdr__bindgen_ty_1__bindgen_ty_2
impl Debug for ipv6_opt_hdr
impl Debug for ipv6_rt_hdr
impl Debug for linger
impl Debug for mmsghdr
impl Debug for msghdr
impl Debug for raw_hdlc_proto
impl Debug for sockaddr_in
impl Debug for sockaddr_un
impl Debug for sync_serial_settings
impl Debug for tcp_diag_md5sig
impl Debug for tcp_info
impl Debug for tcp_repair_opt
impl Debug for tcp_repair_window
impl Debug for tcp_zerocopy_receive
impl Debug for tcphdr
impl Debug for te1_settings
impl Debug for ucred
impl Debug for x25_hdlc_proto
impl Debug for xt_counters
impl Debug for xt_counters_info
impl Debug for xt_entry_match__bindgen_ty_1__bindgen_ty_1
impl Debug for xt_entry_match__bindgen_ty_1__bindgen_ty_2
impl Debug for xt_entry_target__bindgen_ty_1__bindgen_ty_1
impl Debug for xt_entry_target__bindgen_ty_1__bindgen_ty_2
impl Debug for xt_get_revision
impl Debug for xt_match
impl Debug for xt_target
impl Debug for xt_tcp
impl Debug for xt_udp
impl Debug for linux_raw_sys::netlink::__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1
impl Debug for if_stats_msg
impl Debug for ifa_cacheinfo
impl Debug for ifaddrmsg
impl Debug for ifinfomsg
impl Debug for ifla_bridge_id
impl Debug for ifla_cacheinfo
impl Debug for ifla_port_vsi
impl Debug for ifla_rmnet_flags
impl Debug for ifla_vf_broadcast
impl Debug for ifla_vf_guid
impl Debug for ifla_vf_link_state
impl Debug for ifla_vf_mac
impl Debug for ifla_vf_rate
impl Debug for ifla_vf_rss_query_en
impl Debug for ifla_vf_spoofchk
impl Debug for ifla_vf_trust
impl Debug for ifla_vf_tx_rate
impl Debug for ifla_vf_vlan
impl Debug for ifla_vf_vlan_info
impl Debug for ifla_vlan_flags
impl Debug for ifla_vlan_qos_mapping
impl Debug for ifla_vxlan_port_range
impl Debug for nda_cacheinfo
impl Debug for ndmsg
impl Debug for ndt_config
impl Debug for ndt_stats
impl Debug for ndtmsg
impl Debug for nduseroptmsg
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for nla_bitfield32
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for prefix_cacheinfo
impl Debug for prefixmsg
impl Debug for rta_cacheinfo
impl Debug for rta_mfc_stats
impl Debug for rta_session__bindgen_ty_1__bindgen_ty_1
impl Debug for rta_session__bindgen_ty_1__bindgen_ty_2
impl Debug for rtattr
impl Debug for rtgenmsg
impl Debug for rtmsg
impl Debug for rtnexthop
impl Debug for rtnl_hw_stats64
impl Debug for rtnl_link_ifmap
impl Debug for rtnl_link_stats64
impl Debug for rtnl_link_stats
impl Debug for rtvia
impl Debug for sockaddr_nl
impl Debug for tcamsg
impl Debug for tcmsg
impl Debug for tunnel_msg
impl Debug for linux_raw_sys::prctl::prctl_mm_map
impl Debug for linux_raw_sys::prctl::prctl_mm_map
impl Debug for new_utsname
impl Debug for old_utsname
impl Debug for oldold_utsname
impl Debug for sysinfo
impl Debug for sockaddr_xdp
impl Debug for xdp_desc
impl Debug for xdp_mmap_offsets
impl Debug for xdp_mmap_offsets_v1
impl Debug for xdp_options
impl Debug for xdp_ring_offset
impl Debug for xdp_ring_offset_v1
impl Debug for xdp_statistics
impl Debug for xdp_statistics_v1
impl Debug for xdp_umem_reg
impl Debug for xdp_umem_reg_v1
impl Debug for log::ParseLevelError
impl Debug for SetLoggerError
impl Debug for memchr::arch::all::memchr::One
impl Debug for memchr::arch::all::memchr::Three
impl Debug for memchr::arch::all::memchr::Two
impl Debug for memchr::arch::all::packedpair::Finder
impl Debug for memchr::arch::all::packedpair::Pair
impl Debug for memchr::arch::all::rabinkarp::Finder
impl Debug for memchr::arch::all::rabinkarp::FinderRev
impl Debug for memchr::arch::all::shiftor::Finder
impl Debug for memchr::arch::all::twoway::Finder
impl Debug for memchr::arch::all::twoway::FinderRev
impl Debug for memchr::arch::x86_64::avx2::memchr::One
impl Debug for memchr::arch::x86_64::avx2::memchr::Three
impl Debug for memchr::arch::x86_64::avx2::memchr::Two
impl Debug for memchr::arch::x86_64::avx2::packedpair::Finder
impl Debug for memchr::arch::x86_64::sse2::memchr::One
impl Debug for memchr::arch::x86_64::sse2::memchr::Three
impl Debug for memchr::arch::x86_64::sse2::memchr::Two
impl Debug for memchr::arch::x86_64::sse2::packedpair::Finder
impl Debug for FinderBuilder
impl Debug for Mmap
impl Debug for MmapMut
impl Debug for MmapOptions
impl Debug for MmapRaw
impl Debug for RemapOptions
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 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 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 mio::event::events::Events
impl Debug for mio::event::events::Events
impl Debug for mio::interest::Interest
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 mio::poll::Poll
impl Debug for mio::poll::Registry
impl Debug for mio::poll::Registry
impl Debug for mio::sys::unix::pipe::Receiver
impl Debug for mio::sys::unix::pipe::Receiver
impl Debug for mio::sys::unix::pipe::Sender
impl Debug for mio::sys::unix::pipe::Sender
impl Debug for mio::token::Token
impl Debug for mio::token::Token
impl Debug for mio::waker::Waker
impl Debug for mio::waker::Waker
impl Debug for Constraints
impl Debug for SizeLimit
impl Debug for native_tls::Error
impl Debug for native_tls::TlsConnector
impl Debug for notify::error::Error
impl Debug for EventAttributes
impl Debug for INotifyWatcher
impl Debug for NullWatcher
impl Debug for PollWatcher
impl Debug for nu_ansi_term::ansi::Infix
impl Debug for nu_ansi_term::ansi::Prefix
impl Debug for nu_ansi_term::ansi::Suffix
impl Debug for Gradient
impl Debug for nu_ansi_term::rgb::Rgb
impl Debug for nu_ansi_term::style::Style
Styles have a special Debug implementation that only shows the fields that
are set. Fields that haven’t been touched aren’t included in the output.
This behaviour gets bypassed when using the alternate formatting mode
format!("{:#?}").
use nu_ansi_term::Color::{Red, Blue};
assert_eq!("Style { fg(Red), on(Blue), bold, italic }",
format!("{:?}", Red.on(Blue).bold().italic()));impl Debug for num_traits::ParseFloatError
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for KeyError
impl Debug for Asn1ObjectRef
impl Debug for Asn1StringRef
impl Debug for Asn1TimeRef
impl Debug for Asn1Type
impl Debug for TimeDiff
impl Debug for BigNum
impl Debug for BigNumRef
impl Debug for CMSOptions
impl Debug for DsaSig
impl Debug for Asn1Flag
impl Debug for openssl::error::Error
impl Debug for ErrorStack
impl Debug for DigestBytes
impl Debug for Nid
impl Debug for OcspCertStatus
impl Debug for OcspFlag
impl Debug for OcspResponseStatus
impl Debug for OcspRevokedStatus
impl Debug for KeyIvPair
impl Debug for Pkcs7Flags
impl Debug for openssl::pkey::Id
impl Debug for openssl::rsa::Padding
impl Debug for SrtpProfileId
impl Debug for SslConnector
impl Debug for openssl::ssl::error::Error
impl Debug for ErrorCode
impl Debug for AlpnError
impl Debug for CipherLists
impl Debug for ClientHelloResponse
impl Debug for ExtensionContext
impl Debug for ShutdownState
impl Debug for SniError
impl Debug for Ssl
impl Debug for SslAlert
impl Debug for SslCipherRef
impl Debug for SslContext
impl Debug for SslMode
impl Debug for SslOptions
impl Debug for SslRef
impl Debug for SslSessionCacheMode
impl Debug for SslVerifyMode
impl Debug for SslVersion
impl Debug for OpensslString
impl Debug for OpensslStringRef
impl Debug for CrlReason
impl Debug for GeneralNameRef
impl Debug for X509
impl Debug for X509NameEntryRef
impl Debug for X509NameRef
impl Debug for X509VerifyResult
impl Debug for X509CheckFlags
impl Debug for X509VerifyFlags
impl Debug for FloatIsNan
impl Debug for parking::Parker
impl Debug for parking::Unparker
impl Debug for parking_lot::condvar::Condvar
impl Debug for parking_lot::condvar::Condvar
impl Debug for parking_lot::condvar::WaitTimeoutResult
impl Debug for parking_lot::condvar::WaitTimeoutResult
impl Debug for parking_lot::once::Once
impl Debug for parking_lot::once::Once
impl Debug for parking_lot_core::parking_lot::ParkToken
impl Debug for parking_lot_core::parking_lot::ParkToken
impl Debug for parking_lot_core::parking_lot::UnparkResult
impl Debug for parking_lot_core::parking_lot::UnparkResult
impl Debug for parking_lot_core::parking_lot::UnparkToken
impl Debug for parking_lot_core::parking_lot::UnparkToken
impl Debug for ParserInfo
impl Debug for NegativeCycle
impl Debug for EdgesNotSorted
impl Debug for petgraph::visit::dfsvisit::Time
impl Debug for polling::Event
impl Debug for polling::Events
impl Debug for Poller
impl Debug for PotentialCodePoint
impl Debug for PotentialUtf8
impl Debug for PotentialUtf16
impl Debug for FormatterOptions
impl Debug for ra_ap_rustc_lexer::Token
impl Debug for ra_ap_limit::Limit
impl Debug for JodChild
impl Debug for Indel
impl Debug for TextEdit
impl Debug for TextEditBuilder
impl Debug for rand::distr::bernoulli::Bernoulli
impl Debug for rand::distr::float::Open01
impl Debug for rand::distr::float::OpenClosed01
impl Debug for rand::distr::other::Alphabetic
impl Debug for rand::distr::other::Alphanumeric
impl Debug for rand::distr::slice::Empty
impl Debug for StandardUniform
impl Debug for UniformUsize
impl Debug for rand::distr::uniform::other::UniformChar
impl Debug for rand::distr::uniform::other::UniformDuration
impl Debug for rand::distributions::bernoulli::Bernoulli
impl Debug for rand::distributions::float::Open01
impl Debug for rand::distributions::float::OpenClosed01
impl Debug for rand::distributions::other::Alphanumeric
impl Debug for rand::distributions::Standard
impl Debug for rand::distributions::uniform::UniformChar
impl Debug for rand::distributions::uniform::UniformDuration
impl Debug for ReadError
impl Debug for rand::rngs::mock::StepRng
impl Debug for rand::rngs::mock::StepRng
impl Debug for rand::rngs::small::SmallRng
impl Debug for rand::rngs::small::SmallRng
impl Debug for rand::rngs::std::StdRng
impl Debug for rand::rngs::thread::ThreadRng
impl Debug for rand::rngs::thread::ThreadRng
Debug implementation does not leak internal state
impl Debug for rand_chacha::chacha::ChaCha8Core
impl Debug for rand_chacha::chacha::ChaCha8Core
impl Debug for rand_chacha::chacha::ChaCha8Rng
impl Debug for rand_chacha::chacha::ChaCha8Rng
impl Debug for rand_chacha::chacha::ChaCha12Core
impl Debug for rand_chacha::chacha::ChaCha12Core
impl Debug for rand_chacha::chacha::ChaCha12Rng
impl Debug for rand_chacha::chacha::ChaCha12Rng
impl Debug for rand_chacha::chacha::ChaCha20Core
impl Debug for rand_chacha::chacha::ChaCha20Core
impl Debug for rand_chacha::chacha::ChaCha20Rng
impl Debug for rand_chacha::chacha::ChaCha20Rng
impl Debug for rand_core::error::Error
impl Debug for OsError
impl Debug for rand_core::os::OsRng
impl Debug for rand_core::os::OsRng
impl Debug for regex_automata::dense_imp::Builder
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::error::Error
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 regex_automata::regex::RegexBuilder
impl Debug for ByteClasses
impl Debug for regex_automata::util::alphabet::Unit
impl Debug for regex_automata::util::captures::Captures
impl Debug for GroupInfo
impl Debug for GroupInfoError
impl Debug for DebugByte
impl Debug for LookMatcher
impl Debug for regex_automata::util::look::LookSet
impl Debug for regex_automata::util::look::LookSetIter
impl Debug for UnicodeWordBoundaryError
impl Debug for regex_automata::util::prefilter::Prefilter
impl Debug for NonMaxUsize
impl Debug for regex_automata::util::primitives::PatternID
impl Debug for regex_automata::util::primitives::PatternIDError
impl Debug for SmallIndex
impl Debug for SmallIndexError
impl Debug for regex_automata::util::primitives::StateID
impl Debug for regex_automata::util::primitives::StateIDError
impl Debug for HalfMatch
impl Debug for regex_automata::util::search::Match
impl Debug for regex_automata::util::search::MatchError
impl Debug for PatternSet
impl Debug for PatternSetInsertError
impl Debug for regex_automata::util::search::Span
impl Debug for regex_automata::util::start::Config
impl Debug for regex_automata::util::syntax::Config
impl Debug for DeserializeError
impl Debug for SerializeError
impl Debug for regex_syntax::ast::parse::Parser
impl Debug for regex_syntax::ast::parse::Parser
impl Debug for regex_syntax::ast::parse::ParserBuilder
impl Debug for regex_syntax::ast::parse::ParserBuilder
impl Debug for regex_syntax::ast::print::Printer
impl Debug for regex_syntax::ast::print::Printer
impl Debug for regex_syntax::ast::Alternation
impl Debug for regex_syntax::ast::Alternation
impl Debug for regex_syntax::ast::Assertion
impl Debug for regex_syntax::ast::Assertion
impl Debug for regex_syntax::ast::CaptureName
impl Debug for regex_syntax::ast::CaptureName
impl Debug for regex_syntax::ast::ClassAscii
impl Debug for regex_syntax::ast::ClassAscii
impl Debug for regex_syntax::ast::ClassBracketed
impl Debug for regex_syntax::ast::ClassBracketed
impl Debug for regex_syntax::ast::ClassPerl
impl Debug for regex_syntax::ast::ClassPerl
impl Debug for regex_syntax::ast::ClassSetBinaryOp
impl Debug for regex_syntax::ast::ClassSetBinaryOp
impl Debug for regex_syntax::ast::ClassSetRange
impl Debug for regex_syntax::ast::ClassSetRange
impl Debug for regex_syntax::ast::ClassSetUnion
impl Debug for regex_syntax::ast::ClassSetUnion
impl Debug for regex_syntax::ast::ClassUnicode
impl Debug for regex_syntax::ast::ClassUnicode
impl Debug for regex_syntax::ast::Comment
impl Debug for regex_syntax::ast::Comment
impl Debug for regex_syntax::ast::Concat
impl Debug for regex_syntax::ast::Concat
impl Debug for regex_syntax::ast::Error
impl Debug for regex_syntax::ast::Error
impl Debug for regex_syntax::ast::Flags
impl Debug for regex_syntax::ast::Flags
impl Debug for regex_syntax::ast::FlagsItem
impl Debug for regex_syntax::ast::FlagsItem
impl Debug for regex_syntax::ast::Group
impl Debug for regex_syntax::ast::Group
impl Debug for regex_syntax::ast::Literal
impl Debug for regex_syntax::ast::Literal
impl Debug for regex_syntax::ast::Position
impl Debug for regex_syntax::ast::Position
impl Debug for regex_syntax::ast::Repetition
impl Debug for regex_syntax::ast::Repetition
impl Debug for regex_syntax::ast::RepetitionOp
impl Debug for regex_syntax::ast::RepetitionOp
impl Debug for regex_syntax::ast::SetFlags
impl Debug for regex_syntax::ast::SetFlags
impl Debug for regex_syntax::ast::Span
impl Debug for regex_syntax::ast::Span
impl Debug for regex_syntax::ast::WithComments
impl Debug for regex_syntax::ast::WithComments
impl Debug for Extractor
impl Debug for regex_syntax::hir::literal::Literal
impl Debug for regex_syntax::hir::literal::Literal
impl Debug for Literals
impl Debug for Seq
impl Debug for regex_syntax::hir::print::Printer
impl Debug for regex_syntax::hir::print::Printer
impl Debug for Capture
impl Debug for regex_syntax::hir::ClassBytes
impl Debug for regex_syntax::hir::ClassBytes
impl Debug for regex_syntax::hir::ClassBytesRange
impl Debug for regex_syntax::hir::ClassBytesRange
impl Debug for regex_syntax::hir::ClassUnicode
impl Debug for regex_syntax::hir::ClassUnicode
impl Debug for regex_syntax::hir::ClassUnicodeRange
impl Debug for regex_syntax::hir::ClassUnicodeRange
impl Debug for regex_syntax::hir::Error
impl Debug for regex_syntax::hir::Error
impl Debug for regex_syntax::hir::Group
impl Debug for regex_syntax::hir::Hir
impl Debug for regex_syntax::hir::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 regex_syntax::hir::Repetition
impl Debug for regex_syntax::hir::translate::Translator
impl Debug for regex_syntax::hir::translate::Translator
impl Debug for regex_syntax::hir::translate::TranslatorBuilder
impl Debug for regex_syntax::hir::translate::TranslatorBuilder
impl Debug for regex_syntax::parser::Parser
impl Debug for regex_syntax::parser::Parser
impl Debug for regex_syntax::parser::ParserBuilder
impl Debug for regex_syntax::parser::ParserBuilder
impl Debug for regex_syntax::unicode::CaseFoldError
impl Debug for regex_syntax::unicode::CaseFoldError
impl Debug for regex_syntax::unicode::UnicodeWordError
impl Debug for regex_syntax::unicode::UnicodeWordError
impl Debug for regex_syntax::utf8::Utf8Range
impl Debug for regex_syntax::utf8::Utf8Range
impl Debug for regex_syntax::utf8::Utf8Sequences
impl Debug for regex_syntax::utf8::Utf8Sequences
impl Debug for regex::builders::bytes::RegexBuilder
impl Debug for regex::builders::bytes::RegexSetBuilder
impl Debug for regex::builders::string::RegexBuilder
impl Debug for regex::builders::string::RegexSetBuilder
impl Debug for regex::regex::bytes::CaptureLocations
impl Debug for regex::regex::bytes::Regex
impl Debug for regex::regex::string::CaptureLocations
impl Debug for regex::regexset::bytes::RegexSet
impl Debug for regex::regexset::bytes::SetMatches
impl Debug for regex::regexset::bytes::SetMatchesIntoIter
impl Debug for regex::regexset::string::RegexSet
impl Debug for regex::regexset::string::SetMatches
impl Debug for regex::regexset::string::SetMatchesIntoIter
impl Debug for CannotCloneRequestError
impl Debug for reqwest_eventsource::retry::Constant
impl Debug for reqwest_eventsource::retry::ExponentialBackoff
impl Debug for Never
impl Debug for reqwest::async_impl::body::Body
impl Debug for reqwest::async_impl::client::Client
impl Debug for ClientBuilder
impl Debug for reqwest::async_impl::multipart::Form
impl Debug for reqwest::async_impl::multipart::Part
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 CertificateRevocationList
impl Debug for reqwest::tls::Identity
impl Debug for TlsInfo
impl Debug for reqwest::tls::Version
impl Debug for ring::aead::algorithm::Algorithm
impl Debug for LessSafeKey
impl Debug for ring::aead::quic::Algorithm
impl Debug for UnboundKey
impl Debug for ring::agreement::Algorithm
impl Debug for EphemeralPrivateKey
impl Debug for ring::agreement::PublicKey
impl Debug for ring::digest::Algorithm
impl Debug for Digest
impl Debug for Ed25519KeyPair
impl Debug for EdDSAParameters
impl Debug for EcdsaKeyPair
impl Debug for EcdsaSigningAlgorithm
impl Debug for EcdsaVerificationAlgorithm
impl Debug for KeyRejected
impl Debug for Unspecified
impl Debug for ring::hkdf::Algorithm
impl Debug for Prk
impl Debug for Salt
impl Debug for ring::hmac::Algorithm
impl Debug for ring::hmac::Context
impl Debug for ring::hmac::Key
impl Debug for 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 Catcher
impl Debug for rocket::config::config::Config
impl Debug for rocket::config::ident::Ident
impl Debug for rocket::config::shutdown::Shutdown
impl Debug for rocket::cookies::CookieJar<'_>
impl Debug for N
impl Debug for Limits
impl Debug for rocket::error::Error
impl Debug for Info
impl Debug for rocket::fairing::info_kind::Kind
impl Debug for NameBuf<'_>
impl Debug for rocket::form::name::key::Key
impl Debug for rocket::form::name::name::Name
impl Debug for NameView<'_>
impl Debug for rocket::form::options::Options
impl Debug for FileName
impl Debug for NamedFile
impl Debug for FileServer
impl Debug for rocket::fs::server::Options
impl Debug for rocket::local::asynchronous::client::Client
impl Debug for rocket::local::asynchronous::request::LocalRequest<'_>
impl Debug for rocket::local::asynchronous::response::LocalResponse<'_>
impl Debug for rocket::local::blocking::client::Client
impl Debug for rocket::local::blocking::request::LocalRequest<'_>
impl Debug for rocket::local::blocking::response::LocalResponse<'_>
impl Debug for Redirect
impl Debug for rocket::response::response::Response<'_>
impl Debug for NoContent
impl Debug for rocket::response::stream::sse::Event
impl Debug for Route
impl Debug for RouteUri<'_>
impl Debug for rocket::shutdown::Shutdown
impl Debug for Accept
impl Debug for QMediaType
impl Debug for rocket_http::header::content_type::ContentType
impl Debug for MediaType
impl Debug for RawStr
impl Debug for RawStrBuf
impl Debug for Asterisk
impl Debug for TryFromUriError
impl Debug for rowan::cursor::SyntaxElementChildren
impl Debug for rowan::cursor::SyntaxNode
impl Debug for rowan::cursor::SyntaxNodeChildren
impl Debug for rowan::cursor::SyntaxToken
impl Debug for rowan::green::builder::Checkpoint
impl Debug for GreenNodeData
impl Debug for NodeCache
impl Debug for rowan::green::SyntaxKind
impl Debug for GreenToken
impl Debug for GreenTokenData
impl Debug for rustix::backend::event::epoll::CreateFlags
impl Debug for rustix::backend::event::epoll::CreateFlags
impl Debug for rustix::backend::event::epoll::EventFlags
impl Debug for rustix::backend::event::epoll::EventFlags
impl Debug for rustix::backend::event::poll_fd::PollFlags
impl Debug for rustix::backend::event::poll_fd::PollFlags
impl Debug for rustix::backend::event::types::EventfdFlags
impl Debug for rustix::backend::event::types::EventfdFlags
impl Debug for rustix::backend::fs::dir::Dir
impl Debug for rustix::backend::fs::dir::Dir
impl Debug for rustix::backend::fs::dir::DirEntry
impl Debug for rustix::backend::fs::dir::DirEntry
impl Debug for rustix::backend::fs::inotify::CreateFlags
impl Debug for rustix::backend::fs::inotify::CreateFlags
impl Debug for rustix::backend::fs::inotify::ReadFlags
impl Debug for rustix::backend::fs::inotify::ReadFlags
impl Debug for rustix::backend::fs::inotify::WatchFlags
impl Debug for rustix::backend::fs::inotify::WatchFlags
impl Debug for rustix::backend::fs::types::Access
impl Debug for rustix::backend::fs::types::Access
impl Debug for rustix::backend::fs::types::AtFlags
impl Debug for rustix::backend::fs::types::AtFlags
impl Debug for rustix::backend::fs::types::FallocateFlags
impl Debug for rustix::backend::fs::types::FallocateFlags
impl Debug for Fsid
impl Debug for rustix::backend::fs::types::MemfdFlags
impl Debug for rustix::backend::fs::types::MemfdFlags
impl Debug for rustix::backend::fs::types::Mode
impl Debug for rustix::backend::fs::types::Mode
impl Debug for rustix::backend::fs::types::OFlags
impl Debug for rustix::backend::fs::types::OFlags
impl Debug for rustix::backend::fs::types::RenameFlags
impl Debug for rustix::backend::fs::types::RenameFlags
impl Debug for rustix::backend::fs::types::ResolveFlags
impl Debug for rustix::backend::fs::types::ResolveFlags
impl Debug for rustix::backend::fs::types::SealFlags
impl Debug for rustix::backend::fs::types::SealFlags
impl Debug for Stat
impl Debug for StatFs
impl Debug for rustix::backend::fs::types::StatVfsMountFlags
impl Debug for rustix::backend::fs::types::StatVfsMountFlags
impl Debug for rustix::backend::fs::types::StatxFlags
impl Debug for rustix::backend::io::errno::Errno
impl Debug for rustix::backend::io::errno::Errno
impl Debug for rustix::backend::io::types::DupFlags
impl Debug for rustix::backend::io::types::DupFlags
impl Debug for rustix::backend::io::types::FdFlags
impl Debug for rustix::backend::io::types::FdFlags
impl Debug for rustix::backend::io::types::ReadWriteFlags
impl Debug for rustix::backend::io::types::ReadWriteFlags
impl Debug for MountFlags
impl Debug for MountPropagationFlags
impl Debug for UnmountFlags
impl Debug for SocketAddrUnix
impl Debug for rustix::backend::net::send_recv::RecvFlags
impl Debug for SendFlags
impl Debug for rustix::backend::pipe::types::PipeFlags
impl Debug for rustix::backend::pipe::types::PipeFlags
impl Debug for rustix::backend::pipe::types::SpliceFlags
impl Debug for rustix::backend::pipe::types::SpliceFlags
impl Debug for ShmOFlags
impl Debug for TimerfdFlags
impl Debug for TimerfdTimerFlags
impl Debug for rustix::fs::fd::Timestamps
impl Debug for rustix::fs::fd::Timestamps
impl Debug for IFlags
impl Debug for Statx
impl Debug for StatxAttributes
impl Debug for rustix::fs::statx::StatxFlags
impl Debug for StatxTimestamp
impl Debug for rustix::fs::xattr::XattrFlags
impl Debug for rustix::fs::xattr::XattrFlags
impl Debug for Opcode
impl Debug for AddressFamily
impl Debug for rustix::net::types::Protocol
impl Debug for SocketFlags
impl Debug for SocketType
impl Debug for rustix::net::types::UCred
impl Debug for SockaddrXdpFlags
impl Debug for SocketAddrXdp
impl Debug for XdpDesc
impl Debug for XdpDescOptions
impl Debug for XdpMmapOffsets
impl Debug for XdpOptions
impl Debug for XdpOptionsFlags
impl Debug for XdpRingFlags
impl Debug for XdpRingOffset
impl Debug for XdpStatistics
impl Debug for XdpUmemReg
impl Debug for XdpUmemRegFlags
impl Debug for DecInt
impl Debug for rustix::pid::Pid
impl Debug for rustix::pid::Pid
impl Debug for Cpuid
impl Debug for MembarrierQuery
impl Debug for rustix::process::pidfd::PidfdFlags
impl Debug for rustix::process::pidfd::PidfdFlags
impl Debug for rustix::process::pidfd_getfd::PidfdGetfdFlags
impl Debug for rustix::process::pidfd_getfd::PidfdGetfdFlags
impl Debug for rustix::process::prctl::FloatingPointEmulationControl
impl Debug for rustix::process::prctl::FloatingPointEmulationControl
impl Debug for rustix::process::prctl::FloatingPointExceptionMode
impl Debug for rustix::process::prctl::FloatingPointExceptionMode
impl Debug for rustix::process::prctl::PrctlMmMap
impl Debug for rustix::process::prctl::PrctlMmMap
impl Debug for rustix::process::prctl::SpeculationFeatureControl
impl Debug for rustix::process::prctl::SpeculationFeatureControl
impl Debug for rustix::process::prctl::SpeculationFeatureState
impl Debug for rustix::process::prctl::SpeculationFeatureState
impl Debug for rustix::process::prctl::UnalignedAccessControl
impl Debug for rustix::process::prctl::UnalignedAccessControl
impl Debug for rustix::process::rlimit::Rlimit
impl Debug for rustix::process::rlimit::Rlimit
impl Debug for CpuSet
impl Debug for Flock
impl Debug for WaitIdOptions
impl Debug for WaitIdStatus
impl Debug for rustix::process::wait::WaitOptions
impl Debug for rustix::process::wait::WaitOptions
impl Debug for rustix::process::wait::WaitStatus
impl Debug for rustix::process::wait::WaitStatus
impl Debug for WaitidOptions
impl Debug for rustix::signal::Signal
impl Debug for Uname
impl Debug for Itimerspec
impl Debug for Timespec
impl Debug for rustix::ugid::Gid
impl Debug for rustix::ugid::Gid
impl Debug for rustix::ugid::Uid
impl Debug for rustix::ugid::Uid
impl Debug for CertificateResult
impl Debug for rustls_native_certs::Error
impl Debug for AlgorithmIdentifier
impl Debug for rustls_pki_types::server_name::AddrParseError
impl Debug for InvalidDnsNameError
impl Debug for rustls_pki_types::server_name::Ipv4Addr
impl Debug for rustls_pki_types::server_name::Ipv6Addr
impl Debug for Der<'_>
impl Debug for EchConfigListBytes<'_>
impl Debug for InvalidSignature
impl Debug for PrivatePkcs1KeyDer<'_>
impl Debug for PrivatePkcs8KeyDer<'_>
impl Debug for PrivateSec1KeyDer<'_>
impl Debug for UnixTime
impl Debug for OwnedCertRevocationList
impl Debug for OwnedRevokedCert
impl Debug for InvalidNameContext
impl Debug for KeyUsage
impl Debug for RequiredEkuNotFoundContext
impl Debug for WantsVerifier
impl Debug for WantsVersions
impl Debug for DangerousClientConfigBuilder
impl Debug for rustls::client::client_conn::connection::ClientConnection
impl Debug for ClientConfig
impl Debug for ClientConnectionData
impl Debug for Resumption
impl Debug for EchConfig
impl Debug for EchGreaseConfig
impl Debug for ClientSessionMemoryCache
impl Debug for AlwaysResolvesClientRawPublicKeys
impl Debug for IoState
impl Debug for CompressionCacheInner
impl Debug for CompressionFailed
impl Debug for DecompressionFailed
impl Debug for InsufficientSizeError
impl Debug for UnsupportedOperationError
impl Debug for EncapsulatedSecret
impl Debug for HpkePublicKey
impl Debug for HpkeSuite
impl Debug for CertifiedKey
impl Debug for SingleCertAndKey
impl Debug for CryptoProvider
impl Debug for OutputLengthError
impl Debug for OtherError
impl Debug for NoKeyLog
impl Debug for KeyLogFile
impl Debug for DistinguishedName
impl Debug for OutboundOpaqueMessage
impl Debug for PrefixedPayload
impl Debug for PlainMessage
impl Debug for Tls12ClientSessionValue
impl Debug for Tls13ClientSessionValue
impl Debug for rustls::quic::connection::ClientConnection
impl Debug for rustls::quic::connection::ServerConnection
impl Debug for GetRandomFailed
impl Debug for WantsServerCert
impl Debug for ServerSessionMemoryCache
impl Debug for ResolvesServerCertUsingSni
impl Debug for AlwaysResolvesServerRawPublicKeys
impl Debug for NoServerSessionStorage
impl Debug for AcceptedAlert
impl Debug for rustls::server::server_conn::connection::ServerConnection
impl Debug for rustls::server::server_conn::Accepted
impl Debug for ServerConfig
impl Debug for ServerConnectionData
impl Debug for TicketRotator
impl Debug for TicketSwitcher
impl Debug for DefaultTimeProvider
impl Debug for Tls12CipherSuite
impl Debug for Tls13CipherSuite
impl Debug for ClientCertVerified
impl Debug for DigitallySignedStruct
impl Debug for HandshakeSignatureValid
impl Debug for NoClientAuth
impl Debug for ServerCertVerified
impl Debug for SupportedProtocolVersion
impl Debug for RootCertStore
impl Debug for ClientCertVerifierBuilder
impl Debug for WebPkiClientVerifier
impl Debug for ServerCertVerifierBuilder
impl Debug for WebPkiServerVerifier
impl Debug for WebPkiSupportedAlgorithms
impl Debug for same_file::Handle
impl Debug for semver::parse::Error
impl Debug for BuildMetadata
impl Debug for Comparator
impl Debug for Prerelease
impl Debug for VersionReq
impl Debug for IgnoredAny
impl Debug for serde::de::value::Error
impl Debug for serde_json::error::Error
impl Debug for serde_json::map::Map<String, Value>
impl Debug for Number
impl Debug for CompactFormatter
impl Debug for serde_path_to_error::path::Path
impl Debug for DefaultConfig
impl Debug for SigId
impl Debug for ActivationState
impl Debug for RequestData
impl Debug for CompositorState
impl Debug for smithay_client_toolkit::compositor::Region
impl Debug for Surface
impl Debug for SurfaceData
impl Debug for DataDevice
impl Debug for DataDeviceData
impl Debug for DataDeviceOfferInner
impl Debug for DataOfferData
impl Debug for DragOffer
impl Debug for SelectionOffer
impl Debug for CopyPasteSource
impl Debug for DataSourceData
impl Debug for DragSource
impl Debug for ReadPipe
impl Debug for DataDeviceManagerState
impl Debug for WritePipe
impl Debug for DmabufFeedback
impl Debug for DmabufFeedbackTranche
impl Debug for DmabufFormat
impl Debug for DmabufParams
impl Debug for DmabufState
impl Debug for GlobalData
impl Debug for smithay_client_toolkit::output::Mode
impl Debug for OutputData
impl Debug for OutputInfo
impl Debug for OutputState
impl Debug for ScaleWatcherHandle
impl Debug for PrimarySelectionDevice
impl Debug for PrimarySelectionDeviceData
impl Debug for PrimarySelectionOffer
impl Debug for PrimarySelectionOfferData
impl Debug for PrimarySelectionSource
impl Debug for PrimarySelectionManagerState
impl Debug for RegistryState
impl Debug for CursorShapeManager
impl Debug for AxisScroll
impl Debug for PointerData
impl Debug for PointerEvent
impl Debug for PointerConstraintsState
impl Debug for RelativeMotionEvent
impl Debug for RelativePointerState
impl Debug for SeatData
impl Debug for SeatInfo
impl Debug for SeatState
impl Debug for TouchData
impl Debug for SessionLock
impl Debug for SessionLockData
impl Debug for SessionLockInner
impl Debug for SessionLockState
impl Debug for SessionLockSurface
impl Debug for SessionLockSurfaceConfigure
impl Debug for SessionLockSurfaceData
impl Debug for Unsupported
impl Debug for smithay_client_toolkit::shell::wlr_layer::Anchor
impl Debug for LayerShell
impl Debug for LayerSurface
impl Debug for LayerSurfaceConfigure
impl Debug for LayerSurfaceData
impl Debug for UnknownLayer
impl Debug for Popup
impl Debug for PopupConfigure
impl Debug for PopupData
impl Debug for smithay_client_toolkit::shell::xdg::XdgPositioner
impl Debug for XdgShell
impl Debug for XdgShellSurface
impl Debug for smithay_client_toolkit::shell::xdg::window::Window
impl Debug for WindowConfigure
impl Debug for WindowData
impl Debug for RawPool
impl Debug for smithay_client_toolkit::shm::slot::Buffer
impl Debug for Slot
impl Debug for SlotPool
impl Debug for Shm
impl Debug for SubcompositorState
impl Debug for SubsurfaceData
impl Debug for SockAddr
impl Debug for Socket
impl Debug for SockRef<'_>
impl Debug for Domain
impl Debug for socket2::Protocol
impl Debug for socket2::RecvFlags
impl Debug for TcpKeepalive
impl Debug for socket2::Type
impl Debug for subtle::Choice
impl Debug for PathPersistError
impl Debug for TempPath
impl Debug for SpooledTempFile
impl Debug for HyphenSplitter
impl Debug for NoHyphenation
impl Debug for time_core::convert::Day
impl Debug for time_core::convert::Hour
impl Debug for Microsecond
impl Debug for Millisecond
impl Debug for time_core::convert::Minute
impl Debug for Nanosecond
impl Debug for time_core::convert::Second
impl Debug for Week
impl Debug for time::date::Date
impl Debug for time::duration::Duration
impl Debug for ComponentRange
impl Debug for ConversionRange
impl Debug for DifferentVariant
impl Debug for InvalidVariant
impl Debug for time::format_description::modifier::Day
impl Debug for End
impl Debug for time::format_description::modifier::Hour
impl Debug for Ignore
impl Debug for time::format_description::modifier::Minute
impl Debug for time::format_description::modifier::Month
impl Debug for OffsetHour
impl Debug for OffsetMinute
impl Debug for OffsetSecond
impl Debug for Ordinal
impl Debug for Period
impl Debug for time::format_description::modifier::Second
impl Debug for Subsecond
impl Debug for UnixTimestamp
impl Debug for WeekNumber
impl Debug for time::format_description::modifier::Weekday
impl Debug for Year
impl Debug for time::format_description::well_known::iso8601::Config
impl Debug for Rfc2822
impl Debug for Rfc3339
impl Debug for OffsetDateTime
impl Debug for time::parsing::parsed::Parsed
impl Debug for PrimitiveDateTime
impl Debug for time::time::Time
impl Debug for UtcDateTime
impl Debug for UtcOffset
impl Debug for TlsAcceptor
impl Debug for tokio_native_tls::TlsConnector
impl Debug for tokio_stream::stream_ext::timeout::Elapsed
impl Debug for IntervalStream
impl Debug for SignalStream
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 tokio_util::sync::cancellation_token::guard::DropGuard
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 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 GrpcEosErrorsAsFailures
impl Debug for GrpcErrorsAsFailures
impl Debug for StatusInRangeAsFailures
impl Debug for ServerErrorsAsFailures
impl Debug for FilterCredentials
impl Debug for tower_http::follow_redirect::policy::limited::Limited
impl Debug for SameOrigin
impl Debug for tower_layer::identity::Identity
impl Debug for tower::timeout::error::Elapsed
impl Debug for TimeoutLayer
impl Debug for None
impl Debug for ErrorCounter
impl Debug for tracing_appender::non_blocking::NonBlocking
impl Debug for NonBlockingBuilder
impl Debug for WorkerGuard
impl Debug for tracing_appender::rolling::builder::Builder
impl Debug for tracing_appender::rolling::builder::InitError
impl Debug for RollingFileAppender
impl Debug for Rotation
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 tracing_core::field::Field
impl Debug for FieldSet
impl Debug for tracing_core::field::Iter
impl Debug for ValueSet<'_>
impl Debug for tracing_core::metadata::Kind
impl Debug for tracing_core::metadata::Level
impl Debug for tracing_core::metadata::LevelFilter
impl Debug for tracing_core::metadata::Metadata<'_>
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 tracing_log::log_tracer::Builder
impl Debug for LogTracer
impl Debug for tracing_subscriber::filter::directive::ParseError
impl Debug for tracing_subscriber::filter::env::builder::Builder
impl Debug for Directive
impl Debug for BadName
impl Debug for EnvFilter
impl Debug for FromEnvError
impl Debug for FilterId
impl Debug for tracing_subscriber::filter::targets::IntoIter
impl Debug for Targets
impl Debug for Pretty
impl Debug for PrettyFields
impl Debug for Compact
impl Debug for DefaultFields
impl Debug for FmtSpan
impl Debug for tracing_subscriber::fmt::format::Full
impl Debug for tracing_subscriber::fmt::format::Writer<'_>
impl Debug for tracing_subscriber::fmt::time::SystemTime
impl Debug for Uptime
impl Debug for BoxMakeWriter
impl Debug for TestWriter
impl Debug for tracing_subscriber::layer::Identity
impl Debug for tracing_subscriber::registry::sharded::Registry
impl Debug for tracing_subscriber::reload::Error
impl Debug for TryInitError
impl Debug for EnteredSpan
impl Debug for tracing::span::Span
impl Debug for ByteUnit
impl Debug for TrieSetOwned
impl Debug for UncasedStr
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 Utf8CharsError
impl Debug for utf8parse::Parser
impl Debug for Braced
impl Debug for Hyphenated
impl Debug for Simple
impl Debug for Urn
impl Debug for walkdir::dent::DirEntry
impl Debug for walkdir::error::Error
impl Debug for walkdir::IntoIter
impl Debug for WalkDir
impl Debug for Closed
impl Debug for Giver
impl Debug for Taker
impl Debug for Interface
impl Debug for MessageDesc
impl Debug for ObjectInfo
impl Debug for ProtocolError
impl Debug for WEnumError
impl Debug for wayland_backend::rs::client::Backend
impl Debug for wayland_backend::rs::client::ObjectId
impl Debug for wayland_backend::rs::client::ReadEventsGuard
impl Debug for wayland_backend::rs::client::WeakBackend
impl Debug for ClientId
impl Debug for GlobalId
impl Debug for wayland_backend::rs::server::Handle
impl Debug for wayland_backend::rs::server::ObjectId
impl Debug for WeakHandle
impl Debug for wayland_backend::sys::client::Backend
impl Debug for wayland_backend::sys::client::ObjectId
impl Debug for wayland_backend::sys::client::ReadEventsGuard
impl Debug for wayland_backend::sys::client::WeakBackend
impl Debug for wayland_backend::types::client::InvalidId
impl Debug for NoWaylandLib
impl Debug for Credentials
impl Debug for GlobalInfo
impl Debug for wayland_backend::types::server::InvalidId
impl Debug for wayland_client::conn::Connection
impl Debug for wayland_client::globals::Global
impl Debug for GlobalList
impl Debug for GlobalListContents
impl Debug for WlBuffer
impl Debug for WlCallback
impl Debug for WlCompositor
impl Debug for WlDataDevice
impl Debug for DndAction
impl Debug for WlDataDeviceManager
impl Debug for WlDataOffer
impl Debug for WlDataSource
impl Debug for WlDisplay
impl Debug for WlKeyboard
impl Debug for wayland_client::protocol::wl_output::Mode
impl Debug for WlOutput
impl Debug for WlPointer
impl Debug for WlRegion
impl Debug for WlRegistry
impl Debug for wayland_client::protocol::wl_seat::Capability
impl Debug for WlSeat
impl Debug for WlShell
impl Debug for Resize
impl Debug for Transient
impl Debug for WlShellSurface
impl Debug for WlShm
impl Debug for WlShmPool
impl Debug for WlSubcompositor
impl Debug for WlSubsurface
impl Debug for WlSurface
impl Debug for WlTouch
impl Debug for WindowManagerCapabilities
impl Debug for WindowState
impl Debug for wayland_cursor::Cursor
impl Debug for CursorImageBuffer
impl Debug for wayland_cursor::CursorTheme
impl Debug for FrameAndDuration
impl Debug for ZwlrDataControlDeviceV1
impl Debug for ZwlrDataControlManagerV1
impl Debug for ZwlrDataControlOfferV1
impl Debug for ZwlrDataControlSourceV1
impl Debug for ZwlrExportDmabufFrameV1
impl Debug for ZwlrExportDmabufManagerV1
impl Debug for ZwlrForeignToplevelHandleV1
impl Debug for ZwlrForeignToplevelManagerV1
impl Debug for ZwlrGammaControlManagerV1
impl Debug for ZwlrGammaControlV1
impl Debug for ZwlrInputInhibitManagerV1
impl Debug for ZwlrInputInhibitorV1
impl Debug for ZwlrLayerShellV1
impl Debug for wayland_protocols_wlr::layer_shell::v1::generated::client::zwlr_layer_surface_v1::Anchor
impl Debug for ZwlrLayerSurfaceV1
impl Debug for ZwlrOutputConfigurationHeadV1
impl Debug for ZwlrOutputConfigurationV1
impl Debug for ZwlrOutputHeadV1
impl Debug for ZwlrOutputManagerV1
impl Debug for ZwlrOutputModeV1
impl Debug for ZwlrOutputPowerManagerV1
impl Debug for ZwlrOutputPowerV1
impl Debug for wayland_protocols_wlr::screencopy::v1::generated::client::zwlr_screencopy_frame_v1::Flags
impl Debug for ZwlrScreencopyFrameV1
impl Debug for ZwlrScreencopyManagerV1
impl Debug for ZwlrVirtualPointerManagerV1
impl Debug for ZwlrVirtualPointerV1
impl Debug for ExtDataControlDeviceV1
impl Debug for ExtDataControlManagerV1
impl Debug for ExtDataControlOfferV1
impl Debug for ExtDataControlSourceV1
impl Debug for ExtForeignToplevelHandleV1
impl Debug for ExtForeignToplevelListV1
impl Debug for ExtIdleNotificationV1
impl Debug for ExtIdleNotifierV1
impl Debug for ExtForeignToplevelImageCaptureSourceManagerV1
impl Debug for ExtImageCaptureSourceV1
impl Debug for ExtOutputImageCaptureSourceManagerV1
impl Debug for ExtImageCopyCaptureCursorSessionV1
impl Debug for ExtImageCopyCaptureFrameV1
impl Debug for ExtImageCopyCaptureManagerV1
impl Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_manager_v1::Options
impl Debug for ExtImageCopyCaptureSessionV1
impl Debug for ExtSessionLockManagerV1
impl Debug for ExtSessionLockSurfaceV1
impl Debug for ExtSessionLockV1
impl Debug for ExtTransientSeatManagerV1
impl Debug for ExtTransientSeatV1
impl Debug for ExtWorkspaceGroupHandleV1
impl Debug for GroupCapabilities
impl Debug for ExtWorkspaceHandleV1
impl Debug for wayland_protocols::ext::workspace::v1::generated::client::ext_workspace_handle_v1::State
impl Debug for WorkspaceCapabilities
impl Debug for ExtWorkspaceManagerV1
impl Debug for WpAlphaModifierSurfaceV1
impl Debug for WpAlphaModifierV1
impl Debug for WpColorManagementOutputV1
impl Debug for WpColorManagementSurfaceFeedbackV1
impl Debug for WpColorManagementSurfaceV1
impl Debug for WpColorManagerV1
impl Debug for WpImageDescriptionCreatorIccV1
impl Debug for WpImageDescriptionCreatorParamsV1
impl Debug for WpImageDescriptionInfoV1
impl Debug for WpImageDescriptionV1
impl Debug for WpColorRepresentationManagerV1
impl Debug for WpColorRepresentationSurfaceV1
impl Debug for WpCommitTimerV1
impl Debug for WpCommitTimingManagerV1
impl Debug for WpContentTypeManagerV1
impl Debug for WpContentTypeV1
impl Debug for WpCursorShapeDeviceV1
impl Debug for WpCursorShapeManagerV1
impl Debug for WpDrmLeaseConnectorV1
impl Debug for WpDrmLeaseDeviceV1
impl Debug for WpDrmLeaseRequestV1
impl Debug for WpDrmLeaseV1
impl Debug for WpFifoManagerV1
impl Debug for WpFifoV1
impl Debug for WpFractionalScaleManagerV1
impl Debug for WpFractionalScaleV1
impl Debug for ZwpFullscreenShellModeFeedbackV1
impl Debug for ZwpFullscreenShellV1
impl Debug for ZwpIdleInhibitManagerV1
impl Debug for ZwpIdleInhibitorV1
impl Debug for ZwpInputMethodContextV1
impl Debug for ZwpInputMethodV1
impl Debug for ZwpInputPanelSurfaceV1
impl Debug for ZwpInputPanelV1
impl Debug for ZwpInputTimestampsManagerV1
impl Debug for ZwpInputTimestampsV1
impl Debug for ZwpKeyboardShortcutsInhibitManagerV1
impl Debug for ZwpKeyboardShortcutsInhibitorV1
impl Debug for wayland_protocols::wp::linux_dmabuf::zv1::generated::client::zwp_linux_buffer_params_v1::Flags
impl Debug for ZwpLinuxBufferParamsV1
impl Debug for TrancheFlags
impl Debug for ZwpLinuxDmabufFeedbackV1
impl Debug for ZwpLinuxDmabufV1
impl Debug for WpLinuxDrmSyncobjManagerV1
impl Debug for WpLinuxDrmSyncobjSurfaceV1
impl Debug for WpLinuxDrmSyncobjTimelineV1
impl Debug for ZwpLinuxBufferReleaseV1
impl Debug for ZwpLinuxExplicitSynchronizationV1
impl Debug for ZwpLinuxSurfaceSynchronizationV1
impl Debug for ZwpConfinedPointerV1
impl Debug for ZwpLockedPointerV1
impl Debug for ZwpPointerConstraintsV1
impl Debug for ZwpPointerGestureHoldV1
impl Debug for ZwpPointerGesturePinchV1
impl Debug for ZwpPointerGestureSwipeV1
impl Debug for ZwpPointerGesturesV1
impl Debug for WpPresentation
impl Debug for wayland_protocols::wp::presentation_time::generated::client::wp_presentation_feedback::Kind
impl Debug for WpPresentationFeedback
impl Debug for ZwpPrimarySelectionDeviceManagerV1
impl Debug for ZwpPrimarySelectionDeviceV1
impl Debug for ZwpPrimarySelectionOfferV1
impl Debug for ZwpPrimarySelectionSourceV1
impl Debug for ZwpRelativePointerManagerV1
impl Debug for ZwpRelativePointerV1
impl Debug for WpSecurityContextManagerV1
impl Debug for WpSecurityContextV1
impl Debug for WpSinglePixelBufferManagerV1
impl Debug for ZwpTabletManagerV1
impl Debug for ZwpTabletSeatV1
impl Debug for ZwpTabletToolV1
impl Debug for ZwpTabletV1
impl Debug for ZwpTabletManagerV2
impl Debug for ZwpTabletPadGroupV2
impl Debug for ZwpTabletPadRingV2
impl Debug for ZwpTabletPadStripV2
impl Debug for ZwpTabletPadV2
impl Debug for ZwpTabletSeatV2
impl Debug for ZwpTabletToolV2
impl Debug for ZwpTabletV2
impl Debug for WpTearingControlManagerV1
impl Debug for WpTearingControlV1
impl Debug for ZwpTextInputManagerV1
impl Debug for wayland_protocols::wp::text_input::zv1::generated::client::zwp_text_input_v1::ContentHint
impl Debug for ZwpTextInputV1
impl Debug for ZwpTextInputManagerV3
impl Debug for wayland_protocols::wp::text_input::zv3::generated::client::zwp_text_input_v3::ContentHint
impl Debug for ZwpTextInputV3
impl Debug for WpViewport
impl Debug for WpViewporter
impl Debug for XdgActivationTokenV1
impl Debug for XdgActivationV1
impl Debug for ZxdgDecorationManagerV1
impl Debug for ZxdgToplevelDecorationV1
impl Debug for XdgDialogV1
impl Debug for XdgWmDialogV1
impl Debug for ZxdgExportedV1
impl Debug for ZxdgExporterV1
impl Debug for ZxdgImportedV1
impl Debug for ZxdgImporterV1
impl Debug for ZxdgExportedV2
impl Debug for ZxdgExporterV2
impl Debug for ZxdgImportedV2
impl Debug for ZxdgImporterV2
impl Debug for XdgPopup
impl Debug for ConstraintAdjustment
impl Debug for wayland_protocols::xdg::shell::generated::client::xdg_positioner::XdgPositioner
impl Debug for XdgSurface
impl Debug for XdgToplevel
impl Debug for XdgWmBase
impl Debug for XdgSystemBellV1
impl Debug for XdgToplevelDragManagerV1
impl Debug for XdgToplevelDragV1
impl Debug for XdgToplevelIconManagerV1
impl Debug for XdgToplevelIconV1
impl Debug for XdgToplevelTagManagerV1
impl Debug for ZxdgOutputManagerV1
impl Debug for ZxdgOutputV1
impl Debug for ZwpXwaylandKeyboardGrabManagerV1
impl Debug for ZwpXwaylandKeyboardGrabV1
impl Debug for XwaylandShellV1
impl Debug for XwaylandSurfaceV1
impl Debug for wl_interface
impl Debug for CanonicalPath
impl Debug for Noop
impl Debug for which::Path
impl Debug for EmptyError
impl Debug for BStr
impl Debug for winnow::stream::bytes::Bytes
impl Debug for winnow::stream::range::Range
impl Debug for LengthHint
impl Debug for writeable::Part
impl Debug for Atoms
impl Debug for Connect
impl Debug for x11rb_protocol::connection::Connection
impl Debug for IdAllocator
impl Debug for IdsExhausted
impl Debug for PacketReader
impl Debug for ParsedDisplay
impl Debug for EnableReply
impl Debug for EnableRequest
impl Debug for x11rb_protocol::protocol::ge::QueryVersionReply
impl Debug for x11rb_protocol::protocol::ge::QueryVersionRequest
impl Debug for AddGlyphsRequest<'_>
impl Debug for AddTrapsRequest<'_>
impl Debug for Animcursorelt
impl Debug for CP
impl Debug for ChangePictureAux
impl Debug for ChangePictureRequest<'_>
impl Debug for x11rb_protocol::protocol::render::Color
impl Debug for CompositeGlyphs8Request<'_>
impl Debug for CompositeGlyphs16Request<'_>
impl Debug for CompositeGlyphs32Request<'_>
impl Debug for CompositeRequest
impl Debug for CreateAnimCursorRequest<'_>
impl Debug for CreateConicalGradientRequest<'_>
impl Debug for x11rb_protocol::protocol::render::CreateCursorRequest
impl Debug for CreateGlyphSetRequest
impl Debug for CreateLinearGradientRequest<'_>
impl Debug for CreatePictureAux
impl Debug for CreatePictureRequest<'_>
impl Debug for CreateRadialGradientRequest<'_>
impl Debug for CreateSolidFillRequest
impl Debug for Directformat
impl Debug for FillRectanglesRequest<'_>
impl Debug for FreeGlyphSetRequest
impl Debug for FreeGlyphsRequest<'_>
impl Debug for FreePictureRequest
impl Debug for Glyphinfo
impl Debug for Indexvalue
impl Debug for Linefix
impl Debug for PictOp
impl Debug for PictType
impl Debug for Pictdepth
impl Debug for Pictforminfo
impl Debug for Pictscreen
impl Debug for PictureEnum
impl Debug for Pictvisual
impl Debug for Pointfix
impl Debug for PolyEdge
impl Debug for PolyMode
impl Debug for QueryFiltersReply
impl Debug for QueryFiltersRequest
impl Debug for QueryPictFormatsReply
impl Debug for QueryPictFormatsRequest
impl Debug for QueryPictIndexValuesReply
impl Debug for QueryPictIndexValuesRequest
impl Debug for x11rb_protocol::protocol::render::QueryVersionReply
impl Debug for x11rb_protocol::protocol::render::QueryVersionRequest
impl Debug for ReferenceGlyphSetRequest
impl Debug for x11rb_protocol::protocol::render::Repeat
impl Debug for SetPictureClipRectanglesRequest<'_>
impl Debug for SetPictureFilterRequest<'_>
impl Debug for SetPictureTransformRequest
impl Debug for Spanfix
impl Debug for SubPixel
impl Debug for x11rb_protocol::protocol::render::Transform
impl Debug for Trap
impl Debug for Trapezoid
impl Debug for TrapezoidsRequest<'_>
impl Debug for TriFanRequest<'_>
impl Debug for TriStripRequest<'_>
impl Debug for Triangle
impl Debug for TrianglesRequest<'_>
impl Debug for CombineRequest
impl Debug for GetRectanglesReply
impl Debug for GetRectanglesRequest
impl Debug for InputSelectedReply
impl Debug for InputSelectedRequest
impl Debug for MaskRequest
impl Debug for NotifyEvent
impl Debug for OffsetRequest
impl Debug for QueryExtentsReply
impl Debug for QueryExtentsRequest
impl Debug for x11rb_protocol::protocol::shape::QueryVersionReply
impl Debug for x11rb_protocol::protocol::shape::QueryVersionRequest
impl Debug for RectanglesRequest<'_>
impl Debug for SK
impl Debug for SO
impl Debug for SelectInputRequest
impl Debug for GetVersionReply
impl Debug for GetVersionRequest
impl Debug for GetXIDListReply
impl Debug for GetXIDListRequest
impl Debug for GetXIDRangeReply
impl Debug for GetXIDRangeRequest
impl Debug for BarrierDirections
impl Debug for ChangeCursorByNameRequest<'_>
impl Debug for ChangeCursorRequest
impl Debug for x11rb_protocol::protocol::xfixes::ChangeSaveSetRequest
impl Debug for ClientDisconnectFlags
impl Debug for CopyRegionRequest
impl Debug for CreatePointerBarrierRequest<'_>
impl Debug for CreateRegionFromBitmapRequest
impl Debug for CreateRegionFromGCRequest
impl Debug for CreateRegionFromPictureRequest
impl Debug for CreateRegionFromWindowRequest
impl Debug for CreateRegionRequest<'_>
impl Debug for CursorNotify
impl Debug for CursorNotifyEvent
impl Debug for CursorNotifyMask
impl Debug for DeletePointerBarrierRequest
impl Debug for DestroyRegionRequest
impl Debug for ExpandRegionRequest
impl Debug for FetchRegionReply
impl Debug for FetchRegionRequest
impl Debug for GetClientDisconnectModeReply
impl Debug for GetClientDisconnectModeRequest
impl Debug for GetCursorImageAndNameReply
impl Debug for GetCursorImageAndNameRequest
impl Debug for GetCursorImageReply
impl Debug for GetCursorImageRequest
impl Debug for GetCursorNameReply
impl Debug for GetCursorNameRequest
impl Debug for HideCursorRequest
impl Debug for IntersectRegionRequest
impl Debug for InvertRegionRequest
impl Debug for x11rb_protocol::protocol::xfixes::QueryVersionReply
impl Debug for x11rb_protocol::protocol::xfixes::QueryVersionRequest
impl Debug for RegionEnum
impl Debug for RegionExtentsRequest
impl Debug for SaveSetMapping
impl Debug for SaveSetMode
impl Debug for SaveSetTarget
impl Debug for SelectCursorInputRequest
impl Debug for SelectSelectionInputRequest
impl Debug for SelectionEvent
impl Debug for SelectionEventMask
impl Debug for x11rb_protocol::protocol::xfixes::SelectionNotifyEvent
impl Debug for SetClientDisconnectModeRequest
impl Debug for SetCursorNameRequest<'_>
impl Debug for SetGCClipRegionRequest
impl Debug for SetPictureClipRegionRequest
impl Debug for SetRegionRequest<'_>
impl Debug for SetWindowShapeRegionRequest
impl Debug for ShowCursorRequest
impl Debug for SubtractRegionRequest
impl Debug for TranslateRegionRequest
impl Debug for UnionRegionRequest
impl Debug for AccessControl
impl Debug for AllocColorCellsReply
impl Debug for AllocColorCellsRequest
impl Debug for AllocColorPlanesReply
impl Debug for AllocColorPlanesRequest
impl Debug for AllocColorReply
impl Debug for AllocColorRequest
impl Debug for AllocNamedColorReply
impl Debug for AllocNamedColorRequest<'_>
impl Debug for x11rb_protocol::protocol::xproto::Allow
impl Debug for AllowEventsRequest
impl Debug for x11rb_protocol::protocol::xproto::Arc
impl Debug for ArcMode
impl Debug for AtomEnum
impl Debug for AutoRepeatMode
impl Debug for BackPixmap
impl Debug for BackingStore
impl Debug for BellRequest
impl Debug for Blanking
impl Debug for ButtonIndex
impl Debug for ButtonMask
impl Debug for ButtonPressEvent
impl Debug for CW
impl Debug for CapStyle
impl Debug for ChangeActivePointerGrabRequest
impl Debug for ChangeGCAux
impl Debug for ChangeGCRequest<'_>
impl Debug for ChangeHostsRequest<'_>
impl Debug for ChangeKeyboardControlAux
impl Debug for ChangeKeyboardControlRequest<'_>
impl Debug for ChangeKeyboardMappingRequest<'_>
impl Debug for ChangePointerControlRequest
impl Debug for ChangePropertyRequest<'_>
impl Debug for x11rb_protocol::protocol::xproto::ChangeSaveSetRequest
impl Debug for ChangeWindowAttributesAux
impl Debug for ChangeWindowAttributesRequest<'_>
impl Debug for Char2b
impl Debug for Charinfo
impl Debug for Circulate
impl Debug for CirculateNotifyEvent
impl Debug for CirculateWindowRequest
impl Debug for ClearAreaRequest
impl Debug for ClientMessageData
impl Debug for ClientMessageEvent
impl Debug for ClipOrdering
impl Debug for CloseDown
impl Debug for CloseFontRequest
impl Debug for ColorFlag
impl Debug for Coloritem
impl Debug for ColormapAlloc
impl Debug for ColormapEnum
impl Debug for ColormapNotifyEvent
impl Debug for ColormapState
impl Debug for ConfigWindow
impl Debug for ConfigureNotifyEvent
impl Debug for ConfigureRequestEvent
impl Debug for ConfigureWindowAux
impl Debug for ConfigureWindowRequest<'_>
impl Debug for ConvertSelectionRequest
impl Debug for CoordMode
impl Debug for CopyAreaRequest
impl Debug for CopyColormapAndFreeRequest
impl Debug for CopyGCRequest
impl Debug for CopyPlaneRequest
impl Debug for CreateColormapRequest
impl Debug for x11rb_protocol::protocol::xproto::CreateCursorRequest
impl Debug for CreateGCAux
impl Debug for CreateGCRequest<'_>
impl Debug for CreateGlyphCursorRequest
impl Debug for CreateNotifyEvent
impl Debug for CreatePixmapRequest
impl Debug for CreateWindowAux
impl Debug for CreateWindowRequest<'_>
impl Debug for CursorEnum
impl Debug for DeletePropertyRequest
impl Debug for Depth
impl Debug for DestroyNotifyEvent
impl Debug for DestroySubwindowsRequest
impl Debug for DestroyWindowRequest
impl Debug for EnterNotifyEvent
impl Debug for x11rb_protocol::protocol::xproto::EventMask
impl Debug for ExposeEvent
impl Debug for Exposures
impl Debug for x11rb_protocol::protocol::xproto::Family
impl Debug for FillPolyRequest<'_>
impl Debug for FillRule
impl Debug for FillStyle
impl Debug for FocusInEvent
impl Debug for FontDraw
impl Debug for FontEnum
impl Debug for Fontprop
impl Debug for ForceScreenSaverRequest
impl Debug for x11rb_protocol::protocol::xproto::Format
impl Debug for FreeColormapRequest
impl Debug for FreeColorsRequest<'_>
impl Debug for FreeCursorRequest
impl Debug for FreeGCRequest
impl Debug for FreePixmapRequest
impl Debug for GC
impl Debug for GX
impl Debug for GeGenericEvent
impl Debug for GetAtomNameReply
impl Debug for GetAtomNameRequest
impl Debug for GetFontPathReply
impl Debug for GetFontPathRequest
impl Debug for GetGeometryReply
impl Debug for GetGeometryRequest
impl Debug for GetImageReply
impl Debug for GetImageRequest
impl Debug for GetInputFocusReply
impl Debug for GetInputFocusRequest
impl Debug for GetKeyboardControlReply
impl Debug for GetKeyboardControlRequest
impl Debug for GetKeyboardMappingReply
impl Debug for GetKeyboardMappingRequest
impl Debug for GetModifierMappingReply
impl Debug for GetModifierMappingRequest
impl Debug for GetMotionEventsReply
impl Debug for GetMotionEventsRequest
impl Debug for GetPointerControlReply
impl Debug for GetPointerControlRequest
impl Debug for GetPointerMappingReply
impl Debug for GetPointerMappingRequest
impl Debug for GetPropertyReply
impl Debug for GetPropertyRequest
impl Debug for GetPropertyType
impl Debug for GetScreenSaverReply
impl Debug for GetScreenSaverRequest
impl Debug for GetSelectionOwnerReply
impl Debug for GetSelectionOwnerRequest
impl Debug for GetWindowAttributesReply
impl Debug for GetWindowAttributesRequest
impl Debug for Grab
impl Debug for GrabButtonRequest
impl Debug for GrabKeyRequest
impl Debug for GrabKeyboardReply
impl Debug for GrabKeyboardRequest
impl Debug for GrabMode
impl Debug for GrabPointerReply
impl Debug for GrabPointerRequest
impl Debug for GrabServerRequest
impl Debug for GrabStatus
impl Debug for GraphicsExposureEvent
impl Debug for x11rb_protocol::protocol::xproto::Gravity
impl Debug for GravityNotifyEvent
impl Debug for x11rb_protocol::protocol::xproto::Host
impl Debug for HostMode
impl Debug for ImageFormat
impl Debug for ImageOrder
impl Debug for ImageText8Request<'_>
impl Debug for ImageText16Request<'_>
impl Debug for InputFocus
impl Debug for InstallColormapRequest
impl Debug for InternAtomReply
impl Debug for InternAtomRequest<'_>
impl Debug for JoinStyle
impl Debug for KB
impl Debug for KeyButMask
impl Debug for KeyPressEvent
impl Debug for KeymapNotifyEvent
impl Debug for Kill
impl Debug for KillClientRequest
impl Debug for LedMode
impl Debug for LineStyle
impl Debug for ListExtensionsReply
impl Debug for ListExtensionsRequest
impl Debug for ListFontsReply
impl Debug for ListFontsRequest<'_>
impl Debug for ListFontsWithInfoReply
impl Debug for ListFontsWithInfoRequest<'_>
impl Debug for ListHostsReply
impl Debug for ListHostsRequest
impl Debug for ListInstalledColormapsReply
impl Debug for ListInstalledColormapsRequest
impl Debug for ListPropertiesReply
impl Debug for ListPropertiesRequest
impl Debug for LookupColorReply
impl Debug for LookupColorRequest<'_>
impl Debug for MapIndex
impl Debug for MapNotifyEvent
impl Debug for MapRequestEvent
impl Debug for MapState
impl Debug for MapSubwindowsRequest
impl Debug for MapWindowRequest
impl Debug for Mapping
impl Debug for MappingNotifyEvent
impl Debug for MappingStatus
impl Debug for ModMask
impl Debug for Motion
impl Debug for MotionNotifyEvent
impl Debug for NoExposureEvent
impl Debug for NoOperationRequest
impl Debug for NotifyDetail
impl Debug for NotifyMode
impl Debug for OpenFontRequest<'_>
impl Debug for PixmapEnum
impl Debug for Place
impl Debug for x11rb_protocol::protocol::xproto::Point
impl Debug for PolyArcRequest<'_>
impl Debug for PolyFillArcRequest<'_>
impl Debug for PolyFillRectangleRequest<'_>
impl Debug for PolyLineRequest<'_>
impl Debug for PolyPointRequest<'_>
impl Debug for PolyRectangleRequest<'_>
impl Debug for PolySegmentRequest<'_>
impl Debug for PolyShape
impl Debug for PolyText8Request<'_>
impl Debug for PolyText16Request<'_>
impl Debug for PropMode
impl Debug for Property
impl Debug for PropertyNotifyEvent
impl Debug for PutImageRequest<'_>
impl Debug for QueryBestSizeReply
impl Debug for QueryBestSizeRequest
impl Debug for QueryColorsReply
impl Debug for QueryColorsRequest<'_>
impl Debug for QueryExtensionReply
impl Debug for QueryExtensionRequest<'_>
impl Debug for QueryFontReply
impl Debug for QueryFontRequest
impl Debug for QueryKeymapReply
impl Debug for QueryKeymapRequest
impl Debug for QueryPointerReply
impl Debug for QueryPointerRequest
impl Debug for QueryShapeOf
impl Debug for QueryTextExtentsReply
impl Debug for QueryTextExtentsRequest<'_>
impl Debug for QueryTreeReply
impl Debug for QueryTreeRequest
impl Debug for RecolorCursorRequest
impl Debug for Rectangle
impl Debug for ReparentNotifyEvent
impl Debug for ReparentWindowRequest
impl Debug for ResizeRequestEvent
impl Debug for x11rb_protocol::protocol::xproto::Rgb
impl Debug for RotatePropertiesRequest<'_>
impl Debug for Screen
impl Debug for ScreenSaver
impl Debug for x11rb_protocol::protocol::xproto::Segment
impl Debug for SelectionClearEvent
impl Debug for x11rb_protocol::protocol::xproto::SelectionNotifyEvent
impl Debug for SelectionRequestEvent
impl Debug for SendEventDest
impl Debug for SendEventRequest<'_>
impl Debug for SetAccessControlRequest
impl Debug for SetClipRectanglesRequest<'_>
impl Debug for SetCloseDownModeRequest
impl Debug for SetDashesRequest<'_>
impl Debug for SetFontPathRequest<'_>
impl Debug for SetInputFocusRequest
impl Debug for SetMode
impl Debug for SetModifierMappingReply
impl Debug for SetModifierMappingRequest<'_>
impl Debug for SetPointerMappingReply
impl Debug for SetPointerMappingRequest<'_>
impl Debug for SetScreenSaverRequest
impl Debug for SetSelectionOwnerRequest
impl Debug for Setup
impl Debug for SetupAuthenticate
impl Debug for SetupFailed
impl Debug for SetupRequest
impl Debug for StackMode
impl Debug for StoreColorsRequest<'_>
impl Debug for StoreNamedColorRequest<'_>
impl Debug for Str
impl Debug for SubwindowMode
impl Debug for x11rb_protocol::protocol::xproto::Time
impl Debug for Timecoord
impl Debug for TranslateCoordinatesReply
impl Debug for TranslateCoordinatesRequest
impl Debug for UngrabButtonRequest
impl Debug for UngrabKeyRequest
impl Debug for UngrabKeyboardRequest
impl Debug for UngrabPointerRequest
impl Debug for UngrabServerRequest
impl Debug for UninstallColormapRequest
impl Debug for UnmapNotifyEvent
impl Debug for UnmapSubwindowsRequest
impl Debug for UnmapWindowRequest
impl Debug for x11rb_protocol::protocol::xproto::Visibility
impl Debug for VisibilityNotifyEvent
impl Debug for VisualClass
impl Debug for Visualtype
impl Debug for WarpPointerRequest
impl Debug for WindowClass
impl Debug for WindowEnum
impl Debug for ExtensionInformation
impl Debug for RequestHeader
impl Debug for X11Error
impl Debug for x11rb_protocol::xauth::Family
impl Debug for ExtensionManager
impl Debug for AspectRatio
impl Debug for WmClass
impl Debug for WmHints
impl Debug for WmSizeHints
impl Debug for DefaultStream
impl Debug for xcursor::parser::Image
impl Debug for xcursor::CursorTheme
impl Debug for Condition
impl Debug for yansi::style::Style
impl Debug for zerocopy::error::AllocError
impl Debug for AsciiProbeResult
impl Debug for CharULE
impl Debug for Index8
impl Debug for Index16
impl Debug for Index32
impl Debug for DuplexStream
impl Debug for capability_3p::io::Empty
impl Debug for capability_3p::io::Error
impl Debug for capability_3p::io::Interest
impl Debug for capability_3p::io::ReadBuf<'_>
impl Debug for capability_3p::io::Ready
impl Debug for capability_3p::io::Repeat
impl Debug for SimplexStream
impl Debug for capability_3p::io::Sink
impl Debug for capability_3p::io::Stderr
impl Debug for capability_3p::io::Stdin
impl Debug for capability_3p::io::Stdout
impl Debug for TryIoError
impl Debug for Assume
impl Debug for AgentCoordinate
impl Debug for BadWorkspace
impl Debug for BatchChoice
impl Debug for BatchErrorData
impl Debug for BatchErrorDetails
impl Debug for BatchErrorResponseBody
impl Debug for BatchExecutionResult
impl Debug for BatchFileReconciliationRecommendedCourseOfAction
impl Debug for BatchFileTriple
impl Debug for BatchInputData
impl Debug for BatchMessage
impl Debug for BatchMessageContent
impl Debug for BatchMetadata
impl Debug for BatchOnlineStatus
impl Debug for BatchOutputData
impl Debug for BatchRequestId
impl Debug for BatchRequestRecord
impl Debug for BatchResponseContent
impl Debug for BatchResponseRecord
impl Debug for BatchSuccessResponseBody
impl Debug for BatchTokenDetails
impl Debug for BatchUsage
impl Debug for BatchWorkspace
impl Debug for BufferedLayer
impl Debug for capability_3p::Builder
impl Debug for CamelCaseTokenWithComment
impl Debug for CancellationToken
impl Debug for capability_3p::ChatCompletionRequestSystemMessage
impl Debug for capability_3p::ChatCompletionRequestUserMessage
impl Debug for capability_3p::Command
impl Debug for capability_3p::CreateChatCompletionRequestArgs
impl Debug for CustomRequestId
impl Debug for capability_3p::Dependency
impl Debug for capability_3p::Duration
impl Debug for capability_3p::Error
impl Debug for capability_3p::Event
impl Debug for FailingWorkspace
impl Debug for capability_3p::File
impl Debug for GreenNode
impl Debug for InstructedLanguageModelAtCoordinate
impl Debug for LanguageModelBatchAPIRequest
impl Debug for LanguageModelMessage
impl Debug for LanguageModelRequestBody
impl Debug for capability_3p::Metadata
impl Debug for MetadataCommand
impl Debug for MockBatchConfig
impl Debug for MockBatchWorkspace
impl Debug for MockItem
impl Debug for NoContext
impl Debug for NonNilUuid
impl Debug for capability_3p::NotifyConfig
impl Debug for capability_3p::Package
impl Debug for PackageId
impl Debug for capability_3p::Path
impl Debug for PathBuf
impl Debug for capability_3p::Regex
impl Debug for capability_3p::Request<'_>
impl Debug for ResponseRequestId
impl Debug for Runtime
impl Debug for capability_3p::SemverVersion
impl Debug for SmolStr
impl Debug for SmolStrBuilder
impl Debug for SourceFile
impl Debug for capability_3p::Status
impl Debug for capability_3p::StdRng
impl Debug for Stdio
impl Debug for SyntaxError
impl Debug for SyntaxText
impl Debug for SystemMessageHeader
impl Debug for TempDir
impl Debug for TextRange
impl Debug for TextSize
impl Debug for capability_3p::Timestamp
impl Debug for TokenPackagedForExpansion
impl Debug for TokenText<'_>
impl Debug for Array
impl Debug for Uuid
impl Debug for capability_3p::syntax_editor::Position
impl Debug for SyntaxAnnotation
impl Debug for SyntaxEditor
impl Debug for SyntaxMapping
impl Debug for SyntaxMappingBuilder
impl Debug for capability_3p::task::AbortHandle
impl Debug for capability_3p::task::Id
impl Debug for JoinError
impl Debug for LocalEnterGuard
impl Debug for LocalSet
impl Debug for capability_3p::ted::Position
impl Debug for AccessError
impl Debug for capability_3p::thread::Builder
impl Debug for capability_3p::thread::Scope<'_, '_>
impl Debug for Thread
impl Debug for ThreadId
impl Debug for capability_3p::tokio::net::TcpListener
impl Debug for TcpSocket
impl Debug for capability_3p::tokio::net::TcpStream
impl Debug for capability_3p::tokio::net::UdpSocket
impl Debug for capability_3p::tokio::net::UnixDatagram
impl Debug for capability_3p::tokio::net::UnixListener
impl Debug for UnixSocket
impl Debug for capability_3p::tokio::net::UnixStream
impl Debug for capability_3p::tokio::net::tcp::OwnedReadHalf
impl Debug for capability_3p::tokio::net::tcp::OwnedWriteHalf
impl Debug for capability_3p::tokio::net::tcp::ReuniteError
impl Debug for capability_3p::tokio::net::unix::pipe::OpenOptions
impl Debug for capability_3p::tokio::net::unix::pipe::Receiver
impl Debug for capability_3p::tokio::net::unix::pipe::Sender
impl Debug for capability_3p::tokio::net::unix::OwnedReadHalf
impl Debug for capability_3p::tokio::net::unix::OwnedWriteHalf
impl Debug for capability_3p::tokio::net::unix::ReuniteError
impl Debug for capability_3p::tokio::net::unix::SocketAddr
impl Debug for capability_3p::tokio::net::unix::UCred
impl Debug for capability_3p::tokio::process::Child
impl Debug for capability_3p::tokio::process::ChildStderr
impl Debug for capability_3p::tokio::process::ChildStdin
impl Debug for capability_3p::tokio::process::ChildStdout
impl Debug for capability_3p::tokio::runtime::Builder
impl Debug for capability_3p::tokio::runtime::Handle
impl Debug for RuntimeMetrics
impl Debug for TryCurrentError
impl Debug for capability_3p::tokio::signal::unix::Signal
impl Debug for SignalKind
impl Debug for capability_3p::tokio::sync::oneshot::error::RecvError
impl Debug for AcquireError
impl Debug for capability_3p::tokio::sync::Barrier
impl Debug for capability_3p::tokio::sync::BarrierWaitResult
impl Debug for Notify
impl Debug for OwnedSemaphorePermit
impl Debug for Semaphore
impl Debug for capability_3p::tokio::sync::TryLockError
impl Debug for capability_3p::tokio::sync::watch::error::RecvError
impl Debug for capability_3p::tokio::time::error::Elapsed
impl Debug for capability_3p::tokio::time::error::Error
impl Debug for capability_3p::tokio::time::Instant
impl Debug for Interval
impl Debug for Sleep
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Sync + Send
impl Debug for dyn Value
impl Debug for dyn ObjectData
impl Debug for dyn ClientData
impl Debug for dyn ObjectData
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for std::path::Component<'a>
impl<'a> Debug for std::path::Prefix<'a>
impl<'a> Debug for Utf8Prefix<'a>
impl<'a> Debug for chrono::format::Item<'a>
impl<'a> Debug for ra_ap_parser::output::Step<'a>
impl<'a> Debug for StrStep<'a>
impl<'a> Debug for rand::seq::index::IndexVecIter<'a>
impl<'a> Debug for rand::seq::index_::IndexVecIter<'a>
impl<'a> Debug for rocket::serde::json::Error<'a>
impl<'a> Debug for rocket_http::uri::uri::Uri<'a>
impl<'a> Debug for DynamicClockId<'a>
impl<'a> Debug for rustix::process::wait::WaitId<'a>
impl<'a> Debug for rustix::process::wait::WaitId<'a>
impl<'a> Debug for PrivateKeyDer<'a>
impl<'a> Debug for CertRevocationList<'a>
impl<'a> Debug for OutboundChunks<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for ThemeSpec<'a>
impl<'a> Debug for wayland_client::protocol::wl_buffer::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_callback::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_compositor::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_data_device::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_data_device_manager::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_data_offer::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_data_source::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_display::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_keyboard::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_output::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_pointer::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_region::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_registry::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_seat::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_shell::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_shell_surface::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_shm::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_shm_pool::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_subcompositor::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_subsurface::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_surface::Request<'a>
impl<'a> Debug for wayland_client::protocol::wl_touch::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::data_control::v1::generated::client::zwlr_data_control_device_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::data_control::v1::generated::client::zwlr_data_control_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::data_control::v1::generated::client::zwlr_data_control_offer_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::data_control::v1::generated::client::zwlr_data_control_source_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::export_dmabuf::v1::generated::client::zwlr_export_dmabuf_frame_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::export_dmabuf::v1::generated::client::zwlr_export_dmabuf_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::foreign_toplevel::v1::generated::client::zwlr_foreign_toplevel_handle_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::foreign_toplevel::v1::generated::client::zwlr_foreign_toplevel_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::gamma_control::v1::generated::client::zwlr_gamma_control_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::gamma_control::v1::generated::client::zwlr_gamma_control_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::input_inhibitor::v1::generated::client::zwlr_input_inhibit_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::input_inhibitor::v1::generated::client::zwlr_input_inhibitor_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::layer_shell::v1::generated::client::zwlr_layer_shell_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::layer_shell::v1::generated::client::zwlr_layer_surface_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_configuration_head_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_configuration_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_head_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::output_management::v1::generated::client::zwlr_output_mode_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::output_power_management::v1::generated::client::zwlr_output_power_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::output_power_management::v1::generated::client::zwlr_output_power_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::screencopy::v1::generated::client::zwlr_screencopy_frame_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::screencopy::v1::generated::client::zwlr_screencopy_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::virtual_pointer::v1::generated::client::zwlr_virtual_pointer_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols_wlr::virtual_pointer::v1::generated::client::zwlr_virtual_pointer_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::data_control::v1::generated::client::ext_data_control_device_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::data_control::v1::generated::client::ext_data_control_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::data_control::v1::generated::client::ext_data_control_offer_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::data_control::v1::generated::client::ext_data_control_source_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::foreign_toplevel_list::v1::generated::client::ext_foreign_toplevel_handle_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::foreign_toplevel_list::v1::generated::client::ext_foreign_toplevel_list_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::idle_notify::v1::generated::client::ext_idle_notification_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::idle_notify::v1::generated::client::ext_idle_notifier_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::image_capture_source::v1::generated::client::ext_foreign_toplevel_image_capture_source_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::image_capture_source::v1::generated::client::ext_image_capture_source_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::image_capture_source::v1::generated::client::ext_output_image_capture_source_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_cursor_session_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_frame_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::image_copy_capture::v1::generated::client::ext_image_copy_capture_session_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::session_lock::v1::generated::client::ext_session_lock_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::session_lock::v1::generated::client::ext_session_lock_surface_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::session_lock::v1::generated::client::ext_session_lock_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::transient_seat::v1::generated::client::ext_transient_seat_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::transient_seat::v1::generated::client::ext_transient_seat_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::workspace::v1::generated::client::ext_workspace_group_handle_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::workspace::v1::generated::client::ext_workspace_handle_v1::Request<'a>
impl<'a> Debug for wayland_protocols::ext::workspace::v1::generated::client::ext_workspace_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::alpha_modifier::v1::generated::client::wp_alpha_modifier_surface_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::alpha_modifier::v1::generated::client::wp_alpha_modifier_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_management_output_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_management_surface_feedback_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_management_surface_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_color_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_image_description_creator_icc_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_image_description_creator_params_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_image_description_info_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::color_management::v1::generated::client::wp_image_description_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::color_representation::v1::generated::client::wp_color_representation_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::color_representation::v1::generated::client::wp_color_representation_surface_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::commit_timing::v1::generated::client::wp_commit_timer_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::commit_timing::v1::generated::client::wp_commit_timing_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::content_type::v1::generated::client::wp_content_type_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::content_type::v1::generated::client::wp_content_type_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::cursor_shape::v1::generated::client::wp_cursor_shape_device_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::cursor_shape::v1::generated::client::wp_cursor_shape_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::drm_lease::v1::generated::client::wp_drm_lease_connector_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::drm_lease::v1::generated::client::wp_drm_lease_device_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::drm_lease::v1::generated::client::wp_drm_lease_request_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::drm_lease::v1::generated::client::wp_drm_lease_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::fifo::v1::generated::client::wp_fifo_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::fifo::v1::generated::client::wp_fifo_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::fractional_scale::v1::generated::client::wp_fractional_scale_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::fractional_scale::v1::generated::client::wp_fractional_scale_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::fullscreen_shell::zv1::generated::client::zwp_fullscreen_shell_mode_feedback_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::fullscreen_shell::zv1::generated::client::zwp_fullscreen_shell_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::idle_inhibit::zv1::generated::client::zwp_idle_inhibit_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::idle_inhibit::zv1::generated::client::zwp_idle_inhibitor_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::input_method::zv1::generated::client::zwp_input_method_context_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::input_method::zv1::generated::client::zwp_input_method_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::input_method::zv1::generated::client::zwp_input_panel_surface_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::input_method::zv1::generated::client::zwp_input_panel_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::input_timestamps::zv1::generated::client::zwp_input_timestamps_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::input_timestamps::zv1::generated::client::zwp_input_timestamps_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::keyboard_shortcuts_inhibit::zv1::generated::client::zwp_keyboard_shortcuts_inhibit_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::keyboard_shortcuts_inhibit::zv1::generated::client::zwp_keyboard_shortcuts_inhibitor_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::linux_dmabuf::zv1::generated::client::zwp_linux_buffer_params_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::linux_dmabuf::zv1::generated::client::zwp_linux_dmabuf_feedback_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::linux_dmabuf::zv1::generated::client::zwp_linux_dmabuf_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::linux_drm_syncobj::v1::generated::client::wp_linux_drm_syncobj_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::linux_drm_syncobj::v1::generated::client::wp_linux_drm_syncobj_surface_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::linux_drm_syncobj::v1::generated::client::wp_linux_drm_syncobj_timeline_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::linux_explicit_synchronization::zv1::generated::client::zwp_linux_buffer_release_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::linux_explicit_synchronization::zv1::generated::client::zwp_linux_explicit_synchronization_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::linux_explicit_synchronization::zv1::generated::client::zwp_linux_surface_synchronization_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::pointer_constraints::zv1::generated::client::zwp_confined_pointer_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::pointer_constraints::zv1::generated::client::zwp_locked_pointer_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::pointer_constraints::zv1::generated::client::zwp_pointer_constraints_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::pointer_gestures::zv1::generated::client::zwp_pointer_gesture_hold_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::pointer_gestures::zv1::generated::client::zwp_pointer_gesture_pinch_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::pointer_gestures::zv1::generated::client::zwp_pointer_gesture_swipe_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::pointer_gestures::zv1::generated::client::zwp_pointer_gestures_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::presentation_time::generated::client::wp_presentation::Request<'a>
impl<'a> Debug for wayland_protocols::wp::presentation_time::generated::client::wp_presentation_feedback::Request<'a>
impl<'a> Debug for wayland_protocols::wp::primary_selection::zv1::generated::client::zwp_primary_selection_device_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::primary_selection::zv1::generated::client::zwp_primary_selection_device_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::primary_selection::zv1::generated::client::zwp_primary_selection_offer_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::primary_selection::zv1::generated::client::zwp_primary_selection_source_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::relative_pointer::zv1::generated::client::zwp_relative_pointer_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::relative_pointer::zv1::generated::client::zwp_relative_pointer_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::security_context::v1::generated::client::wp_security_context_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::security_context::v1::generated::client::wp_security_context_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::single_pixel_buffer::v1::generated::client::wp_single_pixel_buffer_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_seat_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_tool_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv1::generated::client::zwp_tablet_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_manager_v2::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_pad_group_v2::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_pad_ring_v2::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_pad_strip_v2::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_pad_v2::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_seat_v2::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_tool_v2::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tablet::zv2::generated::client::zwp_tablet_v2::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tearing_control::v1::generated::client::wp_tearing_control_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::tearing_control::v1::generated::client::wp_tearing_control_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::text_input::zv1::generated::client::zwp_text_input_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::text_input::zv1::generated::client::zwp_text_input_v1::Request<'a>
impl<'a> Debug for wayland_protocols::wp::text_input::zv3::generated::client::zwp_text_input_manager_v3::Request<'a>
impl<'a> Debug for wayland_protocols::wp::text_input::zv3::generated::client::zwp_text_input_v3::Request<'a>
impl<'a> Debug for wayland_protocols::wp::viewporter::generated::client::wp_viewport::Request<'a>
impl<'a> Debug for wayland_protocols::wp::viewporter::generated::client::wp_viewporter::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::activation::v1::generated::client::xdg_activation_token_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::activation::v1::generated::client::xdg_activation_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::decoration::zv1::generated::client::zxdg_decoration_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::decoration::zv1::generated::client::zxdg_toplevel_decoration_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::dialog::v1::generated::client::xdg_dialog_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::dialog::v1::generated::client::xdg_wm_dialog_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::foreign::zv1::generated::client::zxdg_exported_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::foreign::zv1::generated::client::zxdg_exporter_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::foreign::zv1::generated::client::zxdg_imported_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::foreign::zv1::generated::client::zxdg_importer_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::foreign::zv2::generated::client::zxdg_exported_v2::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::foreign::zv2::generated::client::zxdg_exporter_v2::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::foreign::zv2::generated::client::zxdg_imported_v2::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::foreign::zv2::generated::client::zxdg_importer_v2::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::shell::generated::client::xdg_popup::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::shell::generated::client::xdg_positioner::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::shell::generated::client::xdg_surface::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::shell::generated::client::xdg_toplevel::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::shell::generated::client::xdg_wm_base::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::system_bell::v1::generated::client::xdg_system_bell_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::toplevel_drag::v1::generated::client::xdg_toplevel_drag_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::toplevel_drag::v1::generated::client::xdg_toplevel_drag_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::toplevel_icon::v1::generated::client::xdg_toplevel_icon_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::toplevel_icon::v1::generated::client::xdg_toplevel_icon_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::toplevel_tag::v1::generated::client::xdg_toplevel_tag_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::xdg_output::zv1::generated::client::zxdg_output_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xdg::xdg_output::zv1::generated::client::zxdg_output_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xwayland::keyboard_grab::zv1::generated::client::zwp_xwayland_keyboard_grab_manager_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xwayland::keyboard_grab::zv1::generated::client::zwp_xwayland_keyboard_grab_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xwayland::shell::v1::generated::client::xwayland_shell_v1::Request<'a>
impl<'a> Debug for wayland_protocols::xwayland::shell::v1::generated::client::xwayland_surface_v1::Request<'a>
impl<'a> Debug for ConnectAddress<'a>
impl<'a> Debug for core::error::Request<'a>
impl<'a> Debug for core::error::Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for core::str::iter::Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for core::str::iter::EscapeDebug<'a>
impl<'a> Debug for core::str::iter::EscapeDefault<'a>
impl<'a> Debug for core::str::iter::EscapeUnicode<'a>
impl<'a> Debug for core::str::iter::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for core::str::pattern::CharSearcher<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for EventIterator<'a>
impl<'a> Debug for StrftimeItems<'a>
impl<'a> Debug for ArgMatches<'a>
impl<'a> Debug for OsValues<'a>
impl<'a> Debug for clap::args::arg_matches::Values<'a>
impl<'a> Debug for ArgGroup<'a>
impl<'a> Debug for SubCommand<'a>
impl<'a> Debug for env_logger::logger::Env<'a>
impl<'a> Debug for event_listener_strategy::NonBlocking<'a>
impl<'a> Debug for ByteSerialize<'a>
impl<'a> Debug for WakerRef<'a>
impl<'a> Debug for ReadBufCursor<'a>
impl<'a> Debug for CanonicalCombiningClassMapBorrowed<'a>
impl<'a> Debug for CanonicalCompositionBorrowed<'a>
impl<'a> Debug for CanonicalDecompositionBorrowed<'a>
impl<'a> Debug for ComposingNormalizerBorrowed<'a>
impl<'a> Debug for DecomposingNormalizerBorrowed<'a>
impl<'a> Debug for Uts46MapperBorrowed<'a>
impl<'a> Debug for CodePointSetDataBorrowed<'a>
impl<'a> Debug for EmojiSetDataBorrowed<'a>
impl<'a> Debug for ScriptExtensionsSet<'a>
impl<'a> Debug for ScriptWithExtensionsBorrowed<'a>
impl<'a> Debug for DataIdentifierBorrowed<'a>
impl<'a> Debug for DataRequest<'a>
impl<'a> Debug for inotify::events::Events<'a>
impl<'a> Debug for iri_string::build::Builder<'a>
impl<'a> Debug for PortBuilder<'a>
impl<'a> Debug for AuthorityComponents<'a>
impl<'a> Debug for VarName<'a>
impl<'a> Debug for UriTemplateVariables<'a>
impl<'a> Debug for SpanArithmetic<'a>
impl<'a> Debug for SpanCompare<'a>
impl<'a> Debug for SpanRelativeTo<'a>
impl<'a> Debug for SpanRound<'a>
impl<'a> Debug for SpanTotal<'a>
impl<'a> Debug for ZonedDifference<'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 MimeIter<'a>
impl<'a> Debug for mime::Name<'a>
impl<'a> Debug for mime::Params<'a>
impl<'a> Debug for mio::event::events::Iter<'a>
impl<'a> Debug for mio::event::events::Iter<'a>
impl<'a> Debug for mio::sys::unix::sourcefd::SourceFd<'a>
impl<'a> Debug for mio::sys::unix::sourcefd::SourceFd<'a>
impl<'a> Debug for pear::input::text::Span<'a>
impl<'a> Debug for Text<'a>
impl<'a> Debug for PercentDecode<'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 regex_syntax::hir::ClassBytesIter<'a>
impl<'a> Debug for regex_syntax::hir::ClassBytesIter<'a>
impl<'a> Debug for regex_syntax::hir::ClassUnicodeIter<'a>
impl<'a> Debug for regex_syntax::hir::ClassUnicodeIter<'a>
impl<'a> Debug for regex::regexset::bytes::SetMatchesIter<'a>
impl<'a> Debug for regex::regexset::string::SetMatchesIter<'a>
impl<'a> Debug for Attempt<'a>
impl<'a> Debug for rocket_http::parse::uri::error::Error<'a>
impl<'a> Debug for Absolute<'a>
impl<'a> Debug for rocket_http::uri::authority::Authority<'a>
impl<'a> Debug for rocket_http::uri::host::Host<'a>
impl<'a> Debug for rocket_http::uri::origin::Origin<'a>
impl<'a> Debug for rocket_http::uri::path_query::Path<'a>
impl<'a> Debug for rocket_http::uri::path_query::Query<'a>
impl<'a> Debug for Reference<'a>
impl<'a> Debug for Children<'a>
impl<'a> Debug for rustix::fs::inotify::Event<'a>
impl<'a> Debug for InotifyEvent<'a>
impl<'a> Debug for rustix::fs::raw_dir::RawDirEntry<'a>
impl<'a> Debug for rustix::fs::raw_dir::RawDirEntry<'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 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 DangerousClientConfig<'a>
impl<'a> Debug for FfdheGroup<'a>
impl<'a> Debug for InboundPlainMessage<'a>
impl<'a> Debug for OutboundPlainMessage<'a>
impl<'a> Debug for ClientHello<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for MaybeUninitSlice<'a>
impl<'a> Debug for stable_pattern::pattern::CharSearcher<'a>
impl<'a> Debug for WaitForCancellationFuture<'a>
impl<'a> Debug for RollingWriter<'a>
impl<'a> Debug for tracing_core::event::Event<'a>
impl<'a> Debug for tracing_core::span::Attributes<'a>
impl<'a> Debug for tracing_core::span::Record<'a>
impl<'a> Debug for tracing_subscriber::filter::targets::Iter<'a>
impl<'a> Debug for PrettyVisitor<'a>
impl<'a> Debug for DefaultVisitor<'a>
impl<'a> Debug for tracing_subscriber::registry::extensions::Extensions<'a>
impl<'a> Debug for ExtensionsMut<'a>
impl<'a> Debug for tracing_subscriber::registry::sharded::Data<'a>
impl<'a> Debug for Entered<'a>
impl<'a> Debug for TrieSetSlice<'a>
impl<'a> Debug for PathSegmentsMut<'a>
impl<'a> Debug for UrlQuery<'a>
impl<'a> Debug for Utf8CharIndices<'a>
impl<'a> Debug for ErrorReportingUtf8Chars<'a>
impl<'a> Debug for Utf8Chars<'a>
impl<'a> Debug for ZeroAsciiIgnoreCaseTrieCursor<'a>
impl<'a> Debug for ZeroTrieSimpleAsciiCursor<'a>
impl<'a> Debug for capability_3p::tokio::net::tcp::ReadHalf<'a>
impl<'a> Debug for capability_3p::tokio::net::tcp::WriteHalf<'a>
impl<'a> Debug for capability_3p::tokio::net::unix::ReadHalf<'a>
impl<'a> Debug for capability_3p::tokio::net::unix::WriteHalf<'a>
impl<'a> Debug for EnterGuard<'a>
impl<'a> Debug for Notified<'a>
impl<'a> Debug for SemaphorePermit<'a>
impl<'a, 'b> Debug for core::str::pattern::CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for core::str::pattern::StrSearcher<'a, 'b>
impl<'a, 'b> Debug for stable_pattern::pattern::CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for stable_pattern::pattern::StrSearcher<'a, 'b>
impl<'a, 'b> Debug for tempfile::Builder<'a, 'b>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'f> Debug for VaList<'a, 'f>where
'f: 'a,
impl<'a, 'h> Debug for aho_corasick::ahocorasick::FindIter<'a, 'h>
impl<'a, 'h> Debug for aho_corasick::ahocorasick::FindOverlappingIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::avx2::memchr::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::ThreeIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::TwoIter<'a, 'h>
impl<'a, 'h, A> Debug for aho_corasick::automaton::FindIter<'a, 'h, A>where
A: Debug,
impl<'a, 'h, A> Debug for aho_corasick::automaton::FindOverlappingIter<'a, 'h, A>where
A: Debug,
impl<'a, A> Debug for core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, A, B> Debug for ArcUnionBorrow<'a, A, B>
impl<'a, A, R> Debug for aho_corasick::automaton::StreamFindIter<'a, A, R>
impl<'a, C> Debug for ListFontsWithInfoCookie<'a, C>
impl<'a, C> Debug for VoidCookie<'a, C>
impl<'a, C, R> Debug for x11rb::cookie::Cookie<'a, C, R>
impl<'a, C, R> Debug for CookieWithFds<'a, C, R>
impl<'a, C, T> Debug for rustls::stream::Stream<'a, C, T>
impl<'a, Conn> Debug for WmClassCookie<'a, Conn>
impl<'a, Conn> Debug for WmHintsCookie<'a, Conn>
impl<'a, Conn> Debug for WmSizeHintsCookie<'a, Conn>
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, E, Ix> Debug for petgraph::adj::EdgeIndices<'a, E, Ix>
impl<'a, E, Ix> Debug for petgraph::adj::EdgeReference<'a, E, Ix>
impl<'a, E, Ix> Debug for petgraph::adj::EdgeReferences<'a, E, Ix>
impl<'a, E, Ix> Debug for petgraph::adj::Neighbors<'a, E, Ix>
impl<'a, E, Ix> Debug for OutgoingEdgeReferences<'a, E, Ix>
impl<'a, E, Ix> Debug for petgraph::graph_impl::stable_graph::EdgeIndices<'a, E, Ix>
impl<'a, E, Ix> Debug for petgraph::graph_impl::stable_graph::EdgeReference<'a, E, Ix>
impl<'a, E, Ix> Debug for petgraph::graph_impl::stable_graph::EdgeReferences<'a, E, Ix>
impl<'a, E, Ix> Debug for petgraph::graph_impl::stable_graph::Neighbors<'a, E, Ix>
impl<'a, E, Ix> Debug for petgraph::graph_impl::EdgeReference<'a, E, Ix>
impl<'a, E, Ix> Debug for petgraph::graph_impl::EdgeReferences<'a, E, Ix>
impl<'a, E, Ix> Debug for EdgeWeightsMut<'a, E, Ix>
impl<'a, E, Ix> Debug for petgraph::graph_impl::Neighbors<'a, E, Ix>
impl<'a, E, Ty, Ix> Debug for petgraph::csr::EdgeReference<'a, E, Ty, Ix>
impl<'a, E, Ty, Ix> Debug for petgraph::csr::EdgeReferences<'a, E, Ty, Ix>
impl<'a, E, Ty, Ix> Debug for petgraph::csr::Edges<'a, E, Ty, Ix>
impl<'a, E, Ty, Ix> Debug for petgraph::graph_impl::stable_graph::Edges<'a, E, Ty, Ix>
impl<'a, E, Ty, Ix> Debug for petgraph::graph_impl::stable_graph::EdgesConnecting<'a, E, Ty, Ix>
impl<'a, E, Ty, Ix> Debug for petgraph::graph_impl::Edges<'a, E, Ty, Ix>
impl<'a, E, Ty, Ix> Debug for petgraph::graph_impl::EdgesConnecting<'a, E, Ty, Ix>
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, G> Debug for capability_3p::Dot<'a, G>where
G: IntoEdgeReferences + IntoNodeReferences + NodeIndexable + GraphProp,
<G as Data>::EdgeWeight: Debug,
<G as Data>::NodeWeight: Debug,
impl<'a, G, F> Debug for EdgeFilteredNeighbors<'a, G, F>
impl<'a, G, F> Debug for EdgeFilteredNeighborsDirected<'a, G, F>where
G: Debug + IntoEdgesDirected,
F: Debug + 'a,
<G as IntoEdgesDirected>::EdgesDirected: Debug,
<G as GraphBase>::NodeId: Debug,
impl<'a, G, I, F> Debug for EdgeFilteredEdges<'a, G, I, F>
impl<'a, G, I, F> Debug for NodeFilteredEdgeReferences<'a, G, I, F>
impl<'a, G, I, F> Debug for NodeFilteredEdges<'a, G, I, F>
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I> Debug for itertools::format::Format<'a, I>
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, F> Debug for NodeFilteredNeighbors<'a, I, F>
impl<'a, I, F> Debug for NodeFilteredNodes<'a, I, F>
impl<'a, Ix> Debug for petgraph::csr::Neighbors<'a, Ix>where
Ix: Debug + 'a,
impl<'a, Ix> Debug for petgraph::matrix_graph::NodeIdentifiers<'a, Ix>where
Ix: Debug,
impl<'a, K0, K1, V> Debug for ZeroMap2dBorrowed<'a, K0, K1, V>
impl<'a, K0, K1, V> Debug for ZeroMap2d<'a, K0, K1, V>
impl<'a, K, V> Debug for ZeroMapBorrowed<'a, K, V>
impl<'a, K, V> Debug for ZeroMap<'a, K, V>
impl<'a, L> Debug for Okm<'a, L>
impl<'a, N> Debug for DominatedByIter<'a, N>
impl<'a, N> Debug for DominatorsIter<'a, N>
impl<'a, N> Debug for Nodes<'a, N>
impl<'a, N, E, Ty> Debug for AllEdges<'a, N, E, Ty>
impl<'a, N, E, Ty> Debug for petgraph::graphmap::NodeIdentifiers<'a, N, E, Ty>
impl<'a, N, E, Ty> Debug for petgraph::graphmap::NodeReferences<'a, N, E, Ty>
impl<'a, N, E, Ty, S> Debug for petgraph::graphmap::Edges<'a, N, E, Ty, S>
impl<'a, N, E, Ty, S> Debug for EdgesDirected<'a, N, E, Ty, S>
impl<'a, N, Ix> Debug for petgraph::csr::NodeReferences<'a, N, Ix>
impl<'a, N, Ix> Debug for petgraph::graph_impl::stable_graph::NodeIndices<'a, N, Ix>
impl<'a, N, Ix> Debug for petgraph::graph_impl::stable_graph::NodeReferences<'a, N, Ix>
impl<'a, N, Ix> Debug for petgraph::graph_impl::NodeReferences<'a, N, Ix>
impl<'a, N, Ix> Debug for NodeWeightsMut<'a, N, Ix>
impl<'a, N, Ix> Debug for petgraph::matrix_graph::NodeReferences<'a, N, Ix>
impl<'a, N, Ty> Debug for petgraph::graphmap::Neighbors<'a, N, Ty>
impl<'a, N, Ty> Debug for NeighborsDirected<'a, N, Ty>
impl<'a, N, Ty, Ix> Debug for petgraph::graph_impl::stable_graph::Externals<'a, N, Ty, Ix>
impl<'a, N, Ty, Ix> Debug for petgraph::graph_impl::Externals<'a, N, Ty, Ix>
impl<'a, P> Debug for core::str::iter::MatchIndices<'a, P>
impl<'a, P> Debug for core::str::iter::Matches<'a, P>
impl<'a, P> Debug for core::str::iter::RMatchIndices<'a, P>
impl<'a, P> Debug for core::str::iter::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 core::str::iter::RSplitTerminator<'a, P>
impl<'a, P> Debug for core::str::iter::Split<'a, P>
impl<'a, P> Debug for core::str::iter::SplitInclusive<'a, P>
impl<'a, P> Debug for core::str::iter::SplitN<'a, P>
impl<'a, P> Debug for core::str::iter::SplitTerminator<'a, P>
impl<'a, P> Debug for Segments<'a, P>
impl<'a, P> Debug for stable_pattern::split::MatchIndices<'a, P>
impl<'a, P> Debug for MatchIndicesInternal<'a, P>
impl<'a, P> Debug for stable_pattern::split::Matches<'a, P>
impl<'a, P> Debug for MatchesInternal<'a, P>
impl<'a, P> Debug for stable_pattern::split::RMatchIndices<'a, P>
impl<'a, P> Debug for stable_pattern::split::RMatches<'a, P>
impl<'a, P> Debug for stable_pattern::split::RSplit<'a, P>
impl<'a, P> Debug for stable_pattern::split::RSplitN<'a, P>
impl<'a, P> Debug for stable_pattern::split::RSplitTerminator<'a, P>
impl<'a, P> Debug for stable_pattern::split::Split<'a, P>
impl<'a, P> Debug for SplitInternal<'a, P>
impl<'a, P> Debug for stable_pattern::split::SplitN<'a, P>
impl<'a, P> Debug for SplitNInternal<'a, P>
impl<'a, P> Debug for stable_pattern::split::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 regex::regex::bytes::ReplacerRef<'a, R>
impl<'a, R> Debug for regex::regex::string::ReplacerRef<'a, R>
impl<'a, R> Debug for tracing_subscriber::registry::Scope<'a, R>where
R: Debug,
impl<'a, R> Debug for ScopeFromRoot<'a, R>where
R: LookupSpan<'a>,
impl<'a, R> Debug for SpanRef<'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 ANSIGenericString<'a, S>
impl<'a, S> Debug for ANSIGenericStrings<'a, S>
impl<'a, S> Debug for Seek<'a, S>
impl<'a, S> Debug for FixedBaseResolver<'a, S>
impl<'a, S> Debug for AnsiGenericString<'a, S>
impl<'a, S> Debug for AnsiGenericStrings<'a, S>
impl<'a, S> Debug for IntoWrapIter<'a, S>where
S: Debug + WordSplitter,
impl<'a, S> Debug for Wrapper<'a, S>where
S: Debug + WordSplitter,
impl<'a, S> Debug for tracing_subscriber::layer::context::Context<'a, S>where
S: Debug,
impl<'a, S, A> Debug for matchers::Matcher<'a, S, A>
impl<'a, S, C> Debug for Expanded<'a, S, C>
impl<'a, S, Data> Debug for Dispatcher<'a, S, Data>
impl<'a, S, T> Debug for rand::seq::slice::SliceChooseIter<'a, S, T>
impl<'a, S, T> Debug for rand::seq::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 futures_util::sink::send::Send<'a, Si, Item>
impl<'a, Src> Debug for MappedToUri<'a, Src>
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, State> Debug for QueueFreezeGuard<'a, State>where
State: Debug,
impl<'a, T> Debug for http::header::map::Entry<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for http::header::map::Entry<'a, T>where
T: Debug + 'a,
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::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Recv<'a, T>where
T: Debug,
impl<'a, T> Debug for async_channel::Send<'a, T>where
T: Debug,
impl<'a, T> Debug for Cancellation<'a, T>where
T: Debug,
impl<'a, T> Debug for http_body_util::combinators::frame::Frame<'a, T>
impl<'a, T> Debug for http_body::next::Data<'a, T>
impl<'a, T> Debug for Trailers<'a, T>
impl<'a, T> Debug for http::header::map::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::GetAll<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::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::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::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::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::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 http::header::map::VacantEntry<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::ValueDrain<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::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 http::header::map::ValueIter<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::ValueIterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::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::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::header::map::ValuesMut<'a, T>where
T: Debug,
impl<'a, T> Debug for CodePointMapDataBorrowed<'a, T>
impl<'a, T> Debug for PropertyNamesLongBorrowed<'a, T>where
T: Debug + NamedEnumeratedProperty,
<T as NamedEnumeratedProperty>::DataStructLongBorrowed<'a>: Debug,
impl<'a, T> Debug for PropertyNamesShortBorrowed<'a, T>where
T: Debug + NamedEnumeratedProperty,
<T as NamedEnumeratedProperty>::DataStructShortBorrowed<'a>: Debug,
impl<'a, T> Debug for PropertyParserBorrowed<'a, T>where
T: Debug,
impl<'a, T> Debug for Built<'a, T>
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for Choose<'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 SpinMutexGuard<'a, T>
impl<'a, T> Debug for spin::mutex::MutexGuard<'a, T>
impl<'a, T> Debug for thread_local::Iter<'a, T>
impl<'a, T> Debug for thread_local::IterMut<'a, T>
impl<'a, T> Debug for ArcBorrow<'a, T>
impl<'a, T> Debug for Locked<'a, T>where
T: Debug,
impl<'a, T> Debug for PropertyIterator<'a, T>where
T: Debug,
impl<'a, T> Debug for ZeroSliceIter<'a, T>
impl<'a, T> Debug for AsyncFdReadyGuard<'a, T>
impl<'a, T> Debug for AsyncFdReadyMutGuard<'a, T>
impl<'a, T> Debug for capability_3p::tokio::sync::MappedMutexGuard<'a, T>
impl<'a, T> Debug for RwLockMappedWriteGuard<'a, T>
impl<'a, T> Debug for capability_3p::tokio::sync::RwLockReadGuard<'a, T>
impl<'a, T> Debug for capability_3p::tokio::sync::RwLockWriteGuard<'a, T>
impl<'a, T> Debug for capability_3p::tokio::sync::watch::Ref<'a, T>where
T: Debug,
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, C> Debug for UniqueIter<'a, T, C>
impl<'a, T, C> Debug for sharded_slab::pool::Ref<'a, T, C>
impl<'a, T, C> Debug for sharded_slab::pool::RefMut<'a, T, C>
impl<'a, T, C> Debug for sharded_slab::Entry<'a, T, C>
impl<'a, T, C> Debug for sharded_slab::VacantEntry<'a, T, C>
impl<'a, T, F> Debug for PoolGuard<'a, T, F>
impl<'a, T, F> Debug for VarZeroSliceIter<'a, T, F>
impl<'a, T, I> Debug for zerocopy::pointer::ptr::def::Ptr<'a, T, I>where
T: 'a + ?Sized,
I: Invariants,
impl<'a, T, P> Debug for ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, Request> Debug for tower::util::ready::Ready<'a, T, Request>where
T: Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, Ty, Null, Ix> Debug for petgraph::matrix_graph::EdgeReferences<'a, Ty, Null, Ix>
impl<'a, Ty, Null, Ix> Debug for petgraph::matrix_graph::Edges<'a, Ty, Null, Ix>
impl<'a, Ty, Null, Ix> Debug for petgraph::matrix_graph::Neighbors<'a, Ty, Null, Ix>
impl<'a, V> Debug for VarZeroCow<'a, V>
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 MutexGuardWriter<'a, W>where
W: Debug,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'b, T> Debug for petgraph::graphmap::Ptr<'b, T>where
T: Debug,
impl<'c> Debug for CookieBuilder<'c>
impl<'c> Debug for cookie::Cookie<'c>
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<'c, C> Debug for GrabServer<'c, C>where
C: Debug + ConnectionExt,
impl<'cache> Debug for GreenNodeBuilder<'cache>
impl<'d> Debug for TimeZoneName<'d>
impl<'d> Debug for TimeZoneNameIter<'d>
impl<'data> Debug for PropertyCodePointSet<'data>
impl<'data> Debug for PropertyUnicodeSet<'data>
impl<'data> Debug for Char16Trie<'data>
impl<'data> Debug for CodePointInversionList<'data>
impl<'data> Debug for CodePointInversionListAndStringList<'data>
impl<'data> Debug for CanonicalCompositions<'data>
impl<'data> Debug for DecompositionData<'data>
impl<'data> Debug for DecompositionTables<'data>
impl<'data> Debug for NonRecursiveDecompositionSupplement<'data>
impl<'data> Debug for PropertyEnumToValueNameLinearMap<'data>
impl<'data> Debug for PropertyEnumToValueNameSparseMap<'data>
impl<'data> Debug for PropertyScriptToIcuScriptMap<'data>
impl<'data> Debug for PropertyValueNameToEnumMap<'data>
impl<'data> Debug for ScriptWithExtensionsProperty<'data>
impl<'data, I> Debug for Composition<'data, I>
impl<'data, I> Debug for Decomposition<'data, I>
impl<'data, T> Debug for PropertyCodePointMap<'data, T>
impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>
impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>
impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
impl<'e, E, R> Debug for DecoderReader<'e, E, R>
impl<'e, E, W> Debug for EncoderWriter<'e, E, W>
impl<'f> Debug for VaListImpl<'f>
impl<'f> Debug for jiff::fmt::strtime::Display<'f>
impl<'fd> Debug for rustix::backend::event::poll_fd::PollFd<'fd>
impl<'fd> Debug for rustix::backend::event::poll_fd::PollFd<'fd>
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_automata::util::iter::Searcher<'h>
impl<'h> Debug for regex_automata::util::search::Input<'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 rocket_http::header::header::Header<'h>
impl<'h> Debug for rocket_http::header::header::HeaderMap<'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<'headers, 'buf> Debug for httparse::Request<'headers, 'buf>
impl<'headers, 'buf> Debug for httparse::Response<'headers, 'buf>
impl<'i> Debug for Idle<'i>
impl<'i> Debug for pest::position::Position<'i>
impl<'i> Debug for pest::span::Span<'i>
impl<'i, R> Debug for pest::token::Token<'i, R>where
R: Debug,
impl<'i, R> Debug for FlatPairs<'i, R>where
R: RuleType,
impl<'i, R> Debug for pest::iterators::pair::Pair<'i, R>where
R: RuleType,
impl<'i, R> Debug for Pairs<'i, R>where
R: RuleType,
impl<'i, R> Debug for Tokens<'i, R>where
R: RuleType,
impl<'i, R> Debug for ParserState<'i, R>
impl<'input> Debug for x11rb_protocol::protocol::Request<'input>
impl<'k> Debug for KeyMut<'k>
impl<'l, 'a, K0, K1, V> Debug for ZeroMap2dCursor<'l, 'a, K0, K1, V>
impl<'l, Data> Debug for EventLoop<'l, Data>
impl<'l, Data> Debug for LoopHandle<'l, Data>
impl<'l, F> Debug for Async<'l, F>
impl<'n> Debug for TimeZoneAnnotationKind<'n>
impl<'n> Debug for Pieces<'n>
impl<'n> Debug for TimeZoneAnnotation<'n>
impl<'n> Debug for TimeZoneAnnotationName<'n>
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 multer::field::Field<'r>
impl<'r> Debug for Multipart<'r>
impl<'r> Debug for regex::regex::bytes::CaptureNames<'r>
impl<'r> Debug for regex::regex::string::CaptureNames<'r>
impl<'r> Debug for ValueField<'r>
impl<'r> Debug for rocket::response::body::Body<'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_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<'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, R> Debug for UnwrapMut<'r, R>
impl<'s> Debug for StripBytesIter<'s>
impl<'s> Debug for StripStrIter<'s>
impl<'s> Debug for StrippedBytes<'s>
impl<'s> Debug for StrippedStr<'s>
impl<'s> Debug for WinconBytesIter<'s>
impl<'s> Debug for regex::regex::bytes::NoExpand<'s>
impl<'s> Debug for regex::regex::string::NoExpand<'s>
impl<'s> Debug for TomlKey<'s>
impl<'s> Debug for TomlKeyBuilder<'s>
impl<'s> Debug for TomlString<'s>
impl<'s> Debug for TomlStringBuilder<'s>
impl<'s> Debug for Uncased<'s>
impl<'s, 'h> Debug for aho_corasick::packed::api::FindIter<'s, 'h>
impl<'s, 'l, F> Debug for Readable<'s, 'l, F>
impl<'s, 'l, F> Debug for Writable<'s, 'l, F>
impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env>
impl<'scope, T> Debug for capability_3p::thread::ScopedJoinHandle<'scope, T>
impl<'t> Debug for TimeZoneFollowingTransitions<'t>
impl<'t> Debug for TimeZoneOffsetInfo<'t>
impl<'t> Debug for TimeZonePrecedingTransitions<'t>
impl<'t> Debug for TimeZoneTransition<'t>
impl<'trie, T> Debug for CodePointTrie<'trie, T>
impl<'v> Debug for rocket::form::error::ErrorKind<'v>
impl<'v> Debug for TempFile<'v>
impl<'v> Debug for rocket::form::context::Context<'v>
impl<'v> Debug for rocket::form::error::Error<'v>
impl<'v> Debug for rocket::form::error::Errors<'v>
impl<'v, T> Debug for Contextual<'v, T>where
T: Debug,
impl<'w, 'a, S> Debug for WrapIter<'w, 'a, S>where
'a: 'w,
S: Debug + WordSplitter + 'w,
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> Debug for itertools::repeatn::RepeatN<A>where
A: Debug,
impl<A> Debug for ra_ap_stdx::anymap::Map<A>
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, B> Debug for figment::value::magic::Either<A, B>
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 tower::util::either::Either<A, B>
impl<A, B> Debug for EitherWriter<A, B>
impl<A, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for core::iter::adapters::zip::Zip<A, B>
impl<A, B> Debug for futures_util::future::select::Select<A, B>
impl<A, B> Debug for TrySelect<A, B>
impl<A, B> Debug for tower_http::follow_redirect::policy::and::And<A, B>
impl<A, B> Debug for tower_http::follow_redirect::policy::or::Or<A, B>
impl<A, B> Debug for tracing_subscriber::fmt::writer::OrElse<A, B>
impl<A, B> Debug for tracing_subscriber::fmt::writer::Tee<A, B>
impl<A, B> Debug for ArcUnion<A, B>
impl<A, B> Debug for Tuple2ULE<A, B>
impl<A, B> Debug for VarTuple<A, B>
impl<A, B, C> Debug for Tuple3ULE<A, B, C>
impl<A, B, C, D> Debug for Tuple4ULE<A, B, C, D>
impl<A, B, C, D, E> Debug for Tuple5ULE<A, B, C, D, E>
impl<A, B, C, D, E, F> Debug for Tuple6ULE<A, B, C, D, E, F>
impl<A, B, C, D, E, F, Format> Debug for Tuple6VarULE<A, B, C, D, E, F, Format>
impl<A, B, C, D, E, Format> Debug for Tuple5VarULE<A, B, C, D, E, Format>
impl<A, B, C, D, Format> Debug for Tuple4VarULE<A, B, C, D, Format>
impl<A, B, C, Format> Debug for Tuple3VarULE<A, B, C, Format>
impl<A, B, Format> Debug for Tuple2VarULE<A, B, Format>
impl<A, B, S> Debug for tracing_subscriber::filter::layer_filters::combinator::And<A, B, S>
impl<A, B, S> Debug for tracing_subscriber::filter::layer_filters::combinator::Or<A, B, S>
impl<A, B, S> Debug for Layered<A, B, S>
impl<A, S> Debug for Not<A, S>where
A: Debug,
impl<A, S, V> Debug for ConvertError<A, S, V>
impl<A, V> Debug for VarTupleULE<A, V>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for Control<B>where
B: Debug,
impl<B> Debug for std::io::Lines<B>where
B: Debug,
impl<B> Debug for std::io::Split<B>where
B: Debug,
impl<B> Debug for bitflags::traits::Flag<B>where
B: Debug,
impl<B> Debug for bytes::buf::reader::Reader<B>where
B: Debug,
impl<B> Debug for bytes::buf::writer::Writer<B>where
B: Debug,
impl<B> Debug for h2::client::ReadySendRequest<B>
impl<B> Debug for h2::client::ReadySendRequest<B>
impl<B> Debug for h2::client::SendRequest<B>where
B: Buf,
impl<B> Debug for h2::client::SendRequest<B>where
B: Buf,
impl<B> Debug for h2::server::SendPushedResponse<B>
impl<B> Debug for h2::server::SendPushedResponse<B>
impl<B> Debug for h2::server::SendResponse<B>
impl<B> Debug for h2::server::SendResponse<B>
impl<B> Debug for h2::share::SendStream<B>where
B: Debug,
impl<B> Debug for h2::share::SendStream<B>where
B: Debug,
impl<B> Debug for http_body_util::collected::Collected<B>where
B: Debug,
impl<B> Debug for http_body_util::limited::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 http_body::collect::Collected<B>where
B: Debug,
impl<B> Debug for http_body::limited::Limited<B>where
B: Debug,
impl<B> Debug for hyper::client::conn::http1::SendRequest<B>
impl<B> Debug for hyper::client::conn::http2::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, 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, F> Debug for MapData<B, F>where
B: Debug,
impl<B, F> Debug for http_body::combinators::map_err::MapErr<B, F>where
B: Debug,
impl<B, T> Debug for AlignAs<B, T>
impl<C0, C1> Debug for EitherCart<C0, C1>
impl<C> Debug for anstyle_parse::Parser<C>where
C: Debug,
impl<C> Debug for async_openai::client::Client<C>
impl<C> Debug for backoff::exponential::ExponentialBackoff<C>where
C: Debug,
impl<C> Debug for ExponentialBackoffBuilder<C>where
C: Debug,
impl<C> Debug for SocksV4<C>where
C: Debug,
impl<C> Debug for SocksV5<C>where
C: Debug,
impl<C> Debug for Tunnel<C>where
C: Debug,
impl<C> Debug for jiff::fmt::strtime::Config<C>where
C: Debug,
impl<C> Debug for ErrorInfo<C>where
C: Debug,
impl<C> Debug for ContextError<C>where
C: Debug,
impl<C> Debug for GlyphsetWrapper<C>where
C: Debug + RequestConnection,
impl<C> Debug for PictureWrapper<C>where
C: Debug + RequestConnection,
impl<C> Debug for RegionWrapper<C>where
C: Debug + RequestConnection,
impl<C> Debug for ColormapWrapper<C>where
C: Debug + RequestConnection,
impl<C> Debug for CursorWrapper<C>where
C: Debug + RequestConnection,
impl<C> Debug for FontWrapper<C>where
C: Debug + RequestConnection,
impl<C> Debug for GcontextWrapper<C>where
C: Debug + RequestConnection,
impl<C> Debug for PixmapWrapper<C>where
C: Debug + RequestConnection,
impl<C> Debug for WindowWrapper<C>where
C: Debug + RequestConnection,
impl<C> Debug for CartableOptionPointer<C>
impl<C> Debug for capability_3p::OpenAiClient<C>
impl<C> Debug for ThreadLocalContext<C>
impl<C, B> Debug for hyper_util::client::legacy::client::Client<C, B>
impl<C, E> Debug for pear::error::ParseError<C, E>
impl<C, F> Debug for MapFailureClass<C, F>where
C: Debug,
impl<C, T> Debug for StreamOwned<C, T>
impl<D> Debug for WaylandSource<D>where
D: Debug,
impl<D> Debug for http_body_util::empty::Empty<D>
impl<D> Debug for http_body_util::full::Full<D>where
D: Debug,
impl<D> Debug for http_body::empty::Empty<D>
impl<D> Debug for http_body::full::Full<D>where
D: Debug,
impl<D> Debug for regex_automata::regex::Regex<D>
impl<D> Debug for wayland_backend::rs::server::Backend<D>where
D: Debug + 'static,
impl<D> Debug for dyn GlobalHandler<D>where
D: 'static,
impl<D> Debug for dyn ObjectData<D>where
D: 'static,
impl<D, E> Debug for http_body_util::combinators::box_body::BoxBody<D, E>
impl<D, E> Debug for http_body_util::combinators::box_body::UnsyncBoxBody<D, E>
impl<D, E> Debug for http_body::combinators::box_body::BoxBody<D, E>
impl<D, E> Debug for http_body::combinators::box_body::UnsyncBoxBody<D, E>
impl<D, F, T, S> Debug for rand::distr::distribution::Map<D, F, T, S>
impl<D, F, T, S> Debug for DistMap<D, F, T, S>
impl<D, R, T> Debug for rand::distr::distribution::Iter<D, R, T>
impl<D, R, T> Debug for DistIter<D, R, T>
impl<D, V> Debug for Delimited<D, V>
impl<D, V> Debug for VisitDelimited<D, V>
impl<Data> Debug for ConnectionState<'_, '_, Data>
impl<DataStruct> Debug for ErasedMarker<DataStruct>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for backoff::error::Error<E>where
E: Debug,
impl<E> Debug for EventStreamError<E>where
E: Debug,
impl<E> Debug for Err<E>where
E: Debug,
impl<E> Debug for ParseNotNanError<E>where
E: Debug,
impl<E> Debug for ErrMode<E>where
E: Debug,
impl<E> Debug for Report<E>
impl<E> Debug for Http<E>where
E: Debug,
impl<E> Debug for Debug<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 serde_path_to_error::Error<E>where
E: Debug,
impl<E> Debug for FormattedFields<E>where
E: ?Sized,
impl<E> Debug for LanguageModelTokenExpander<E>where
E: Debug + ExpandedToken<Error = SaveLoadError> + DeserializeOwned + Named + AiJsonTemplate + GetTargetPathForAIExpansion + LoadFromFile + 'static,
impl<E> Debug for MockLanguageModelClient<E>where
E: Debug,
impl<E> Debug for OpenAIClientHandle<E>
impl<E, Ix> Debug for List<E, Ix>
impl<E, Ix> Debug for Edge<E, Ix>
impl<Ex> Debug for hyper::client::conn::http2::Builder<Ex>where
Ex: Debug,
impl<F1, F2, N> Debug for AndThenFuture<F1, F2, N>where
F2: TryFuture,
impl<F1, F2, N> Debug for ThenFuture<F1, F2, N>
impl<F> Debug for capability_3p::fmt::FromFn<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 core::str::pattern::CharPredicateSearcher<'_, F>
impl<F> Debug for FutureWrapper<F>
impl<F> Debug for figment::providers::data::Data<F>
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 stable_pattern::pattern::CharPredicateSearcher<'_, F>
impl<F> Debug for PersistError<F>
impl<F> Debug for CloneBodyFn<F>
impl<F> Debug for RedirectFn<F>
impl<F> Debug for LayerFn<F>
impl<F> Debug for AndThenLayer<F>where
F: Debug,
impl<F> Debug for MapErrLayer<F>where
F: Debug,
impl<F> Debug for MapFutureLayer<F>
impl<F> Debug for MapRequestLayer<F>where
F: Debug,
impl<F> Debug for MapResponseLayer<F>where
F: Debug,
impl<F> Debug for MapResultLayer<F>where
F: Debug,
impl<F> Debug for ThenLayer<F>where
F: Debug,
impl<F> Debug for FilterFn<F>
impl<F> Debug for FieldFn<F>where
F: Debug,
impl<F> Debug for FieldFnVisitor<'_, F>
impl<F> Debug for NamedTempFile<F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<F, E> Debug for Generic<F, E>
impl<F, L, S> Debug for Filtered<F, L, S>
impl<F, N> Debug for MapErrFuture<F, N>
impl<F, N> Debug for MapResponseFuture<F, N>
impl<F, N> Debug for MapResultFuture<F, N>
impl<F, S> Debug for FutureService<F, S>where
S: Debug,
impl<F, T> Debug for tracing_subscriber::fmt::format::Format<F, T>
impl<FailureClass, ClassifyEos> Debug for ClassifiedResponse<FailureClass, ClassifyEos>
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<G> Debug for FromCoroutine<G>
impl<G> Debug for MinSpanningTree<G>where
G: Debug + Data + IntoNodeReferences,
<G as IntoNodeReferences>::NodeReferences: Debug,
<G as Data>::EdgeWeight: Debug,
<G as GraphBase>::NodeId: Debug,
impl<G> Debug for Reversed<G>where
G: Debug,
impl<G, F> Debug for EdgeFiltered<G, F>
impl<G, F> Debug for NodeFiltered<G, F>
impl<H> Debug for BuildHasherDefault<H>
impl<H> Debug for HasherRng<H>where
H: Debug,
impl<H> Debug for HeaderWithLength<H>where
H: Debug,
impl<H, T> Debug for HeaderSlice<H, T>
impl<H, T> Debug for ThinArc<H, T>
impl<I> Debug for GlobalProxy<I>where
I: Debug,
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for Cloned<I>where
I: Debug,
impl<I> Debug for Copied<I>where
I: Debug,
impl<I> Debug for 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 StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<I> Debug for DelayedFormat<I>where
I: Debug,
impl<I> Debug for futures_util::stream::iter::Iter<I>where
I: Debug,
impl<I> Debug for WithHyperIo<I>where
I: Debug,
impl<I> Debug for WithTokioIo<I>where
I: Debug,
impl<I> Debug for MultiProduct<I>
impl<I> Debug for PutBack<I>
impl<I> Debug for itertools::adaptors::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 itertools::tee::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 pear::input::pear::Options<I>
impl<I> Debug for Pear<I>
impl<I> Debug for ReversedEdgeReferences<I>where
I: Debug,
impl<I> Debug for ReversedEdges<I>where
I: Debug,
impl<I> Debug for tokio_stream::iter::Iter<I>where
I: Debug,
impl<I> Debug for wayland_client::Weak<I>where
I: Debug,
impl<I> Debug for InputError<I>
impl<I> Debug for TreeErrorBase<I>where
I: Debug,
impl<I> Debug for LocatingSlice<I>where
I: Debug,
impl<I> Debug for Partial<I>where
I: Debug,
impl<I, 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 hyper::server::server::Builder<I, E>
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 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> 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 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 FilterElements<I, F>
impl<I, F, E> Debug for Connecting<I, F, E>
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, K, V, S> Debug for indexmap::map::iter::Splice<'_, I, K, V, S>
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, P> Debug for FilterEntry<I, P>
impl<I, S> Debug for hyper::server::conn::Connection<I, S>where
S: HttpService<Body>,
impl<I, S> Debug for Server<I, S>
impl<I, S> Debug for Stateful<I, S>
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, T, S> Debug for indexmap::set::iter::Splice<'_, I, T, S>
impl<I, U> Debug for core::iter::adapters::flatten::Flatten<I>
impl<I, U, F> Debug for core::iter::adapters::flatten::FlatMap<I, U, F>
impl<I, U, State> Debug for QueueProxyData<I, U, State>
impl<I, V, F> Debug for UniqueBy<I, V, F>
impl<I, const MAX_VERSION: u32> Debug for SimpleGlobal<I, MAX_VERSION>where
I: Debug,
impl<I, const N: usize> Debug for 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<Id, Fd> Debug for Argument<Id, Fd>
impl<Id, Fd> Debug for wayland_backend::protocol::Message<Id, Fd>
impl<Idx> Debug for core::ops::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<In, T, U, E> Debug for BoxLayer<In, T, U, E>
impl<In, T, U, E> Debug for BoxCloneServiceLayer<In, T, U, E>
impl<In, T, U, E> Debug for BoxCloneSyncServiceLayer<In, T, U, E>
impl<Inner, Outer> Debug for tower_layer::stack::Stack<Inner, Outer>
impl<Ix> Debug for petgraph::adj::EdgeIndex<Ix>
impl<Ix> Debug for petgraph::adj::NodeIndices<Ix>where
Ix: Debug,
impl<Ix> Debug for OutgoingEdgeIndices<Ix>
impl<Ix> Debug for petgraph::csr::NodeIdentifiers<Ix>where
Ix: Debug,
impl<Ix> Debug for petgraph::graph_impl::EdgeIndex<Ix>where
Ix: Debug,
impl<Ix> Debug for petgraph::graph_impl::EdgeIndices<Ix>where
Ix: Debug,
impl<Ix> Debug for petgraph::graph_impl::NodeIndices<Ix>where
Ix: Debug,
impl<Ix> Debug for NodeIndex<Ix>where
Ix: Debug,
impl<K> Debug for alloc::collections::btree::set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Drain<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::IntoIter<K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K> Debug for hashbrown::set::Iter<'_, K>where
K: Debug,
impl<K> Debug for hashbrown::set::Iter<'_, K>where
K: Debug,
impl<K> Debug for UnionFind<K>where
K: Debug,
impl<K> Debug for BufferSlot<K>where
K: Debug,
impl<K> Debug for MultiPool<K>where
K: Debug,
impl<K> Debug for TypeMap<K>where
K: Kind,
impl<K, A> Debug for alloc::collections::btree::set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, A> Debug for 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, F> Debug for std::collections::hash::set::ExtractIf<'_, K, F>where
K: Debug,
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 std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::entry::Entry<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Drain<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> 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 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 StreamMap<K, V>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>
impl<K, V, A> Debug for 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 BTreeMap<K, V, A>
impl<K, V, F> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F>
impl<K, V, F> Debug for indexmap::map::iter::ExtractIf<'_, K, V, F>
impl<K, V, R, F, A> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S> Debug for indexmap::map::core::raw_entry_v1::RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for litemap::map::Entry<'_, 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 LiteMap<K, V, S>
impl<K, V, S> Debug for litemap::map::OccupiedEntry<'_, K, V, S>
impl<K, V, S> Debug for litemap::map::VacantEntry<'_, K, V, S>
impl<K, V, S> Debug for capability_3p::HashMap<K, V, S>
impl<K, V, S, A> Debug for hashbrown::map::Entry<'_, K, V, S, A>
impl<K, V, S, A> Debug for hashbrown::map::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> Debug for rowan::api::SyntaxElementChildren<L>
impl<L> Debug for rowan::api::SyntaxNode<L>where
L: Language,
impl<L> Debug for rowan::api::SyntaxNodeChildren<L>
impl<L> Debug for rowan::api::SyntaxToken<L>where
L: Language,
impl<L> Debug for SyntaxNodePtr<L>
impl<L> Debug for ServiceBuilder<L>where
L: Debug,
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 IterEither<L, R>
impl<L, S> Debug for tracing_subscriber::reload::Handle<L, S>
impl<L, S> Debug for tracing_subscriber::reload::Layer<L, S>
impl<M> Debug for icu_provider::baked::zerotrie::Data<M>
impl<M> Debug for DataPayload<M>where
M: DynamicDataMarker,
&'a <<M as DynamicDataMarker>::DataStruct as Yokeable<'a>>::Output: for<'a> Debug,
impl<M> Debug for DataResponse<M>where
M: DynamicDataMarker,
&'a <<M as DynamicDataMarker>::DataStruct as Yokeable<'a>>::Output: for<'a> Debug,
impl<M> Debug for WithMaxLevel<M>where
M: Debug,
impl<M> Debug for WithMinLevel<M>where
M: Debug,
impl<M, F> Debug for WithFilter<M, F>
impl<M, O> Debug for DataPayloadOr<M, O>where
M: DynamicDataMarker,
&'a <<M as DynamicDataMarker>::DataStruct as Yokeable<'a>>::Output: for<'a> Debug,
O: Debug,
impl<M, P> Debug for DataProviderWithMarker<M, P>
impl<N> Debug for DfsEvent<N>where
N: Debug,
impl<N> Debug for capability_3p::ast::AstChildren<N>where
N: Debug,
impl<N> Debug for Dominators<N>
impl<N> Debug for TarjanScc<N>where
N: Debug,
impl<N> Debug for OpeningKey<N>where
N: NonceSequence,
impl<N> Debug for SealingKey<N>where
N: NonceSequence,
impl<N> Debug for rowan::ast::AstChildren<N>
impl<N> Debug for rowan::ast::AstPtr<N>where
N: AstNode,
impl<N> Debug for capability_3p::AstPtr<N>
impl<N> Debug for capability_3p::Cycle<N>where
N: Debug,
impl<N, E> Debug for Element<N, E>
impl<N, E, F, W> Debug for Subscriber<N, E, F, W>
impl<N, E, F, W> Debug for SubscriberBuilder<N, E, F, W>
impl<N, E, Ty, Ix> Debug for Csr<N, E, Ty, Ix>
impl<N, E, Ty, Ix> Debug for StableGraph<N, E, Ty, Ix>
impl<N, E, Ty, Ix> Debug for capability_3p::Graph<N, E, Ty, Ix>
impl<N, E, Ty, S> Debug for GraphMap<N, E, Ty, S>
impl<N, Ix> Debug for petgraph::graph_impl::Node<N, Ix>
impl<N, T> Debug for NodeOrToken<N, T>
impl<N, VM> Debug for DfsSpace<N, VM>
impl<N, VM> Debug for Dfs<N, VM>
impl<N, VM> Debug for DfsPostOrder<N, VM>
impl<NodeId, EdgeWeight> Debug for Paths<NodeId, EdgeWeight>
impl<O> Debug for F32<O>where
O: ByteOrder,
impl<O> Debug for F64<O>where
O: ByteOrder,
impl<O> Debug for I16<O>where
O: ByteOrder,
impl<O> Debug for I32<O>where
O: ByteOrder,
impl<O> Debug for I64<O>where
O: ByteOrder,
impl<O> Debug for I128<O>where
O: ByteOrder,
impl<O> Debug for Isize<O>where
O: ByteOrder,
impl<O> Debug for U16<O>where
O: ByteOrder,
impl<O> Debug for U32<O>where
O: ByteOrder,
impl<O> Debug for U64<O>where
O: ByteOrder,
impl<O> Debug for U128<O>where
O: ByteOrder,
impl<O> Debug for Usize<O>where
O: ByteOrder,
impl<Opcode> Debug for rustix::ioctl::patterns::NoArg<Opcode>where
Opcode: CompileTimeOpcode,
impl<Opcode, Input> Debug for rustix::ioctl::patterns::Setter<Opcode, Input>where
Opcode: CompileTimeOpcode,
Input: Debug,
impl<Opcode, Output> Debug for rustix::ioctl::patterns::Getter<Opcode, Output>where
Opcode: CompileTimeOpcode,
impl<P> Debug for Rocket<P>where
P: Phase,
impl<P> Debug for FollowRedirectLayer<P>where
P: Debug,
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<Public, Private> Debug for KeyPairComponents<Public, Private>where
PublicKeyComponents<Public>: Debug,
impl<R> Debug for ErrorVariant<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> 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 pest::error::Error<R>where
R: Debug,
impl<R> Debug for Operator<R>
impl<R> Debug for PrecClimber<R>
impl<R> Debug for ReversedEdgeReference<R>where
R: Debug,
impl<R> Debug for ReadRng<R>where
R: Debug,
impl<R> Debug for rand_core::block::BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for rand_core::block::BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for rand_core::block::BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for rand_core::block::BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for RngReadAdapter<'_, R>where
R: TryRngCore + ?Sized,
impl<R> Debug for UnwrapErr<R>where
R: Debug + TryRngCore,
impl<R> Debug for RawCss<R>where
R: Debug,
impl<R> Debug for RawHtml<R>where
R: Debug,
impl<R> Debug for RawJavaScript<R>where
R: Debug,
impl<R> Debug for RawJson<R>where
R: Debug,
impl<R> Debug for RawMsgPack<R>where
R: Debug,
impl<R> Debug for RawText<R>where
R: Debug,
impl<R> Debug for RawXml<R>where
R: Debug,
impl<R> Debug for Flash<R>where
R: Debug,
impl<R> Debug for rocket::response::status::Accepted<R>where
R: Debug,
impl<R> Debug for BadRequest<R>where
R: Debug,
impl<R> Debug for Conflict<R>where
R: Debug,
impl<R> Debug for Created<R>where
R: Debug,
impl<R> Debug for Custom<R>where
R: Debug,
impl<R> Debug for Forbidden<R>where
R: Debug,
impl<R> Debug for NotFound<R>where
R: Debug,
impl<R> Debug for tokio_util::io::reader_stream::ReaderStream<R>where
R: Debug,
impl<R> Debug for capability_3p::io::Lines<R>where
R: Debug,
impl<R> Debug for capability_3p::io::Split<R>where
R: Debug,
impl<R> Debug for capability_3p::io::Take<R>where
R: Debug,
impl<R> Debug for capability_3p::BufReader<R>where
R: Debug,
impl<R, E> Debug for ReplyOrError<R, E>
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, Rsdr> Debug for rand::rngs::adapter::reseeding::ReseedingRng<R, Rsdr>
impl<R, Rsdr> Debug for rand::rngs::reseeding::ReseedingRng<R, Rsdr>
impl<R, T> Debug for lock_api::mutex::Mutex<R, T>
impl<R, T> Debug for lock_api::rwlock::RwLock<R, T>
impl<R, W> Debug for capability_3p::io::Join<R, W>
impl<RW> Debug for BufStream<RW>where
RW: Debug,
impl<S> Debug for native_tls::HandshakeError<S>where
S: Debug,
impl<S> Debug for openssl::ssl::error::HandshakeError<S>where
S: Debug,
impl<S> Debug for url::host::Host<S>where
S: Debug,
impl<S> Debug for AutoStream<S>
impl<S> Debug for StripStream<S>
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 inotify::events::Event<S>where
S: Debug,
impl<S> Debug for PasswordMasked<'_, RiAbsoluteStr<S>>where
S: Spec,
impl<S> Debug for PasswordMasked<'_, RiStr<S>>where
S: Spec,
impl<S> Debug for PasswordMasked<'_, RiReferenceStr<S>>where
S: Spec,
impl<S> Debug for PasswordMasked<'_, RiRelativeStr<S>>where
S: Spec,
impl<S> Debug for RiAbsoluteStr<S>where
S: Spec,
impl<S> Debug for RiAbsoluteString<S>where
S: Spec,
impl<S> Debug for RiFragmentStr<S>where
S: Spec,
impl<S> Debug for RiFragmentString<S>where
S: Spec,
impl<S> Debug for RiStr<S>where
S: Spec,
impl<S> Debug for RiString<S>where
S: Spec,
impl<S> Debug for RiQueryStr<S>where
S: Spec,
impl<S> Debug for RiQueryString<S>where
S: Spec,
impl<S> Debug for RiReferenceStr<S>where
S: Spec,
impl<S> Debug for RiReferenceString<S>where
S: Spec,
impl<S> Debug for RiRelativeStr<S>where
S: Spec,
impl<S> Debug for RiRelativeString<S>where
S: Spec,
impl<S> Debug for MidHandshakeTlsStream<S>where
S: Debug,
impl<S> Debug for native_tls::TlsStream<S>where
S: Debug,
impl<S> Debug for MidHandshakeSslStream<S>where
S: Debug,
impl<S> Debug for SslStream<S>where
S: Debug,
impl<S> Debug for ByteStream<S>where
S: Debug,
impl<S> Debug for rocket::response::stream::reader::ReaderStream<S>
impl<S> Debug for TextStream<S>where
S: Debug,
impl<S> Debug for SecretBox<S>
impl<S> Debug for AllowStd<S>where
S: Debug,
impl<S> Debug for tokio_native_tls::TlsStream<S>where
S: Debug,
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> Debug for RustConnection<S>
impl<S> Debug for BufferedSubscriberLayer<S>where
S: Debug,
impl<S, A> Debug for Pattern<S, A>
impl<S, B> Debug for StreamReader<S, B>
impl<S, B, P> Debug for tower_http::follow_redirect::ResponseFuture<S, B, P>
impl<S, D> Debug for PasswordReplaced<'_, RiAbsoluteStr<S>, D>
impl<S, D> Debug for PasswordReplaced<'_, RiStr<S>, D>
impl<S, D> Debug for PasswordReplaced<'_, RiReferenceStr<S>, D>
impl<S, D> Debug for PasswordReplaced<'_, RiRelativeStr<S>, D>
impl<S, E, F> Debug for Outcome<S, E, F>
impl<S, F> Debug for tower::util::and_then::AndThen<S, F>where
S: Debug,
impl<S, F> Debug for tower::util::map_err::MapErr<S, F>where
S: Debug,
impl<S, F> Debug for MapFuture<S, F>where
S: Debug,
impl<S, F> Debug for MapRequest<S, F>where
S: Debug,
impl<S, F> Debug for MapResponse<S, F>where
S: Debug,
impl<S, F> Debug for MapResult<S, F>where
S: Debug,
impl<S, F> Debug for tower::util::then::Then<S, F>where
S: Debug,
impl<S, F, R> Debug for DynFilterFn<S, F, R>
impl<S, Item> Debug for SplitSink<S, Item>
impl<S, N> Debug for FmtContext<'_, S, N>
impl<S, N, E, W> Debug for tracing_subscriber::fmt::fmt_layer::Layer<S, N, E, W>
impl<S, P> Debug for FollowRedirect<S, P>
impl<S, Req> Debug for Oneshot<S, Req>
impl<Si1, Si2> Debug for Fanout<Si1, Si2>
impl<Si, F> Debug for SinkMapErr<Si, F>
impl<Si, Item> Debug for futures_util::sink::buffer::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<Src, Dst> Debug for AlignmentError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for SizeError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for ValidityError<Src, Dst>where
Dst: TryFromBytes + ?Sized,
impl<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 futures_util::stream::stream::count::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<State> Debug for FallbackFrame<State>where
State: Debug,
impl<State> Debug for EventQueue<State>
impl<State> Debug for QueueHandle<State>
impl<Storage> Debug for linux_raw_sys::general::__BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<Storage> Debug for linux_raw_sys::general::__BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<Storage> Debug for linux_raw_sys::net::__BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<Store> Debug for ZeroAsciiIgnoreCaseTrie<Store>
impl<Store> Debug for ZeroTrie<Store>where
Store: Debug,
impl<Store> Debug for ZeroTrieExtendedCapacity<Store>
impl<Store> Debug for ZeroTriePerfectHash<Store>
impl<Store> Debug for ZeroTrieSimpleAscii<Store>
impl<Svc, S> Debug for CallAll<Svc, S>
impl<Svc, S> Debug for CallAllUnordered<Svc, S>
impl<T> Debug for TokenAtOffset<T>where
T: Debug,
impl<T> Debug for WalkEvent<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::mpmc::error::SendTimeoutError<T>
impl<T> Debug for std::sync::mpsc::TrySendError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for async_channel::TrySendError<T>
impl<T> Debug for calloop::sources::channel::Event<T>where
T: Debug,
impl<T> Debug for LocalResult<T>where
T: Debug,
impl<T> Debug for PushError<T>where
T: Debug,
impl<T> Debug for crossbeam_channel::err::SendTimeoutError<T>
impl<T> Debug for crossbeam_channel::err::TrySendError<T>
impl<T> Debug for Steal<T>
impl<T> Debug for diff::Result<T>where
T: Debug,
impl<T> Debug for httparse::Status<T>where
T: Debug,
impl<T> Debug for hyper_rustls::stream::MaybeHttpsStream<T>where
T: Debug,
impl<T> Debug for hyper_tls::stream::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 tokio_rustls::TlsStream<T>where
T: Debug,
impl<T> Debug for WEnum<T>where
T: Debug,
impl<T> Debug for capability_3p::mpsc::error::SendTimeoutError<T>
impl<T> Debug for capability_3p::mpsc::error::TrySendError<T>
impl<T> Debug for SetError<T>where
T: Debug,
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.