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,
)");Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl Debug for !
impl Debug for ()
impl Debug for AArch64
impl Debug for Abbreviation
impl Debug for Abbreviations
impl Debug for AbbreviationsCache
impl Debug for AbbreviationsCacheStrategy
impl Debug for Abi
impl Debug for AbortHandle
impl Debug for AbstractNsUdSocket
impl Debug for AccessError
impl Debug for AccessKind
impl Debug for AccessMode
impl Debug for AcquireError
impl Debug for zellij_utils::client_server_contract::client_server_contract::Action
impl Debug for zellij_tile::prelude::actions::Action
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufAction
impl Debug for anstyle_parse::state::definitions::Action
impl Debug for rustix::termios::types::Action
impl Debug for ActionCompletePayload
impl Debug for ActionIter
impl Debug for ActionMsg
impl Debug for ActionName
impl Debug for ActionType
impl Debug for ActivePaneScrollPayload
impl Debug for AddrParseError
impl Debug for AddressSize
impl Debug for Adler32
impl Debug for AixFileHeader
impl Debug for AixHeader
impl Debug for AixMemberOffset
impl Debug for core::mem::alignment::Alignment
impl Debug for zellij_tile::shim::alloc::fmt::Alignment
impl Debug for AllocError
impl Debug for Alnum
impl Debug for Alphabet
impl Debug for Alphabetic
impl Debug for Alphanumeric
impl Debug for Always
impl Debug for AncestryUpdate
impl Debug for AncillaryError
impl Debug for Announce
impl Debug for AnnounceAck
impl Debug for AnonObjectHeader
impl Debug for AnonObjectHeaderBigobj
impl Debug for AnonObjectHeaderV2
impl Debug for Ansi256
impl Debug for Ansi256Color
impl Debug for AnsiCode
impl Debug for AnsiColor
impl Debug for AnsiColors
impl Debug for Appender
impl Debug for AppenderBuilder
impl Debug for ArangeEntry
impl Debug for Architecture
impl Debug for ArchiveKind
impl Debug for ArchiveOffset
impl Debug for AreFloatingPanesVisibleAction
impl Debug for AreFloatingPanesVisiblePayload
impl Debug for zellij_tile::shim::plugin_api::pipe_message::ProtobufArg
impl Debug for clap_builder::builder::arg::Arg
impl Debug for ArgAction
impl Debug for ArgCursor
impl Debug for ArgGroup
impl Debug for ArgMatches
impl Debug for ArgPredicate
impl Debug for Args
impl Debug for ArgsOs
impl Debug for Arguments<'_>
impl Debug for Arm
impl Debug for Array
impl Debug for AsciiChar
impl Debug for AsciiHexDigit
impl Debug for AsciiParser
impl Debug for AsciiProbeResult
impl Debug for Assume
impl Debug for AsyncBody
impl Debug for AtFlags
impl Debug for core::sync::atomic::Atomic<bool>
target_has_atomic_load_store=8 only.impl Debug for core::sync::atomic::Atomic<i8>
impl Debug for core::sync::atomic::Atomic<i16>
impl Debug for core::sync::atomic::Atomic<i32>
impl Debug for core::sync::atomic::Atomic<i64>
impl Debug for core::sync::atomic::Atomic<isize>
impl Debug for core::sync::atomic::Atomic<u8>
impl Debug for core::sync::atomic::Atomic<u16>
impl Debug for core::sync::atomic::Atomic<u32>
impl Debug for core::sync::atomic::Atomic<u64>
impl Debug for core::sync::atomic::Atomic<usize>
impl Debug for AtomicOrdering
impl Debug for AttachClientMsg
impl Debug for AttachWatcherClientMsg
impl Debug for icu_locale_core::extensions::unicode::attribute::Attribute
impl Debug for AttributeParseError
impl Debug for AttributeSpecification
impl Debug for icu_locale_core::extensions::unicode::attributes::Attributes
impl Debug for Augmentation
impl Debug for Auth
impl Debug for Authentication
impl Debug for Authority
impl Debug for AuxHeader32
impl Debug for AuxHeader64
impl Debug for AvailableLayoutInfoPayload
impl Debug for BackgroundColorMsg
impl Debug for BackgroundJobContext
impl Debug for Backoff
impl Debug for std::backtrace::Backtrace
impl Debug for backtrace::capture::Backtrace
impl Debug for std::backtrace::BacktraceFrame
impl Debug for backtrace::capture::BacktraceFrame
impl Debug for BacktraceStatus
impl Debug for BacktraceStyle
impl Debug for BacktraceSymbol
impl Debug for icu_normalizer::provider::Baked
impl Debug for icu_properties::provider::Baked
impl Debug for zellij_utils::client_server_contract::client_server_contract::BareKey
impl Debug for zellij_tile::prelude::BareKey
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufBareKey
impl Debug for std::sync::barrier::Barrier
impl Debug for tokio::sync::barrier::Barrier
impl Debug for std::sync::barrier::BarrierWaitResult
impl Debug for tokio::sync::barrier::BarrierWaitResult
impl Debug for BaseAddresses
impl Debug for BaseDirs
impl Debug for Bash
impl Debug for BasicEmoji
impl Debug for Bernoulli
impl Debug for BernoulliError
impl Debug for BidiClass
impl Debug for BidiControl
impl Debug for BidiMirrored
impl Debug for BidiMirroringGlyph
impl Debug for BidiPairedBracketType
impl Debug for gimli::endianity::BigEndian
impl Debug for object::endian::BigEndian
impl Debug for BinaryFormat
impl Debug for Blank
impl Debug for BlankHighlighter
impl Debug for BlankHighlighterState
impl Debug for BlockAux32
impl Debug for BlockAux64
impl Debug for Body
impl Debug for Bool
impl Debug for BoolValueParser
impl Debug for BoolishValueParser
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for BorrowedFd<'_>
impl Debug for Braced
impl Debug for BreakClass
impl Debug for BreakOpportunity
impl Debug for BreakPaneAction
impl Debug for BreakPaneLeftAction
impl Debug for BreakPaneRightAction
impl Debug for BreakPanesToNewTabPayload
impl Debug for BreakPanesToNewTabResponse
impl Debug for BreakPanesToTabWithIdPayload
impl Debug for BreakPanesToTabWithIdResponse
impl Debug for BreakPanesToTabWithIndexPayload
impl Debug for BreakPanesToTabWithIndexResponse
impl Debug for BufferFormat
impl Debug for BufferMarker
impl Debug for std::thread::builder::Builder
impl Debug for uuid::builder::Builder
impl Debug for tokio::runtime::builder::Builder
impl Debug for http::request::Builder
impl Debug for http::response::Builder
impl Debug for http::uri::builder::Builder
impl Debug for Bye
impl Debug for ByteStr
impl Debug for ByteString
impl Debug for zellij_tile::shim::bytes::Bytes
impl Debug for BytesMut
impl Debug for CStr
Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
impl Debug for CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for CaCertificate
impl Debug for CalendarAlgorithm
impl Debug for CancellationToken
impl Debug for CanonicalCombiningClass
impl Debug for CanonicalCombiningClassMap
impl Debug for CanonicalComposition
impl Debug for CanonicalDecomposition
impl Debug for Cart
impl Debug for CaseIgnorable
impl Debug for CaseSensitive
impl Debug for Cased
impl Debug for Category
impl Debug for ChaCha8Core
impl Debug for ChaCha8Rng
impl Debug for ChaCha12Core
impl Debug for ChaCha12Rng
impl Debug for ChaCha20Core
impl Debug for ChaCha20Rng
impl Debug for ChangeFloatingPaneCoordinatesAction
impl Debug for ChangeFloatingPanesCoordinatesPayload
impl Debug for ChangeHostFolderPayload
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 core::mem::type_info::Char
impl Debug for zellij_tile::shim::plugin_api::generated_api::api::key::key::Char
impl Debug for CharCase
impl Debug for CharKey
impl Debug for CharTryFromError
impl Debug for CharULE
impl Debug for Chars<'_>
impl Debug for std::process::Child
impl Debug for tokio::process::Child
impl Debug for std::process::ChildStderr
impl Debug for tokio::process::ChildStderr
impl Debug for std::process::ChildStdin
impl Debug for tokio::process::ChildStdin
impl Debug for std::process::ChildStdout
impl Debug for tokio::process::ChildStdout
impl Debug for ClearPaneHighlightsPayload
impl Debug for ClearScreenAction
impl Debug for ClearScreenByPaneIdAction
impl Debug for ClearScreenForPaneIdPayload
impl Debug for CliAction
impl Debug for CliArgs
impl Debug for zellij_utils::client_server_contract::client_server_contract::CliAssets
impl Debug for zellij_utils::input::cli_assets::CliAssets
impl Debug for CliPipeAction
impl Debug for CliPipeOutputMsg
impl Debug for CliPipeOutputPayload
impl Debug for CliPipePayload
impl Debug for ClientAttributes
impl Debug for ClientCertificate
impl Debug for ClientContext
impl Debug for ClientExitedMsg
impl Debug for zellij_tile::prelude::ClientInfo
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufClientInfo
impl Debug for ClientPaneHistory
impl Debug for ClientTabHistory
impl Debug for zellij_utils::client_server_contract::client_server_contract::ClientToServerMsg
impl Debug for zellij_utils::ipc::ClientToServerMsg
impl Debug for zellij_utils::client_server_contract::client_server_contract::Clipboard
impl Debug for zellij_utils::input::options::Clipboard
impl Debug for CloseFocusAction
impl Debug for CloseFocusByPaneIdAction
impl Debug for CloseMultiplePanesPayload
impl Debug for ClosePluginPaneAction
impl Debug for CloseTabAction
impl Debug for CloseTabByIdAction
impl Debug for CloseTabWithIdPayload
impl Debug for CloseTabWithIndexPayload
impl Debug for CloseTerminalPaneAction
impl Debug for Cmyk
impl Debug for CmykRatio
impl Debug for CodePointInversionListAndStringListULE
impl Debug for CodePointInversionListULE
impl Debug for CodePointSetData
impl Debug for CodePointTrieHeader
impl Debug for CoderResult
impl Debug for CollationCaseFirst
impl Debug for CollationNumericOrdering
impl Debug for CollationType
impl Debug for CollectionAllocErr
impl Debug for Collector
impl Debug for Colons
impl Debug for zellij_tile::shim::plugin_api::generated_api::api::style::Color
impl Debug for anstyle::color::Color
impl Debug for colored::color::Color
impl Debug for log4rs::encode::Color
impl Debug for clap_builder::util::color::ColorChoice
impl Debug for colorchoice::ColorChoice
impl Debug for ColorLevel
impl Debug for zellij_utils::client_server_contract::client_server_contract::ColorRegister
impl Debug for zellij_utils::ipc::ColorRegister
impl Debug for ColorRegistersMsg
impl Debug for zellij_utils::client_server_contract::client_server_contract::palette_color::ColorType
impl Debug for zellij_tile::shim::plugin_api::generated_api::api::style::ColorType
impl Debug for Coloration
impl Debug for ColoredString
impl Debug for Column
impl Debug for ColumnType
impl Debug for ComdatKind
impl Debug for std::process::Command
impl Debug for zellij_utils::cli::Command
impl Debug for zellij_tile::shim::plugin_api::command::ProtobufCommand
impl Debug for clap_builder::builder::command::Command
impl Debug for tokio::process::Command
impl Debug for CommandChangedPayload
impl Debug for CommandName
impl Debug for zellij_utils::client_server_contract::client_server_contract::CommandOrPlugin
impl Debug for zellij_tile::prelude::CommandOrPlugin
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufCommandOrPlugin
impl Debug for zellij_utils::client_server_contract::client_server_contract::CommandOrPluginFile
impl Debug for zellij_tile::shim::plugin_api::generated_api::api::action::CommandOrPluginFile
impl Debug for zellij_utils::client_server_contract::client_server_contract::command_or_plugin::CommandOrPluginType
impl Debug for zellij_tile::shim::plugin_api::action::CommandOrPluginType
impl Debug for CommandPaneExitedPayload
impl Debug for CommandPaneOpenedPayload
impl Debug for CommandPaneReRunPayload
impl Debug for CommandResolvedEnvs
impl Debug for CommandToRun
impl Debug for CommandType
impl Debug for CommonVariantType
impl Debug for CompactFormatter
impl Debug for CompareResult
impl Debug for Components<'_>
impl Debug for ComposingNormalizer
impl Debug for CompoundPolicy
impl Debug for CompressedFileRange
impl Debug for CompressionFormat
impl Debug for std::sync::nonpoison::condvar::Condvar
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for parking_lot::condvar::Condvar
impl Debug for zellij_utils::input::config::Config
impl Debug for notify::config::Config
impl Debug for log4rs::config::runtime::Config
impl Debug for ConfigBuilder
impl Debug for zellij_utils::input::config::ConfigError
impl Debug for log4rs::config::runtime::ConfigError
impl Debug for ConfigErrors
impl Debug for ConfigFileUpdatedMsg
impl Debug for ConfirmAction
impl Debug for ConnStatusMsg
impl Debug for ConnectOptions<'_>
impl Debug for zellij_utils::client_server_contract::client_server_contract::ConnectToSession
impl Debug for zellij_tile::prelude::ConnectToSession
impl Debug for ConnectWaitMode
impl Debug for ConnectedMsg
impl Debug for Const
impl Debug for Constraint
impl Debug for Context<'_>
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufContextItem
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ContextItem
impl Debug for ContextKind
impl Debug for ContextType
impl Debug for ContextValue
impl Debug for ControlModes
impl Debug for zellij_utils::input::config::ConversionError
impl Debug for CoordinateType
impl Debug for CopyAction
impl Debug for zellij_tile::prelude::CopyDestination
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufCopyDestination
impl Debug for CopyLastCommandOutputAction
impl Debug for CopyToClipboardPayload
impl Debug for CpuidResult
impl Debug for CreateKind
impl Debug for CreateTokenResponse
impl Debug for Credentials
impl Debug for Crel
impl Debug for CsectAux32
impl Debug for CsectAux64
impl Debug for CssColors
impl Debug for CurrencyFormatStyle
impl Debug for CurrencyType
impl Debug for Current
impl Debug for CurrentSessionLastSavedTimePayload
impl Debug for CurrentSessionLastSavedTimeResponse
impl Debug for CurrentTabInfoAction
impl Debug for CursorInactiveStyle
impl Debug for CursorPosition
impl Debug for CursorStyle
impl Debug for CustomColor
impl Debug for CustomIndexHighlight
impl Debug for CustomMessagePayload
impl Debug for CustomRgbHighlight
impl Debug for CwdChangedPayload
impl Debug for DIR
impl Debug for Dash
impl Debug for DataChange
impl Debug for DataError
impl Debug for DataErrorKind
impl Debug for DataFormat
impl Debug for DataLocale
impl Debug for DataMarkerAttributes
impl Debug for DataMarkerId
impl Debug for DataMarkerIdHash
impl Debug for DataMarkerInfo
impl Debug for DataRequestMetadata
impl Debug for DataResponseMetadata
impl Debug for Days
impl Debug for notify_types::debouncer_full::DebouncedEvent
impl Debug for notify_types::debouncer_mini::DebouncedEvent
impl Debug for DebouncedEventKind
impl Debug for DebugAsHex
impl Debug for miette::handlers::debug::DebugReportHandler
impl Debug for miette::handlers::debug::DebugReportHandler
impl Debug for DebugTypeSignature
impl Debug for zellij_tile::shim::DecodeError
impl Debug for base64::decode::DecodeError
impl Debug for DecodeMetadata
impl Debug for DecodePaddingMode
impl Debug for DecodeSliceError
impl Debug for DecodeUtf16Error
impl Debug for DecoderResult
impl Debug for Decomposed
impl Debug for DecomposingNormalizer
impl Debug for DefaultCallsite
impl Debug for DefaultGuard
impl Debug for DefaultHasher
impl Debug for DefaultIgnorableCodePoint
impl Debug for zellij_tile::prelude::DeleteAllDeadSessionsResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufDeleteAllDeadSessionsResponse
impl Debug for zellij_tile::prelude::DeleteDeadSessionResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufDeleteDeadSessionResponse
impl Debug for DeleteLayoutPayload
impl Debug for zellij_tile::prelude::DeleteLayoutResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufDeleteLayoutResponse
impl Debug for DenyAction
impl Debug for Deprecated
impl Debug for DesktopNotificationResponseMsg
impl Debug for DetachAction
impl Debug for DetachSessionMsg
impl Debug for Diacritic
impl Debug for Dialer
impl Debug for DialerParseError
impl Debug for Dimension
impl Debug for std::fs::Dir
impl Debug for std::fs::DirBuilder
impl Debug for tokio::fs::dir_builder::DirBuilder
impl Debug for std::fs::DirEntry
impl Debug for tokio::fs::read_dir::DirEntry
impl Debug for walkdir::dent::DirEntry
impl Debug for zellij_utils::client_server_contract::client_server_contract::Direction
impl Debug for zellij_tile::prelude::Direction
impl Debug for rustix::ioctl::Direction
impl Debug for Dispatch
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for std::path::Display<'_>
impl Debug for Dl_info
impl Debug for DnsCache
impl Debug for socket2::Domain
impl Debug for socket2::Domain
impl Debug for Downloader
impl Debug for DownloaderError
impl Debug for zellij_tile::shim::alloc::string::Drain<'_>
impl Debug for tokio_util::sync::cancellation_token::guard::DropGuard
impl Debug for DumpLayoutAction
impl Debug for DumpLayoutPayload
impl Debug for DumpLayoutResponse
impl Debug for DumpScreenAction
impl Debug for DumpScreenPayload
impl Debug for DumpSessionLayoutPayload
impl Debug for DumpSessionLayoutResponse
impl Debug for DupFlags
impl Debug for DuplexStream
impl Debug for core::time::Duration
impl Debug for humantime::wrapper::Duration
impl Debug for DwAccess
impl Debug for DwAddr
impl Debug for DwAt
impl Debug for DwAte
impl Debug for DwCc
impl Debug for DwCfa
impl Debug for DwChildren
impl Debug for DwDefaulted
impl Debug for DwDs
impl Debug for DwDsc
impl Debug for DwEhPe
impl Debug for DwEnd
impl Debug for DwForm
impl Debug for DwId
impl Debug for DwIdx
impl Debug for DwInl
impl Debug for DwLang
impl Debug for DwLle
impl Debug for DwLnct
impl Debug for DwLne
impl Debug for DwLns
impl Debug for DwMacinfo
impl Debug for DwMacro
impl Debug for DwOp
impl Debug for DwOrd
impl Debug for DwRle
impl Debug for DwSect
impl Debug for DwSectV2
impl Debug for DwTag
impl Debug for DwUt
impl Debug for DwVirtuality
impl Debug for DwVis
impl Debug for DwarfAux32
impl Debug for DwarfAux64
impl Debug for DwarfFileType
impl Debug for DwoId
impl Debug for DyldCacheSlidePointer3
impl Debug for DyldCacheSlidePointer5
impl Debug for DyldRelocation
impl Debug for DyldRelocationAuth
impl Debug for DynColors
impl Debug for DynTrait
impl Debug for DynTraitPredicate
impl Debug for EastAsianWidth
impl Debug for Easy
impl Debug for EasyHandle
impl Debug for EditFileAction
impl Debug for EditFilePayload
impl Debug for EditLayoutPayload
impl Debug for zellij_tile::prelude::EditLayoutResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufEditLayoutResponse
impl Debug for EditPaneExitedPayload
impl Debug for EditPaneOpenedPayload
impl Debug for EditScrollbackAction
impl Debug for EditScrollbackByPaneIdAction
impl Debug for EditScrollbackForPaneWithIdPayload
impl Debug for Effect
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 tokio::time::error::Elapsed
impl Debug for tokio_stream::stream_ext::timeout::Elapsed
impl Debug for Elf32_Chdr
impl Debug for Elf32_Ehdr
impl Debug for Elf32_Phdr
impl Debug for Elf32_Shdr
impl Debug for Elf32_Sym
impl Debug for Elf64_Chdr
impl Debug for Elf64_Ehdr
impl Debug for Elf64_Phdr
impl Debug for Elf64_Shdr
impl Debug for Elf64_Sym
impl Debug for Elvish
impl Debug for EmbedMultiplePanesPayload
impl Debug for EmitNestedSessionFrameMsg
impl Debug for Emoji
impl Debug for EmojiComponent
impl Debug for EmojiModifier
impl Debug for EmojiModifierBase
impl Debug for EmojiPresentation
impl Debug for EmojiPresentationStyle
impl Debug for EmojiSetData
impl Debug for zellij_tile::shim::alloc::io::Empty
impl Debug for tokio::io::util::empty::Empty
impl Debug for futures_lite::io::Empty
impl Debug for tracing_core::field::Empty
impl Debug for EncodeError
impl Debug for EncodeSliceError
impl Debug for EncodeUtf16<'_>
impl Debug for EncoderResult
impl Debug for gimli::common::Encoding
impl Debug for encoding_rs::Encoding
impl Debug for object::endian::Endianness
impl Debug for nom::number::Endianness
impl Debug for EnteredSpan
impl Debug for EnvVariable
impl Debug for EnvironmentVariables
impl Debug for rustix::backend::io::errno::Errno
impl Debug for nix::errno::consts::Errno
impl Debug for zellij_tile::shim::alloc::io::Error
impl Debug for zellij_tile::shim::alloc::fmt::Error
impl Debug for serde_core::de::value::Error
impl Debug for icu_collections::codepointtrie::error::Error
impl Debug for uuid::error::Error
impl Debug for getrandom::error::Error
impl Debug for tokio::time::error::Error
impl Debug for zellij_tile::prelude::anyError
impl Debug for gimli::read::Error
impl Debug for object::read::Error
impl Debug for notify::error::Error
impl Debug for walkdir::error::Error
impl Debug for isahc::error::Error
impl Debug for curl::error::Error
impl Debug for http::error::Error
impl Debug for humantime::duration::Error
impl Debug for humantime::date::Error
impl Debug for rand_core::error::Error
impl Debug for getrandom::error::Error
impl Debug for serde_json::error::Error
impl Debug for ErrorContext
impl Debug for zellij_tile::shim::alloc::io::ErrorKind
impl Debug for clap_builder::error::kind::ErrorKind
impl Debug for notify::error::ErrorKind
impl Debug for nom::error::ErrorKind
impl Debug for isahc::error::ErrorKind
impl Debug for ErrorType
impl Debug for Errors
impl Debug for core::char::EscapeDebug
impl Debug for core::ascii::EscapeDefault
impl Debug for core::char::EscapeDefault
impl Debug for core::char::EscapeUnicode
impl Debug for zellij_tile::prelude::Event
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufEvent
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 notify_types::event::Event
impl Debug for event_listener::Event
impl Debug for polling::Event
impl Debug for EventAttributes
impl Debug for EventAuxiliaryFlags
impl Debug for notify_types::event::EventKind
impl Debug for inotify::events::EventKind
impl Debug for EventKindMask
impl Debug for EventListener
impl Debug for EventMask
impl Debug for EventMaskParseError
impl Debug for EventNameList
impl Debug for zellij_tile::prelude::EventType
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufEventType
impl Debug for mio::event::events::Events
impl Debug for curl::multi::Events
impl Debug for ExecCmdPayload
impl Debug for ExitCode
impl Debug for ExitMsg
impl Debug for zellij_utils::client_server_contract::client_server_contract::ExitReason
impl Debug for zellij_utils::ipc::ExitReason
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for ExpAux
impl Debug for ExpectContinue
impl Debug for ExtendedPictographic
impl Debug for Extender
impl Debug for ExtensionType
impl Debug for icu_locale_core::extensions::Extensions
impl Debug for http::extensions::Extensions
impl Debug for FILE
impl Debug for FailedToChangeHostFolderPayload
impl Debug for FailedToStartWebServerMsg
impl Debug for FailedToStartWebServerPayload
impl Debug for FailedToWriteConfigToDiskPayload
impl Debug for FalseyValueParser
impl Debug for FatArch32
impl Debug for FatArch64
impl Debug for FatHeader
impl Debug for FdFlags
impl Debug for Field
impl Debug for FieldId
impl Debug for FieldSet
impl Debug for Fields
impl Debug for std::fs::File
impl Debug for zellij_tile::shim::plugin_api::file::ProtobufFile
impl Debug for tokio::fs::file::File
impl Debug for FileAux32
impl Debug for FileAux64
impl Debug for FileEntryFormat
impl Debug for FileFlags
impl Debug for object::xcoff::FileHeader32
impl Debug for object::xcoff::FileHeader64
impl Debug for FileKind
impl Debug for FileListPayload
impl Debug for zellij_tile::prelude::FileMetadata
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufFileMetadata
impl Debug for FileTimes
impl Debug for FileToOpen
impl Debug for FileType
impl Debug for FilesystemUdSocket
impl Debug for FilterOp
impl Debug for memchr::arch::all::packedpair::Finder
impl Debug for memchr::arch::all::rabinkarp::Finder
impl Debug for memchr::arch::all::shiftor::Finder
impl Debug for memchr::arch::all::twoway::Finder
impl Debug for memchr::arch::x86_64::avx2::packedpair::Finder
impl Debug for memchr::arch::x86_64::sse2::packedpair::Finder
impl Debug for FinderBuilder
impl Debug for memchr::arch::all::rabinkarp::FinderRev
impl Debug for memchr::arch::all::twoway::FinderRev
impl Debug for FirstClientConnectedMsg
impl Debug for FirstDay
impl Debug for Fish
impl Debug for Fixed
impl Debug for FixedOffset
impl Debug for FixedOrPercent
impl Debug for FixedOrPercentValue
impl Debug for FixedWindowRoller
impl Debug for FixedWindowRollerBuilder
impl Debug for notify_types::event::Flag
impl Debug for Float
impl Debug for FloatErrorKind
impl Debug for FloatMultiplePanesPayload
impl Debug for FloatingCoordinate
impl Debug for zellij_utils::client_server_contract::client_server_contract::FloatingPaneCoordinates
impl Debug for zellij_tile::prelude::FloatingPaneCoordinates
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufFloatingPaneCoordinates
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufFloatingPaneCoordinates
impl Debug for zellij_utils::client_server_contract::client_server_contract::FloatingPaneLayout
impl Debug for zellij_utils::input::layout::FloatingPaneLayout
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufFloatingPaneLayout
impl Debug for FloatingPlacement
impl Debug for FnPtr
impl Debug for FocusGained
impl Debug for FocusGuestSessionAction
impl Debug for FocusHost
impl Debug for FocusHostSessionAction
impl Debug for FocusLastPaneAction
impl Debug for FocusLost
impl Debug for FocusNextPaneAction
impl Debug for FocusOrCreateTabResponse
impl Debug for FocusPaneByPaneIdAction
impl Debug for FocusPluginPaneWithIdAction
impl Debug for FocusPreviousPaneAction
impl Debug for FocusTerminalPaneWithIdAction
impl Debug for FocusedPaneInfo
impl Debug for ForegroundColorMsg
impl Debug for Form
impl Debug for FormError
impl Debug for Format
impl Debug for FormattedDuration
impl Debug for FormattingOptions
impl Debug for ForwardQueryToHostMsg
impl Debug for ForwardedReplyFromHostMsg
impl Debug for FpCategory
impl Debug for Frame
impl Debug for FrameConfig
impl Debug for FromBytesUntilNulError
impl Debug for FromBytesWithNulError
impl Debug for FromStrError
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for FromVecWithNulError
impl Debug for FullCompositionExclusion
impl Debug for FullscreenState
impl Debug for FunAux32
impl Debug for FunAux64
impl Debug for FunctionKey
impl Debug for GeneralCategory
impl Debug for GeneralCategoryGroup
impl Debug for GeneralCategoryOutOfBoundsError
impl Debug for GeneralPurpose
impl Debug for GeneralPurposeConfig
impl Debug for GenerateRandomNamePayload
impl Debug for GenerateRandomNameResponse
impl Debug for GenerateWebLoginTokenPayload
impl Debug for Generic
impl Debug for GenericFilePath
impl Debug for GenericNamespaced
impl Debug for GenericType
impl Debug for GetDisjointMutError
impl Debug for GetFocusedPaneInfoPayload
impl Debug for zellij_tile::prelude::GetFocusedPaneInfoResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufGetFocusedPaneInfoResponse
impl Debug for GetLayoutDirPayload
impl Debug for GetLayoutDirResponse
impl Debug for GetPaneCwdPayload
impl Debug for zellij_tile::prelude::GetPaneCwdResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufGetPaneCwdResponse
impl Debug for GetPaneInfoPayload
impl Debug for GetPaneInfoResponse
impl Debug for GetPanePidPayload
impl Debug for zellij_tile::prelude::GetPanePidResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufGetPanePidResponse
impl Debug for GetPaneRunningCommandPayload
impl Debug for zellij_tile::prelude::GetPaneRunningCommandResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufGetPaneRunningCommandResponse
impl Debug for GetPaneScrollbackPayload
impl Debug for GetSessionEnvironmentVariablesPayload
impl Debug for GetSessionEnvironmentVariablesResponse
impl Debug for GetSessionListPayload
impl Debug for zellij_tile::prelude::GetSessionListResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufGetSessionListResponse
impl Debug for GetTabInfoPayload
impl Debug for GetTabInfoResponse
impl Debug for GetTimezoneError
impl Debug for Gid
impl Debug for Global
impl Debug for GlobalLayoutManifest
impl Debug for GoToNextTabAction
impl Debug for GoToPreviousTabAction
impl Debug for GoToTabAction
impl Debug for GoToTabByIdAction
impl Debug for GoToTabNameAction
impl Debug for GoToTabNamePayload
impl Debug for GoToTabWithIdPayload
impl Debug for Graph
impl Debug for GraphemeBase
impl Debug for GraphemeClusterBreak
impl Debug for GraphemeExtend
impl Debug for GraphemeLink
impl Debug for GraphicalReportHandler
impl Debug for GraphicalTheme
impl Debug for Group
impl Debug for GroupAndUngroupPanesPayload
impl Debug for crossbeam_epoch::guard::Guard
impl Debug for Guid
impl Debug for HalfPageScrollDownAction
impl Debug for HalfPageScrollDownByPaneIdAction
impl Debug for HalfPageScrollUpAction
impl Debug for HalfPageScrollUpByPaneIdAction
impl Debug for tokio::runtime::handle::Handle
impl Debug for same_file::Handle
impl Debug for log4rs::Handle
impl Debug for HangulSyllableType
impl Debug for zellij_tile::shim::plugin_api::event::Header
impl Debug for object::archive::Header
impl Debug for HeaderName
impl Debug for HeaderValue
impl Debug for Height
impl Debug for HexColor
impl Debug for HexDigit
impl Debug for HideFloatingPanesAction
impl Debug for zellij_tile::shim::plugin_api::action::HideFloatingPanesPayload
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufHideFloatingPanesPayload
impl Debug for HideFloatingPanesResponse
impl Debug for HidePaneWithIdPayload
impl Debug for HighlightAndUnhighlightPanesPayload
impl Debug for HighlightClickedPayload
impl Debug for zellij_tile::prelude::HighlightLayer
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufHighlightLayer
impl Debug for zellij_tile::prelude::HighlightStyle
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufHighlightStyle
impl Debug for HijriCalendarAlgorithm
impl Debug for HintTextPayload
impl Debug for HostFolderChangedPayload
impl Debug for HostNotificationProtocol
impl Debug for HostTerminalFocusChangedMsg
impl Debug for HostTerminalThemeChangedMsg
impl Debug for HostTerminalThemeChangedPayload
impl Debug for zellij_utils::client_server_contract::client_server_contract::HostTerminalThemeIndication
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufHostTerminalThemeIndication
impl Debug for HostTerminalThemeMode
impl Debug for HourCycle
impl Debug for Hsl
impl Debug for HttpClient
impl Debug for HttpClientBuilder
impl Debug for zellij_tile::prelude::HttpVerb
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufHttpVerb
impl Debug for HttpVersion
impl Debug for Hyphen
impl Debug for Hyphenated
impl Debug for INotifyWatcher
impl Debug for clap_builder::util::id::Id
impl Debug for tokio::runtime::task::id::Id
impl Debug for tracing_core::span::Id
impl Debug for IdAndName
impl Debug for IdAndNewName
impl Debug for IdCompatMathContinue
impl Debug for IdCompatMathStart
impl Debug for IdContinue
impl Debug for IdStart
impl Debug for Ident
impl Debug for Identifier
impl Debug for Ideographic
impl Debug for IdsBinaryOperator
impl Debug for IdsTrinaryOperator
impl Debug for IdsUnaryOperator
impl Debug for IgnoredAny
impl Debug for ImageAlpha64RuntimeFunctionEntry
impl Debug for ImageAlphaRuntimeFunctionEntry
impl Debug for ImageArchitectureEntry
impl Debug for ImageArchiveMemberHeader
impl Debug for ImageArm64RuntimeFunctionEntry
impl Debug for ImageArmRuntimeFunctionEntry
impl Debug for ImageAuxSymbolCrc
impl Debug for ImageAuxSymbolFunction
impl Debug for ImageAuxSymbolFunctionBeginEnd
impl Debug for ImageAuxSymbolSection
impl Debug for ImageAuxSymbolTokenDef
impl Debug for ImageAuxSymbolWeak
impl Debug for ImageBaseRelocation
impl Debug for ImageBoundForwarderRef
impl Debug for ImageBoundImportDescriptor
impl Debug for ImageCoffSymbolsHeader
impl Debug for ImageCor20Header
impl Debug for ImageDataDirectory
impl Debug for ImageDebugDirectory
impl Debug for ImageDebugMisc
impl Debug for ImageDelayloadDescriptor
impl Debug for ImageDosHeader
impl Debug for ImageDynamicRelocation32
impl Debug for ImageDynamicRelocation64
impl Debug for ImageDynamicRelocation32V2
impl Debug for ImageDynamicRelocation64V2
impl Debug for ImageDynamicRelocationTable
impl Debug for ImageEnclaveConfig32
impl Debug for ImageEnclaveConfig64
impl Debug for ImageEnclaveImport
impl Debug for ImageEpilogueDynamicRelocationHeader
impl Debug for ImageExportDirectory
impl Debug for ImageFileHeader
impl Debug for ImageFunctionEntry
impl Debug for ImageFunctionEntry64
impl Debug for ImageHotPatchBase
impl Debug for ImageHotPatchHashes
impl Debug for ImageHotPatchInfo
impl Debug for ImageImportByName
impl Debug for ImageImportDescriptor
impl Debug for ImageLinenumber
impl Debug for ImageLoadConfigCodeIntegrity
impl Debug for ImageLoadConfigDirectory32
impl Debug for ImageLoadConfigDirectory64
impl Debug for ImageNtHeaders32
impl Debug for ImageNtHeaders64
impl Debug for ImageOptionalHeader32
impl Debug for ImageOptionalHeader64
impl Debug for ImageOs2Header
impl Debug for ImagePrologueDynamicRelocationHeader
impl Debug for ImageRelocation
impl Debug for ImageResourceDataEntry
impl Debug for ImageResourceDirStringU
impl Debug for ImageResourceDirectory
impl Debug for ImageResourceDirectoryEntry
impl Debug for ImageResourceDirectoryString
impl Debug for ImageRomHeaders
impl Debug for ImageRomOptionalHeader
impl Debug for ImageRuntimeFunctionEntry
impl Debug for ImageSectionHeader
impl Debug for ImageSeparateDebugHeader
impl Debug for ImageSymbol
impl Debug for ImageSymbolBytes
impl Debug for ImageSymbolEx
impl Debug for ImageSymbolExBytes
impl Debug for ImageThunkData32
impl Debug for ImageThunkData64
impl Debug for ImageTlsDirectory32
impl Debug for ImageTlsDirectory64
impl Debug for ImageVxdHeader
impl Debug for ImportObjectHeader
impl Debug for ImportType
impl Debug for InPlaceConfig
impl Debug for Index8
impl Debug for Index16
impl Debug for Index32
impl Debug for IndexInPaneGroup
impl Debug for IndexSectionId
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
impl Debug for IndicConjunctBreak
impl Debug for IndicSyllabicCategory
impl Debug for Infallible
impl Debug for InfoType
impl Debug for InitError
impl Debug for InitialKeybindsPayload
impl Debug for Inotify
impl Debug for InputEvent
impl Debug for zellij_utils::client_server_contract::client_server_contract::InputMode
impl Debug for zellij_tile::prelude::InputMode
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufInputMode
impl Debug for InputModeIter
impl Debug for InputModeKeybinds
impl Debug for InputModeMessage
impl Debug for InputModes
impl Debug for InputParser
impl Debug for Insets
impl Debug for miette::eyreish::InstallError
impl Debug for miette::eyreish::InstallError
impl Debug for std::time::Instant
impl Debug for tokio::time::instant::Instant
impl Debug for Int
impl Debug for IntErrorKind
impl Debug for tokio::io::interest::Interest
impl Debug for mio::interest::Interest
impl Debug for tracing_core::subscriber::Interest
impl Debug for socket2::socket::InterfaceIndexOrAddress
impl Debug for socket2::socket::InterfaceIndexOrAddress
impl Debug for InternalFixed
impl Debug for InternalNumeric
impl Debug for Interval
impl Debug for IntervalStream
impl Debug for IntoChars
impl Debug for IntoIncoming
impl Debug for walkdir::IntoIter
impl Debug for IntoStringError
impl Debug for InvalidHeaderName
impl Debug for InvalidHeaderValue
impl Debug for InvalidMethod
impl Debug for InvalidSetError
impl Debug for InvalidStatusCode
impl Debug for InvalidStringList
impl Debug for InvalidUri
impl Debug for InvalidUriParts
impl Debug for IpAddr
impl Debug for IpResolve
impl Debug for IpVersion
impl Debug for IpcReceiveError
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for Ipv6MulticastScope
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 tracing_core::field::Iter
impl Debug for std::path::Iter<'_>
impl Debug for miette::handlers::json::JSONReportHandler
impl Debug for miette::handlers::json::JSONReportHandler
impl Debug for JoinControl
impl Debug for JoinError
impl Debug for JoinPathsError
impl Debug for JoiningType
impl Debug for KdlDocument
impl Debug for KdlEntry
impl Debug for zellij_utils::input::config::KdlError
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufKdlError
impl Debug for kdl::error::KdlError
impl Debug for KdlErrorKind
impl Debug for KdlErrorVariant
impl Debug for KdlIdentifier
impl Debug for KdlNode
impl Debug for KdlValue
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufKey
impl Debug for icu_locale_core::extensions::transform::key::Key
impl Debug for icu_locale_core::extensions::unicode::key::Key
impl Debug for KeyBind
impl Debug for KeyCode
impl Debug for KeyCodeEncodeModes
impl Debug for KeyEvent
impl Debug for zellij_utils::client_server_contract::client_server_contract::KeyModifier
impl Debug for zellij_tile::prelude::KeyModifier
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufKeyModifier
impl Debug for zellij_tile::shim::plugin_api::key::ProtobufKeyModifier
impl Debug for KeyMsg
impl Debug for KeyToRebind
impl Debug for KeyToUnbind
impl Debug for zellij_utils::client_server_contract::client_server_contract::KeyWithModifier
impl Debug for zellij_tile::prelude::KeyWithModifier
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufKeyWithModifier
impl Debug for KeybindPipeAction
impl Debug for Keybinds
impl Debug for KeyboardEncoding
impl Debug for Keywords
impl Debug for KillSessionMsg
impl Debug for KillSessionsPayload
impl Debug for zellij_tile::prelude::KillSessionsResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufKillSessionsResponse
impl Debug for Kind
impl Debug for KittyGraphicsSupportMsg
impl Debug for KittyKeyboardFlags
impl Debug for miette::protocol::LabeledSpan
impl Debug for miette::protocol::LabeledSpan
impl Debug for Language
impl Debug for LanguageIdentifier
impl Debug for Last
impl Debug for Latin1Bidi
impl Debug for LaunchOrFocusPluginAction
impl Debug for LaunchOrFocusPluginPayload
impl Debug for LaunchPluginAction
impl Debug for zellij_tile::shim::alloc::alloc::Layout
impl Debug for zellij_utils::input::layout::Layout
impl Debug for zellij_utils::client_server_contract::client_server_contract::LayoutConstraint
impl Debug for zellij_utils::input::layout::LayoutConstraint
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufLayoutConstraint
impl Debug for zellij_utils::client_server_contract::client_server_contract::LayoutConstraintFloatingPair
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufLayoutConstraintFloatingPair
impl Debug for zellij_utils::client_server_contract::client_server_contract::LayoutConstraintTiledPair
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufLayoutConstraintTiledPair
impl Debug for zellij_utils::client_server_contract::client_server_contract::LayoutConstraintWithValue
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufLayoutConstraintWithValue
impl Debug for LayoutError
impl Debug for zellij_utils::client_server_contract::client_server_contract::LayoutInfo
impl Debug for zellij_tile::prelude::LayoutInfo
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufLayoutInfo
impl Debug for zellij_utils::client_server_contract::client_server_contract::LayoutMetadata
impl Debug for zellij_tile::prelude::LayoutMetadata
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufLayoutMetadata
impl Debug for zellij_tile::prelude::LayoutParsingError
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufLayoutParsingError
impl Debug for LayoutParts
impl Debug for LayoutType
impl Debug for zellij_tile::prelude::LayoutWithError
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufLayoutWithError
impl Debug for LengthHint
impl Debug for log::Level
impl Debug for tracing_core::metadata::Level
impl Debug for log::LevelFilter
impl Debug for tracing_core::metadata::LevelFilter
impl Debug for Lifetime
impl Debug for Line
impl Debug for LineBreak
impl Debug for LineBreakStyle
impl Debug for LineBreakWordHandling
impl Debug for LineEncoding
impl Debug for LineEnding
impl Debug for LineRow
impl Debug for List
impl Debug for ListClientsAction
impl Debug for ListClientsPayload
impl Debug for ListPanesAction
impl Debug for ListTabsAction
impl Debug for ListTokensResponse
impl Debug for interprocess::local_socket::listener::enum::Listener
impl Debug for interprocess::local_socket::tokio::listener::enum::Listener
impl Debug for interprocess::os::unix::uds_local_socket::listener::Listener
impl Debug for interprocess::os::unix::uds_local_socket::tokio::listener::Listener
impl Debug for ListenerNonblockingMode
impl Debug for ListenerOptions<'_>
impl Debug for gimli::endianity::LittleEndian
impl Debug for object::endian::LittleEndian
impl Debug for LoadNewPluginPayload
impl Debug for Local
impl Debug for LocalEnterGuard
impl Debug for LocalHandle
impl Debug for LocalModes
impl Debug for LocalSet
impl Debug for LocalWaker
impl Debug for Locale
impl Debug for LocalePreferences
impl Debug for Locality
impl Debug for core::panic::location::Location<'_>
impl Debug for zellij_utils::client_server_contract::client_server_contract::run_plugin_location_data::LocationData
impl Debug for zellij_tile::shim::plugin_api::action::LocationData
impl Debug for LogErrorMsg
impl Debug for LogMsg
impl Debug for log4rs::config::runtime::Logger
impl Debug for log4rs::Logger
impl Debug for LoggerBuilder
impl Debug for LogicalOrderException
impl Debug for LoongArch
impl Debug for Lowercase
impl Debug for MIPS
impl Debug for MZError
impl Debug for MZFlush
impl Debug for MZStatus
impl Debug for MainKey
impl Debug for serde_json::map::Map<String, Value>
impl Debug for MaskedRichHeaderEntry
impl Debug for MatchesError
impl Debug for Math
impl Debug for MeasurementSystem
impl Debug for MeasurementUnitOverride
impl Debug for zellij_utils::client_server_contract::client_server_contract::client_to_server_msg::Message
impl Debug for zellij_utils::client_server_contract::client_server_contract::server_to_client_msg::Message
impl Debug for zellij_tile::shim::plugin_api::message::ProtobufMessage
impl Debug for MessageToPlugin
impl Debug for MessageToPluginPayload
impl Debug for std::fs::Metadata
impl Debug for MetadataKind
impl Debug for Method
impl Debug for Metrics
impl Debug for MietteDiagnostic
impl Debug for miette::error::MietteError
impl Debug for miette::error::MietteError
impl Debug for MietteHandlerOpts
impl Debug for Mime
impl Debug for MissedTickBehavior
impl Debug for MobileActivePaneMsg
impl Debug for MobileActivePanePayload
impl Debug for MobilePaneMsg
impl Debug for MobilePanePayload
impl Debug for MobileRenderPrefsMsg
impl Debug for MobileRenderPrefsPayload
impl Debug for MobileSessionMsg
impl Debug for MobileSessionPayload
impl Debug for MobileSizeMsg
impl Debug for MobileSizePayload
impl Debug for MobileStateMsg
impl Debug for MobileStatePayload
impl Debug for MobileTabMsg
impl Debug for MobileTabPayload
impl Debug for ModeInfo
impl Debug for ModeUpdatePayload
impl Debug for ModifierCombiningMark
impl Debug for Modifiers
impl Debug for ModifyKind
impl Debug for Month
impl Debug for Months
impl Debug for Mouse
impl Debug for MouseButtons
impl Debug for zellij_utils::client_server_contract::client_server_contract::MouseEvent
impl Debug for zellij_utils::input::mouse::MouseEvent
impl Debug for zellij_utils::vendored::termwiz::input::MouseEvent
impl Debug for MouseEventAction
impl Debug for MouseEventName
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufMouseEventPayload
impl Debug for zellij_tile::shim::plugin_api::event::MouseEventPayload
impl Debug for zellij_tile::shim::plugin_api::event::mouse_event_payload::MouseEventPayload
impl Debug for zellij_utils::client_server_contract::client_server_contract::MouseEventType
impl Debug for zellij_utils::input::mouse::MouseEventType
impl Debug for MoveDirection
impl Debug for MoveFocusAction
impl Debug for MoveFocusOrTabAction
impl Debug for MovePaneAction
impl Debug for MovePaneBackwardsAction
impl Debug for MovePaneBackwardsByPaneIdAction
impl Debug for MovePaneByPaneIdAction
impl Debug for MovePanePayload
impl Debug for MovePaneWithPaneIdInDirectionPayload
impl Debug for MovePaneWithPaneIdPayload
impl Debug for MovePayload
impl Debug for MoveTabAction
impl Debug for MoveTabByTabIdAction
impl Debug for MoveTabDirection
impl Debug for Multi
impl Debug for MultiError
impl Debug for MultiplayerColors
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 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 NaiveDateWeeksIterator
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 NaiveWeek
impl Debug for NameAndValue
impl Debug for NamedKey
impl Debug for miette::named_source::NamedSource
impl Debug for miette::handlers::narratable::NarratableReportHandler
impl Debug for miette::handlers::narratable::NarratableReportHandler
impl Debug for Needed
impl Debug for NestedCapability
impl Debug for NestedDirection
impl Debug for NestedFrameExtractor
impl Debug for NestedListItem
impl Debug for NestedSessionCapability
impl Debug for NestedSessionFrameFromHostMsg
impl Debug for zellij_utils::client_server_contract::client_server_contract::NestedSessionHandling
impl Debug for zellij_utils::input::options::NestedSessionHandling
impl Debug for zellij_utils::nested_session_contract::nested_session_contract::NestedSessionMessage
impl Debug for zellij_utils::nested_session::NestedSessionMessage
impl Debug for NetRc
impl Debug for NetworkInterface
impl Debug for NewBlockingPaneAction
impl Debug for NewBlockingPanePayload
impl Debug for NewFloatingPaneAction
impl Debug for NewFloatingPanePayload
impl Debug for NewFloatingPluginPaneAction
impl Debug for NewInPlacePaneAction
impl Debug for NewInPlacePanePayload
impl Debug for NewInPlacePluginPaneAction
impl Debug for NewPaneAction
impl Debug for NewPanePayload
impl Debug for zellij_utils::client_server_contract::client_server_contract::NewPanePlacement
impl Debug for zellij_tile::prelude::NewPanePlacement
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufNewPanePlacement
impl Debug for NewPanePlacementInPlace
impl Debug for zellij_tile::prelude::NewPluginArgs
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufNewPluginArgs
impl Debug for NewPluginPanePayload
impl Debug for NewStackedPaneAction
impl Debug for NewTabAction
impl Debug for zellij_tile::shim::plugin_api::action::NewTabPayload
impl Debug for zellij_tile::shim::plugin_api::plugin_command::NewTabPayload
impl Debug for NewTabResponse
impl Debug for NewTabUnfocusedPayload
impl Debug for NewTabUnfocusedResponse
impl Debug for NewTabsResponse
impl Debug for NewTabsWithLayoutInfoPayload
impl Debug for NewTiledPaneAction
impl Debug for NewTiledPaneInTabPayload
impl Debug for NewTiledPaneInTabResponse
impl Debug for NewTiledPanePayload
impl Debug for NewTiledPluginPaneAction
impl Debug for NextSwapLayoutAction
impl Debug for NextSwapLayoutByTabIdAction
impl Debug for NfcInert
impl Debug for NfdInert
impl Debug for NfkcInert
impl Debug for NfkdInert
impl Debug for NoContext
impl Debug for NoDetails
impl Debug for NoDynamicRelocationIterator
impl Debug for NoOpAction
impl Debug for NoPreferenceOptions
impl Debug for NoPreferencePlacement
impl Debug for NoSubscriber
impl Debug for NodeKey
impl Debug for NonEmptyStringValueParser
impl Debug for NonNilUuid
impl Debug for NonPagedDebugInfo
impl Debug for NoncharacterCodePoint
impl Debug for NormalizeError
impl Debug for Notify
impl Debug for NulError
impl Debug for NullWatcher
impl Debug for Number
impl Debug for NumberingSystem
impl Debug for Numeric
impl Debug for ObjectKind
impl Debug for Offset
impl Debug for OffsetFormat
impl Debug for OffsetPrecision
impl Debug for zellij_utils::client_server_contract::client_server_contract::OnForceClose
impl Debug for zellij_utils::input::options::OnForceClose
impl Debug for std::sync::once::Once
impl Debug for parking_lot::once::Once
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for std::sync::once::OnceState
impl Debug for parking_lot::once::OnceState
impl Debug for memchr::arch::all::memchr::One
impl Debug for memchr::arch::x86_64::avx2::memchr::One
impl Debug for memchr::arch::x86_64::sse2::memchr::One
impl Debug for OpaqueOrigin
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for OpenCommandPaneBackgroundResponse
impl Debug for OpenCommandPaneFloatingNearPluginPayload
impl Debug for OpenCommandPaneFloatingNearPluginResponse
impl Debug for OpenCommandPaneFloatingResponse
impl Debug for OpenCommandPaneInPlaceOfPaneIdPayload
impl Debug for OpenCommandPaneInPlaceOfPaneIdResponse
impl Debug for OpenCommandPaneInPlaceOfPluginPayload
impl Debug for OpenCommandPaneInPlaceOfPluginResponse
impl Debug for OpenCommandPaneInPlaceResponse
impl Debug for OpenCommandPaneNearPluginPayload
impl Debug for OpenCommandPaneNearPluginResponse
impl Debug for OpenCommandPanePayload
impl Debug for OpenCommandPaneResponse
impl Debug for OpenEditPaneInPlaceOfPaneIdPayload
impl Debug for OpenEditPaneInPlaceOfPaneIdResponse
impl Debug for OpenFileFloatingNearPluginPayload
impl Debug for OpenFileFloatingNearPluginResponse
impl Debug for OpenFileFloatingResponse
impl Debug for OpenFileInPlaceOfPluginPayload
impl Debug for OpenFileInPlaceOfPluginResponse
impl Debug for OpenFileInPlaceResponse
impl Debug for OpenFileNearPluginPayload
impl Debug for OpenFileNearPluginResponse
impl Debug for zellij_utils::client_server_contract::client_server_contract::OpenFilePayload
impl Debug for zellij_tile::prelude::actions::OpenFilePayload
impl Debug for zellij_tile::shim::plugin_api::plugin_command::OpenFilePayload
impl Debug for OpenFileResponse
impl Debug for std::fs::OpenOptions
impl Debug for tokio::fs::open_options::OpenOptions
impl Debug for tokio::net::unix::pipe::OpenOptions
impl Debug for zellij_tile::prelude::OpenPaneInNewTabResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufOpenPaneInNewTabResponse
impl Debug for OpenPluginPaneFloatingPayload
impl Debug for OpenPluginPaneFloatingResponse
impl Debug for OpenPluginPaneInNewTabPayload
impl Debug for OpenTerminalFloatingNearPluginPayload
impl Debug for OpenTerminalFloatingNearPluginResponse
impl Debug for OpenTerminalFloatingResponse
impl Debug for OpenTerminalInPlaceOfPluginPayload
impl Debug for OpenTerminalInPlaceOfPluginResponse
impl Debug for OpenTerminalInPlaceResponse
impl Debug for OpenTerminalNearPluginPayload
impl Debug for OpenTerminalNearPluginResponse
impl Debug for OpenTerminalPaneInPlaceOfPaneIdPayload
impl Debug for OpenTerminalPaneInPlaceOfPaneIdResponse
impl Debug for OpenTerminalResponse
impl Debug for OptionalActions
impl Debug for OptionalPayload
impl Debug for zellij_utils::client_server_contract::client_server_contract::Options
impl Debug for zellij_utils::input::options::Options
impl Debug for core::cmp::Ordering
impl Debug for core::sync::atomic::Ordering
impl Debug for Origin
impl Debug for zellij_utils::client_server_contract::client_server_contract::OriginatingPlugin
impl Debug for zellij_tile::prelude::OriginatingPlugin
impl Debug for OsRng
impl Debug for std::ffi::os_str::OsStr
impl Debug for clap_builder::builder::os_str::OsStr
impl Debug for OsString
impl Debug for OsStringValueParser
impl Debug for Other
impl Debug for OutOfRange
impl Debug for OutOfRangeError
impl Debug for Output
impl Debug for OutputModes
impl Debug for OverrideLayoutAction
impl Debug for zellij_tile::shim::plugin_api::action::OverrideLayoutPayload
impl Debug for zellij_tile::shim::plugin_api::plugin_command::OverrideLayoutPayload
impl Debug for OwnedFd
impl Debug for tokio::net::tcp::split_owned::OwnedReadHalf
impl Debug for tokio::net::unix::split_owned::OwnedReadHalf
impl Debug for OwnedSemaphorePermit
impl Debug for tokio::net::tcp::split_owned::OwnedWriteHalf
impl Debug for tokio::net::unix::split_owned::OwnedWriteHalf
impl Debug for Pad
impl Debug for PageScrollDownAction
impl Debug for PageScrollDownByPaneIdAction
impl Debug for PageScrollDownInPaneIdPayload
impl Debug for PageScrollUpAction
impl Debug for PageScrollUpByPaneIdAction
impl Debug for PageScrollUpInPaneIdPayload
impl Debug for Pair
impl Debug for zellij_tile::prelude::Palette
impl Debug for zellij_tile::shim::plugin_api::generated_api::api::style::Palette
impl Debug for zellij_utils::client_server_contract::client_server_contract::PaletteColor
impl Debug for zellij_tile::prelude::PaletteColor
impl Debug for PaletteSource
impl Debug for PaneClosedPayload
impl Debug for zellij_tile::prelude::PaneContents
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufPaneContents
impl Debug for PaneContentsEntry
impl Debug for zellij_tile::prelude::PaneFrameStyle
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufPaneFrameStyle
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufPaneFrameStyle
impl Debug for PaneGeom
impl Debug for zellij_utils::client_server_contract::client_server_contract::PaneId
impl Debug for zellij_tile::prelude::PaneId
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufPaneId
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufPaneId
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufPaneId
impl Debug for PaneIdAndFloatingPaneCoordinates
impl Debug for PaneIdAndShouldFloat
impl Debug for PaneIdVariant
impl Debug for PaneIdWithPlugin
impl Debug for zellij_tile::prelude::PaneInfo
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufPaneInfo
impl Debug for PaneLayoutManifest
impl Debug for PaneListEntry
impl Debug for zellij_tile::prelude::PaneManifest
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufPaneManifest
impl Debug for zellij_utils::client_server_contract::client_server_contract::PaneMetadata
impl Debug for zellij_tile::prelude::PaneMetadata
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufPaneMetadata
impl Debug for PaneNameInputAction
impl Debug for zellij_utils::client_server_contract::client_server_contract::PaneReference
impl Debug for zellij_utils::ipc::PaneReference
impl Debug for PaneRenderReport
impl Debug for PaneRenderReportPayload
impl Debug for PaneRenderUpdateMsg
impl Debug for PaneRun
impl Debug for zellij_tile::prelude::PaneScrollbackResponse
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufPaneScrollbackResponse
impl Debug for zellij_utils::client_server_contract::client_server_contract::pane_id::PaneType
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufPaneType
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufPaneType
impl Debug for PaneUpdatePayload
impl Debug for PanicMessage<'_>
impl Debug for anstyle_parse::params::Params
impl Debug for vte::params::Params
impl Debug for ParkResult
impl Debug for ParkToken
impl Debug for crossbeam_utils::sync::parker::Parker
impl Debug for parking::Parker
impl Debug for ParseAlphabetError
impl Debug for ParseBoolError
impl Debug for ParseCharError
impl Debug for ParseColorError
impl Debug for bitflags::parser::ParseError
impl Debug for url::parser::ParseError
impl Debug for icu_locale_core::parser::errors::ParseError
impl Debug for tinystr::error::ParseError
impl Debug for strum::ParseError
impl Debug for colorsys::err::ParseError
impl Debug for chrono::format::ParseError
impl Debug for ParseErrorKind
impl Debug for core::num::float_parse::ParseFloatError
impl Debug for num_traits::ParseFloatError
impl Debug for ParseIntError
impl Debug for ParseLayoutPayload
impl Debug for ParseLayoutResponse
impl Debug for log::ParseLevelError
impl Debug for tracing_core::metadata::ParseLevelError
impl Debug for ParseLevelFilterError
impl Debug for ParseMonthError
impl Debug for ParseWeekdayError
impl Debug for Parsed
impl Debug for ParsedEventMask
impl Debug for utf8parse::Parser
impl Debug for writeable::Part
impl Debug for http::request::Parts
impl Debug for http::response::Parts
impl Debug for http::uri::Parts
impl Debug for PasteAction
impl Debug for PastedTextPayload
impl Debug for Path
impl Debug for PathAndQuery
impl Debug for PathBuf
impl Debug for PathBufValueParser
impl Debug for PatternEncoder
impl Debug for PatternSyntax
impl Debug for PatternWhiteSpace
impl Debug for zellij_utils::nested_session_contract::nested_session_contract::nested_session_message::Payload
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufEventPayload
impl Debug for zellij_tile::shim::plugin_api::plugin_command::Payload
impl Debug for zellij_tile::shim::plugin_api::generated_api::api::style::color::Payload
impl Debug for zellij_utils::client_server_contract::client_server_contract::PercentOrFixed
impl Debug for zellij_utils::input::layout::PercentOrFixed
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufPercentOrFixed
impl Debug for Permission
impl Debug for PermissionCache
impl Debug for PermissionRequestResultPayload
impl Debug for PermissionStatus
impl Debug for zellij_tile::prelude::PermissionType
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufPermissionType
impl Debug for Permissions
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for PhantomPinned
impl Debug for Pid
impl Debug for PidFd
impl Debug for Ping
impl Debug for zellij_tile::prelude::PipeMessage
impl Debug for zellij_tile::shim::plugin_api::pipe_message::ProtobufPipeMessage
impl Debug for std::io::pipe::PipeReader
impl Debug for sluice::pipe::PipeReader
impl Debug for zellij_tile::prelude::PipeSource
impl Debug for zellij_tile::shim::plugin_api::pipe_message::ProtobufPipeSource
impl Debug for std::io::pipe::PipeWriter
impl Debug for sluice::pipe::PipeWriter
impl Debug for zellij_utils::client_server_contract::client_server_contract::PixelDimensions
impl Debug for zellij_utils::ipc::PixelDimensions
impl Debug for PixelMouseEvent
impl Debug for PlacementType
impl Debug for PlacementVariant
impl Debug for zellij_utils::client_server_contract::client_server_contract::PluginAlias
impl Debug for zellij_utils::input::layout::PluginAlias
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufPluginAlias
impl Debug for PluginAliases
impl Debug for PluginCapabilities
impl Debug for zellij_tile::prelude::PluginCommand
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufPluginCommand
impl Debug for PluginConfig
impl Debug for PluginConfiguration
impl Debug for PluginConfigurationChangedPayload
impl Debug for PluginContext
impl Debug for zellij_tile::prelude::PluginIds
impl Debug for zellij_tile::shim::plugin_api::plugin_ids::ProtobufPluginIds
impl Debug for zellij_tile::prelude::PluginInfo
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufPluginInfo
impl Debug for PluginMessage
impl Debug for PluginMessagePayload
impl Debug for PluginPermission
impl Debug for zellij_utils::client_server_contract::client_server_contract::PluginTag
impl Debug for zellij_tile::prelude::PluginTag
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufPluginTag
impl Debug for zellij_utils::client_server_contract::client_server_contract::run_plugin_or_alias::PluginType
impl Debug for zellij_tile::shim::plugin_api::action::PluginType
impl Debug for zellij_utils::client_server_contract::client_server_contract::PluginUserConfiguration
impl Debug for zellij_utils::input::layout::PluginUserConfiguration
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufPluginUserConfiguration
impl Debug for PluginsConfigError
impl Debug for core::mem::type_info::Pointer
impl Debug for gimli::read::cfi::Pointer
impl Debug for mio::poll::Poll
impl Debug for PollSemaphore
impl Debug for PollWatcher
impl Debug for Poller
impl Debug for Pong
impl Debug for PopError
impl Debug for zellij_utils::client_server_contract::client_server_contract::Position
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufPosition
impl Debug for zellij_utils::position::Position
impl Debug for url::slicing::Position
impl Debug for PossibleValue
impl Debug for PossibleValuesParser
impl Debug for PotentialCodePoint
impl Debug for PotentialUtf8
impl Debug for PotentialUtf16
impl Debug for PowerPc64
impl Debug for PowerShell
impl Debug for PreferencesParseError
impl Debug for PrefilterConfig
impl Debug for PrependedConcatenationMark
impl Debug for PreviousSwapLayoutAction
impl Debug for PreviousSwapLayoutByTabIdAction
impl Debug for Print
impl Debug for Private
impl Debug for PrivateKey
impl Debug for ProcessingError
impl Debug for ProcessingSuccess
impl Debug for ProjectDirs
impl Debug for socket2::Protocol
impl Debug for socket2::Protocol
impl Debug for ProxyType
impl Debug for PtrauthKey
impl Debug for PtyContext
impl Debug for PtyWriteContext
impl Debug for QueryTabNamesAction
impl Debug for QueryTerminalSizeMsg
impl Debug for QueueSelector
impl Debug for QuitAction
impl Debug for QuotationMark
impl Debug for Radical
impl Debug for RandomState
impl Debug for gimli::read::rnglists::Range
impl Debug for RangeError
impl Debug for RangeFull
impl Debug for RawArgs
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for ReadBuf<'_>
impl Debug for std::fs::ReadDir
impl Debug for tokio::fs::read_dir::ReadDir
impl Debug for curl::easy::handler::ReadError
impl Debug for rand::rngs::adapter::read::ReadError
impl Debug for ReadWriteFlags
impl Debug for ReaderOffsetId
impl Debug for tokio::io::ready::Ready
impl Debug for ReadyTimeoutError
impl Debug for RebindKeysPayload
impl Debug for tokio::net::unix::pipe::Receiver
impl Debug for mio::sys::unix::pipe::Receiver
impl Debug for ReconfigurePayload
impl Debug for RecursiveMode
impl Debug for std::sync::mpsc::RecvError
impl Debug for tokio::sync::broadcast::error::RecvError
impl Debug for tokio::sync::oneshot::error::RecvError
impl Debug for tokio::sync::watch::error::RecvError
impl Debug for crossbeam_channel::err::RecvError
impl Debug for async_channel::RecvError
impl Debug for socket2::RecvFlags
impl Debug for socket2::RecvFlags
impl Debug for interprocess::local_socket::stream::enum::RecvHalf
impl Debug for interprocess::local_socket::tokio::stream::enum::RecvHalf
impl Debug for interprocess::os::unix::uds_local_socket::stream::RecvHalf
impl Debug for interprocess::os::unix::uds_local_socket::tokio::stream::RecvHalf
impl Debug for std::sync::mpsc::RecvTimeoutError
impl Debug for crossbeam_channel::err::RecvTimeoutError
impl Debug for interprocess::unnamed_pipe::tokio::Recver
impl Debug for interprocess::unnamed_pipe::Recver
impl Debug for RedirectPolicy
impl Debug for Reference
impl Debug for zellij_tile::prelude::RegexHighlight
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufRegexHighlight
impl Debug for Region
impl Debug for RegionOverride
impl Debug for RegionalIndicator
impl Debug for RegionalSubdivision
impl Debug for Register
impl Debug for Registry
impl Debug for object::xcoff::Rel32
impl Debug for object::xcoff::Rel64
impl Debug for ReloadPluginPayload
impl Debug for object::read::pe::relocation::Relocation
impl Debug for object::read::Relocation
impl Debug for RelocationEncoding
impl Debug for RelocationFlags
impl Debug for RelocationInfo
impl Debug for RelocationKind
impl Debug for RelocationMap
impl Debug for RelocationSections
impl Debug for RelocationTarget
impl Debug for RemoveKind
impl Debug for RenameLayoutPayload
impl Debug for zellij_tile::prelude::RenameLayoutResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufRenameLayoutResponse
impl Debug for RenameMode
impl Debug for RenamePaneByPaneIdAction
impl Debug for RenamePluginPaneAction
impl Debug for RenameSessionAction
impl Debug for RenameTabAction
impl Debug for RenameTabByIdAction
impl Debug for RenameTabWithIdPayload
impl Debug for RenameTerminalPaneAction
impl Debug for RenameWebLoginTokenPayload
impl Debug for RenameWebTokenResponse
impl Debug for RenamedSessionMsg
impl Debug for RenderMsg
impl Debug for zellij_tile::shim::alloc::io::Repeat
impl Debug for tokio::io::util::repeat::Repeat
impl Debug for futures_lite::io::Repeat
impl Debug for ReplacePaneWithExistingPanePayload
impl Debug for miette::eyreish::Report
impl Debug for miette::eyreish::Report
impl Debug for RequestPluginPermissionPayload
impl Debug for RequestSessionListMsg
impl Debug for RequeueOp
impl Debug for RerunCommandPanePayload
impl Debug for ResGid
impl Debug for ResUid
impl Debug for Reset
impl Debug for zellij_tile::prelude::Resize
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufResize
impl Debug for zellij_utils::client_server_contract::client_server_contract::ResizeAction
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufResizeAction
impl Debug for ResizeByPaneIdAction
impl Debug for zellij_tile::prelude::actions::ResizeDirection
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufResizeDirection
impl Debug for ResizePaneIdWithDirectionPayload
impl Debug for ResizePayload
impl Debug for ResizeStrategy
impl Debug for ResizeType
impl Debug for ResolveMap
impl Debug for ResourceName
impl Debug for ResourceNameOrId
impl Debug for zellij_tile::shim::plugin_api::event::pane_scrollback_response::Response
impl Debug for zellij_tile::shim::plugin_api::plugin_command::break_panes_to_tab_with_id_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::get_pane_pid_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::get_pane_running_command_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::get_pane_cwd_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::save_layout_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::delete_layout_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::edit_layout_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::dump_layout_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::dump_session_layout_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::parse_layout_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::rename_layout_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::get_focused_pane_info_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::save_session_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::new_tab_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::new_tab_unfocused_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::focus_or_create_tab_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::break_panes_to_new_tab_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::break_panes_to_tab_with_index_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::show_floating_panes_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::hide_floating_panes_response::Result
impl Debug for zellij_tile::shim::plugin_api::plugin_command::get_session_list_response::Result
impl Debug for ResurrectableSession
impl Debug for tokio::net::tcp::split_owned::ReuniteError
impl Debug for tokio::net::unix::split_owned::ReuniteError
impl Debug for RevokeAllWebTokensResponse
impl Debug for RevokeTokenResponse
impl Debug for RevokeWebLoginTokenPayload
impl Debug for Rfc3339Timestamp
impl Debug for owo_colors::colors::dynamic::Rgb
impl Debug for colorsys::rgb::Rgb
impl Debug for zellij_utils::client_server_contract::client_server_contract::RgbColor
impl Debug for anstyle::color::RgbColor
impl Debug for RgbColorPayload
impl Debug for RgbColors
impl Debug for RgbRatio
impl Debug for RichHeaderEntry
impl Debug for RiscV
impl Debug for Rng
impl Debug for RollingFileAppender
impl Debug for Root
impl Debug for RootBuilder
impl Debug for RoundingError
impl Debug for zellij_utils::client_server_contract::client_server_contract::Run
impl Debug for zellij_utils::input::layout::Run
impl Debug for RunAction
impl Debug for RunActionPayload
impl Debug for RunCommand
impl Debug for zellij_utils::client_server_contract::client_server_contract::RunCommandAction
impl Debug for zellij_tile::prelude::actions::RunCommandAction
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufRunCommandAction
impl Debug for RunCommandPayload
impl Debug for RunCommandResultPayload
impl Debug for zellij_utils::client_server_contract::client_server_contract::RunEditFileAction
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufRunEditFileAction
impl Debug for zellij_utils::client_server_contract::client_server_contract::RunPlugin
impl Debug for zellij_utils::input::layout::RunPlugin
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufRunPlugin
impl Debug for zellij_utils::client_server_contract::client_server_contract::RunPluginLocation
impl Debug for zellij_utils::input::layout::RunPluginLocation
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufRunPluginLocation
impl Debug for zellij_utils::client_server_contract::client_server_contract::RunPluginLocationData
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufRunPluginLocationData
impl Debug for zellij_utils::client_server_contract::client_server_contract::RunPluginOrAlias
impl Debug for zellij_utils::input::layout::RunPluginOrAlias
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufRunPluginOrAlias
impl Debug for RunTimeEndian
impl Debug for zellij_utils::client_server_contract::client_server_contract::run::RunType
impl Debug for zellij_tile::shim::plugin_api::action::RunType
impl Debug for RunningCommand
impl Debug for Runtime
impl Debug for RuntimeFlavor
impl Debug for RuntimeMetrics
impl Debug for SaveLayoutPayload
impl Debug for zellij_tile::prelude::SaveLayoutResponse
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufSaveLayoutResponse
impl Debug for SaveSessionAction
impl Debug for SaveSessionPayload
impl Debug for SaveSessionResponse
impl Debug for ScatteredRelocationInfo
impl Debug for Scheme
impl Debug for std::thread::scoped::Scope<'_, '_>
impl Debug for crossbeam_utils::thread::Scope<'_>
impl Debug for ScreenContext
impl Debug for icu_locale_core::subtags::script::Script
impl Debug for icu_properties::props::Script
impl Debug for ScriptWithExtensions
impl Debug for ScrollAtPayload
impl Debug for ScrollDownAction
impl Debug for ScrollDownAtAction
impl Debug for ScrollDownByPaneIdAction
impl Debug for ScrollDownInPaneIdPayload
impl Debug for ScrollToBottomAction
impl Debug for ScrollToBottomByPaneIdAction
impl Debug for ScrollToBottomInPaneIdPayload
impl Debug for ScrollToNextPromptAction
impl Debug for ScrollToPreviousPromptAction
impl Debug for ScrollToTopAction
impl Debug for ScrollToTopByPaneIdAction
impl Debug for ScrollToTopInPaneIdPayload
impl Debug for ScrollUpAction
impl Debug for ScrollUpAtAction
impl Debug for ScrollUpByPaneIdAction
impl Debug for ScrollUpInPaneIdPayload
impl Debug for SearchAction
impl Debug for zellij_utils::client_server_contract::client_server_contract::SearchDirection
impl Debug for zellij_tile::prelude::actions::SearchDirection
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufSearchDirection
impl Debug for SearchInputAction
impl Debug for zellij_utils::client_server_contract::client_server_contract::SearchOption
impl Debug for zellij_tile::prelude::actions::SearchOption
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufSearchOption
impl Debug for SearchStep
impl Debug for SearchToggleOptionAction
impl Debug for SecondsFormat
impl Debug for SectionBaseAddresses
impl Debug for SectionFlags
impl Debug for object::xcoff::SectionHeader32
impl Debug for object::xcoff::SectionHeader64
impl Debug for SectionId
impl Debug for SectionIndex
impl Debug for SectionKind
impl Debug for SeekFrom
impl Debug for SeekResult
impl Debug for SegmentFlags
impl Debug for SegmentStarter
impl Debug for Select<'_>
impl Debug for SelectCommandAtScrollPositionAction
impl Debug for SelectTimeoutError
impl Debug for SelectedOperation<'_>
impl Debug for zellij_tile::prelude::SelectedText
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufSelectedText
impl Debug for Semaphore
impl Debug for interprocess::local_socket::stream::enum::SendHalf
impl Debug for interprocess::local_socket::tokio::stream::enum::SendHalf
impl Debug for interprocess::os::unix::uds_local_socket::stream::SendHalf
impl Debug for interprocess::os::unix::uds_local_socket::tokio::stream::SendHalf
impl Debug for interprocess::unnamed_pipe::tokio::Sender
impl Debug for interprocess::unnamed_pipe::Sender
impl Debug for tokio::net::unix::pipe::Sender
impl Debug for mio::sys::unix::pipe::Sender
impl Debug for SentenceBreak
impl Debug for SentenceBreakSupressions
impl Debug for SentenceTerminal
impl Debug for ServerContext
impl Debug for zellij_utils::client_server_contract::client_server_contract::ServerToClientMsg
impl Debug for zellij_utils::ipc::ServerToClientMsg
impl Debug for SessionCommand
impl Debug for SessionInfo
impl Debug for zellij_tile::prelude::SessionListSnapshot
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufSessionListSnapshot
impl Debug for SessionManifest
impl Debug for SessionNameMatch
impl Debug for SessionUpdatePayload
impl Debug for Sessions
impl Debug for SetDarkThemeAction
impl Debug for SetFloatingPanePinnedPayload
impl Debug for SetGlobalDefaultError
impl Debug for SetLightThemeAction
impl Debug for SetLoggerError
impl Debug for SetMobileRenderPreferencesMsg
impl Debug for SetPaneBorderlessAction
impl Debug for zellij_tile::shim::plugin_api::generated_api::api::action::SetPaneBorderlessPayload
impl Debug for zellij_tile::shim::plugin_api::plugin_command::SetPaneBorderlessPayload
impl Debug for SetPaneColorAction
impl Debug for SetPaneColorPayload
impl Debug for SetPaneFrameStyleAction
impl Debug for zellij_tile::shim::plugin_api::action::SetPaneFrameStylePayload
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufSetPaneFrameStylePayload
impl Debug for SetPaneRegexHighlightsPayload
impl Debug for SetSelfMouseSelectionSupportPayload
impl Debug for SetSoftKeyboardMsg
impl Debug for SetSoftKeyboardPayload
impl Debug for SetTimeoutPayload
impl Debug for Setup
impl Debug for miette::protocol::Severity
impl Debug for miette::protocol::Severity
impl Debug for Shell
impl Debug for ShortcutUpdate
impl Debug for ShowCursorPayload
impl Debug for ShowFloatingPanesAction
impl Debug for zellij_tile::shim::plugin_api::action::ShowFloatingPanesPayload
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufShowFloatingPanesPayload
impl Debug for ShowFloatingPanesResponse
impl Debug for ShowPaneWithIdPayload
impl Debug for Shutdown
impl Debug for SigId
impl Debug for Sign
impl Debug for Signal
impl Debug for SignalKind
impl Debug for SimdAlign
impl Debug for Simple
impl Debug for SimplexStream
impl Debug for zellij_tile::shim::alloc::io::Sink
impl Debug for tokio::io::util::sink::Sink
impl Debug for futures_lite::io::Sink
impl Debug for SipHasher
impl Debug for SixelSupportMsg
impl Debug for zellij_utils::client_server_contract::client_server_contract::Size
impl Debug for zellij_tile::prelude::Size
impl Debug for zellij_utils::client_server_contract::client_server_contract::SizeInPixels
impl Debug for zellij_utils::pane_size::SizeInPixels
impl Debug for SizeTrigger
impl Debug for zellij_utils::client_server_contract::client_server_contract::split_size::SizeType
impl Debug for zellij_utils::client_server_contract::client_server_contract::percent_or_fixed::SizeType
impl Debug for zellij_tile::shim::plugin_api::generated_api::api::action::percent_or_fixed::SizeType
impl Debug for SkipConfirmAction
impl Debug for Sleep
impl Debug for core::mem::type_info::Slice
impl Debug for socket2::sockaddr::SockAddr
impl Debug for socket2::sockaddr::SockAddr
impl Debug for socket2::sockref::SockRef<'_>
impl Debug for socket2::sockref::SockRef<'_>
impl Debug for socket2::socket::Socket
impl Debug for socket2::socket::Socket
impl Debug for std::os::unix::net::addr::SocketAddr
impl Debug for core::net::socket_addr::SocketAddr
impl Debug for tokio::net::unix::socketaddr::SocketAddr
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for SocketEvents
impl Debug for SoftDotted
impl Debug for SoftKeyboardVisibilityChangedMsg
impl Debug for SoftKeyboardVisibilityChangedPayload
impl Debug for miette::protocol::SourceOffset
impl Debug for miette::protocol::SourceOffset
impl Debug for miette::protocol::SourceSpan
impl Debug for miette::protocol::SourceSpan
impl Debug for Span
impl Debug for SpecialCodeIndex
impl Debug for SpecialCodes
impl Debug for SpecialDirUdSocket
impl Debug for zellij_utils::client_server_contract::client_server_contract::SplitDirection
impl Debug for zellij_utils::input::layout::SplitDirection
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufSplitDirection
impl Debug for SplitPaths<'_>
impl Debug for zellij_utils::client_server_contract::client_server_contract::SplitSize
impl Debug for zellij_utils::input::layout::SplitSize
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufSplitSize
impl Debug for SplitSizeVariant
impl Debug for SslOpt
impl Debug for SslOption
impl Debug for SslVersion
impl Debug for StackDirection
impl Debug for StackPanesAction
impl Debug for StackPanesPayload
impl Debug for zellij_utils::client_server_contract::client_server_contract::StackedPlacement
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufStackedPlacement
impl Debug for Standard
impl Debug for StartOrReloadPluginAction
impl Debug for StartWebServerMsg
impl Debug for StatAux
impl Debug for State
impl Debug for StatusCode
impl Debug for StdRng
impl Debug for std::io::stdio::Stderr
impl Debug for tokio::io::stderr::Stderr
impl Debug for StderrLock<'_>
impl Debug for std::io::stdio::Stdin
impl Debug for tokio::io::stdin::Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdio
impl Debug for std::io::stdio::Stdout
impl Debug for tokio::io::stdout::Stdout
impl Debug for StdoutLock<'_>
impl Debug for StepRng
impl Debug for StoreOnHeap
impl Debug for core::mem::type_info::Str
impl Debug for clap_builder::builder::str::Str
impl Debug for StrSimError
impl Debug for interprocess::local_socket::stream::enum::Stream
impl Debug for interprocess::local_socket::tokio::stream::enum::Stream
impl Debug for interprocess::os::unix::uds_local_socket::stream::Stream
impl Debug for interprocess::os::unix::uds_local_socket::tokio::stream::Stream
impl Debug for supports_hyperlinks::Stream
impl Debug for supports_color::Stream
impl Debug for supports_unicode::Stream
impl Debug for StreamResult
impl Debug for String
impl Debug for StringValueParser
impl Debug for StripBytes
impl Debug for StripPrefixError
impl Debug for StripStr
impl Debug for zellij_utils::client_server_contract::client_server_contract::Style
impl Debug for zellij_tile::prelude::Style
impl Debug for zellij_tile::shim::plugin_api::plugin_command::ProtobufHighlightStyleVariant
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufStyle
impl Debug for anstyle::style::Style
impl Debug for colored::style::Style
impl Debug for owo_colors::dyn_styles::Style
impl Debug for log4rs::encode::Style
impl Debug for StyleDeclaration
impl Debug for StylePrefixFormatter
impl Debug for StyleSuffixFormatter
impl Debug for StyledStr
impl Debug for zellij_tile::prelude::StyledText
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufStyledText
impl Debug for StyledTextIndices
impl Debug for clap_builder::builder::styling::Styles
impl Debug for colored::style::Styles
impl Debug for zellij_utils::client_server_contract::client_server_contract::Styling
impl Debug for zellij_tile::prelude::Styling
impl Debug for zellij_tile::shim::plugin_api::generated_api::api::style::Styling
impl Debug for SubArchitecture
impl Debug for SubdivisionId
impl Debug for SubdivisionSuffix
impl Debug for SubscribeCli
impl Debug for SubscribeFormat
impl Debug for SubscribePayload
impl Debug for SubscribeToPaneRendersMsg
impl Debug for SubscribedPaneClosedMsg
impl Debug for icu_locale_core::extensions::private::other::Subtag
impl Debug for icu_locale_core::subtags::Subtag
impl Debug for zellij_utils::client_server_contract::client_server_contract::SwapFloatingLayout
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufSwapFloatingLayout
impl Debug for zellij_utils::client_server_contract::client_server_contract::SwapTiledLayout
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufSwapTiledLayout
impl Debug for SwitchFocusAction
impl Debug for SwitchModeForAllClientsAction
impl Debug for SwitchSessionAction
impl Debug for SwitchSessionMsg
impl Debug for SwitchSessionPayload
impl Debug for SwitchTabToIdPayload
impl Debug for SwitchTabToPayload
impl Debug for SwitchToModeAction
impl Debug for SwitchToModePayload
impl Debug for backtrace::symbolize::Symbol
impl Debug for Symbol32
impl Debug for Symbol64
impl Debug for SymbolBytes
impl Debug for SymbolIndex
impl Debug for SymbolKind
impl Debug for SymbolScope
impl Debug for SymbolSection
impl Debug for SyntaxError
impl Debug for SyntaxViolation
impl Debug for SysInfo
impl Debug for SysconfVar
impl Debug for System
impl Debug for SystemRng
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for TINFLStatus
impl Debug for TabIdAndName
impl Debug for zellij_tile::prelude::TabInfo
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufTabInfo
impl Debug for zellij_utils::client_server_contract::client_server_contract::TabLayoutInfo
impl Debug for zellij_utils::input::layout::TabLayoutInfo
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufTabLayoutInfo
impl Debug for TabLayoutManifest
impl Debug for zellij_utils::client_server_contract::client_server_contract::TabMetadata
impl Debug for zellij_tile::prelude::TabMetadata
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufTabMetadata
impl Debug for TabNameInputAction
impl Debug for TabUpdatePayload
impl Debug for Table
impl Debug for socket2::TcpKeepalive
impl Debug for socket2::TcpKeepalive
impl Debug for std::net::tcp::TcpListener
impl Debug for tokio::net::tcp::listener::TcpListener
impl Debug for mio::net::tcp::listener::TcpListener
impl Debug for TcpSocket
impl Debug for std::net::tcp::TcpStream
impl Debug for tokio::net::tcp::stream::TcpStream
impl Debug for mio::net::tcp::stream::TcpStream
impl Debug for TerminalAction
impl Debug for TerminalPixelDimensionsMsg
impl Debug for TerminalPunctuation
impl Debug for TerminalResizeMsg
impl Debug for Termios
impl Debug for Text
impl Debug for Theme
impl Debug for ThemeCharacters
impl Debug for zellij_tile::prelude::ThemeHue
impl Debug for zellij_tile::shim::plugin_api::generated_api::api::style::ThemeHue
impl Debug for ThemeStyles
impl Debug for Themes
impl Debug for Thread
impl Debug for ThreadId
impl Debug for ThreadRng
impl Debug for memchr::arch::all::memchr::Three
impl Debug for memchr::arch::x86_64::avx2::memchr::Three
impl Debug for memchr::arch::x86_64::sse2::memchr::Three
impl Debug for zellij_utils::client_server_contract::client_server_contract::TiledPaneLayout
impl Debug for zellij_utils::input::layout::TiledPaneLayout
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufTiledPaneLayout
impl Debug for zellij_utils::client_server_contract::client_server_contract::TiledPlacement
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufTiledPlacement
impl Debug for TimeCondition
impl Debug for TimeDelta
impl Debug for TimeSpec
impl Debug for TimeVal
impl Debug for TimeZoneShortId
impl Debug for uuid::timestamp::Timestamp
impl Debug for humantime::wrapper::Timestamp
impl Debug for ToCasefold
impl Debug for ToLowercase
impl Debug for ToStrError
impl Debug for ToTitlecase
impl Debug for ToUppercase
impl Debug for ToggleActiveSyncTabAction
impl Debug for ToggleActiveSyncTabByTabIdAction
impl Debug for ToggleFloatingPanesAction
impl Debug for ToggleFloatingPanesByTabIdAction
impl Debug for ToggleFloatingPanesPayload
impl Debug for ToggleFocusFullscreenAction
impl Debug for ToggleFocusNoUiFullscreenAction
impl Debug for ToggleFullscreenByPaneIdAction
impl Debug for ToggleGroupMarkingAction
impl Debug for ToggleHostFullscreen
impl Debug for ToggleHostFullscreenAction
impl Debug for ToggleMouseModeAction
impl Debug for ToggleNoUiFullscreenByPaneIdAction
impl Debug for TogglePaneBorderlessAction
impl Debug for TogglePaneBorderlessPayload
impl Debug for TogglePaneEmbedOrEjectForPaneIdPayload
impl Debug for TogglePaneEmbedOrFloatingAction
impl Debug for TogglePaneEmbedOrFloatingByPaneIdAction
impl Debug for TogglePaneFramesAction
impl Debug for TogglePaneIdFullscreenPayload
impl Debug for TogglePaneInGroupAction
impl Debug for TogglePanePinnedAction
impl Debug for TogglePanePinnedByPaneIdAction
impl Debug for ToggleTabAction
impl Debug for ToggleThemeAction
impl Debug for Token
impl Debug for Trailer
impl Debug for Trait
impl Debug for Transform
impl Debug for TrieResult
impl Debug for TrieType
impl Debug for TryAcquireError
impl Debug for TryCurrentError
impl Debug for TryDemangleError
impl Debug for TryFromCharError
impl Debug for TryFromFloatSecsError
impl Debug for TryFromIntError
impl Debug for TryFromSliceError
impl Debug for TryGetError
impl Debug for TryIoError
impl Debug for std::fs::TryLockError
impl Debug for tokio::sync::mutex::TryLockError
impl Debug for TryReadyError
impl Debug for std::sync::mpsc::TryRecvError
impl Debug for tokio::sync::broadcast::error::TryRecvError
impl Debug for tokio::sync::mpsc::error::TryRecvError
impl Debug for tokio::sync::oneshot::error::TryRecvError
impl Debug for crossbeam_channel::err::TryRecvError
impl Debug for async_channel::TryRecvError
impl Debug for TryReserveError
impl Debug for TryReserveErrorKind
impl Debug for TrySelectError
impl Debug for memchr::arch::all::memchr::Two
impl Debug for memchr::arch::x86_64::avx2::memchr::Two
impl Debug for memchr::arch::x86_64::sse2::memchr::Two
impl Debug for core::mem::type_info::Type
impl Debug for socket2::Type
impl Debug for socket2::Type
impl Debug for TypeId
impl Debug for TypeKind
impl Debug for std::os::unix::net::ucred::UCred
impl Debug for tokio::net::unix::ucred::UCred
impl Debug for std::net::udp::UdpSocket
impl Debug for tokio::net::udp::UdpSocket
impl Debug for mio::net::udp::UdpSocket
impl Debug for UiConfig
impl Debug for Uid
impl Debug for UleError
impl Debug for UnblockCliPipeInputMsg
impl Debug for zellij_utils::client_server_contract::client_server_contract::UnblockCondition
impl Debug for zellij_tile::prelude::UnblockCondition
impl Debug for zellij_tile::shim::plugin_api::action::ProtobufUnblockCondition
impl Debug for UnblockInputThreadMsg
impl Debug for UndoRenamePaneAction
impl Debug for UndoRenamePaneByPaneIdAction
impl Debug for UndoRenameTabAction
impl Debug for UndoRenameTabByTabIdAction
impl Debug for Unicode
impl Debug for UnifiedIdeograph
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for UninitSlice
impl Debug for UnitIndexSection
impl Debug for std::os::unix::net::datagram::UnixDatagram
impl Debug for tokio::net::unix::datagram::socket::UnixDatagram
impl Debug for mio::net::uds::datagram::UnixDatagram
impl Debug for std::os::unix::net::listener::UnixListener
impl Debug for tokio::net::unix::listener::UnixListener
impl Debug for mio::net::uds::listener::UnixListener
impl Debug for UnixSocket
impl Debug for std::os::unix::net::stream::UnixStream
impl Debug for tokio::net::unix::stream::UnixStream
impl Debug for mio::net::uds::stream::UnixStream
impl Debug for UnknownArgumentValueParser
impl Debug for UnorderedKeyError
impl Debug for UnparkResult
impl Debug for UnparkToken
impl Debug for crossbeam_utils::sync::parker::Unparker
impl Debug for parking::Unparker
impl Debug for UnsubscribePayload
impl Debug for Uppercase
impl Debug for Uri
impl Debug for Url
Debug the serialization of this URL.
impl Debug for Urn
impl Debug for User
impl Debug for UserActionPayload
impl Debug for UserDirs
impl Debug for Utc
impl Debug for Utf8CharsError
impl Debug for Utf8Chunks<'_>
impl Debug for Utf8Error
impl Debug for Utf8Parser
impl Debug for Uts46Mapper
impl Debug for UtsName
impl Debug for Uuid
impl Debug for VaList<'_>
impl Debug for icu_locale_core::extensions::transform::value::Value
impl Debug for icu_locale_core::extensions::unicode::value::Value
impl Debug for gimli::read::value::Value
impl Debug for serde_json::value::Value
impl Debug for ValueHint
impl Debug for ValueParser
impl Debug for ValueRange
impl Debug for ValueSource
impl Debug for ValueType
impl Debug for VarError
impl Debug for icu_locale_core::subtags::variant::Variant
impl Debug for uuid::Variant
impl Debug for VariantId
impl Debug for Variants
impl Debug for VariationSelector
impl Debug for Vars
impl Debug for VarsOs
impl Debug for Vendor
impl Debug for uuid::Version
impl Debug for curl::version::Version
impl Debug for http::version::Version
impl Debug for VersionIndex
impl Debug for VersionNegotiation
impl Debug for VerticalOrientation
impl Debug for Viewport
impl Debug for WaitFd
impl Debug for WaitForCancellationFutureOwned
impl Debug for WaitGroup
impl Debug for std::sync::WaitTimeoutResult
impl Debug for parking_lot::condvar::WaitTimeoutResult
impl Debug for core::task::wake::Waker
impl Debug for mio::waker::Waker
impl Debug for WalkDir
impl Debug for WatchDescriptor
impl Debug for WatchMask
impl Debug for WatcherKind
impl Debug for Watches
impl Debug for WeakDispatch
impl Debug for WebCli
impl Debug for WebClientConfig
impl Debug for WebClientTheme
impl Debug for WebRequestPayload
impl Debug for WebRequestResultPayload
impl Debug for WebServerStartedMsg
impl Debug for WebServerStatus
impl Debug for WebServerStatusDiscriminants
impl Debug for WebServerStatusIndication
impl Debug for WebServerStatusPayload
impl Debug for zellij_utils::client_server_contract::client_server_contract::WebSharing
impl Debug for zellij_tile::prelude::WebSharing
impl Debug for zellij_tile::shim::plugin_api::event::ProtobufWebSharing
impl Debug for Weekday
impl Debug for WeightedError
impl Debug for WhiteSpace
impl Debug for Width
impl Debug for WinconBytes
impl Debug for Winsize
impl Debug for WordBreak
impl Debug for WordSeparator
impl Debug for WordSplitter
impl Debug for WouldBlock
impl Debug for WrapAlgorithm
impl Debug for WriteAction
impl Debug for WriteCharsAction
impl Debug for WriteCharsPayload
impl Debug for WriteCharsToPaneIdAction
impl Debug for WriteCharsToPaneIdPayload
impl Debug for WriteError
impl Debug for WritePayload
impl Debug for WriteToPaneIdAction
impl Debug for WriteToPaneIdPayload
impl Debug for WriterPanicked
impl Debug for X86
impl Debug for X86_64
impl Debug for XdgDirsIter
impl Debug for Xdigit
impl Debug for XidContinue
impl Debug for XidStart
impl Debug for XtermColors
impl Debug for YieldNow
impl Debug for ZellijError
impl Debug for ZellijVersion
impl Debug for ZeroTrieBuildError
impl Debug for Zsh
impl Debug for __c_anonymous__kernel_fsid_t
impl Debug for __c_anonymous_elf32_rel
impl Debug for __c_anonymous_elf32_rela
impl Debug for __c_anonymous_elf64_rel
impl Debug for __c_anonymous_elf64_rela
impl Debug for __c_anonymous_ifc_ifcu
impl Debug for __c_anonymous_ifr_ifru
impl Debug for __c_anonymous_ifru_map
impl Debug for __c_anonymous_iwreq
impl Debug for __c_anonymous_ptp_perout_request_1
impl Debug for __c_anonymous_ptp_perout_request_2
impl Debug for __c_anonymous_ptrace_syscall_info_data
impl Debug for __c_anonymous_ptrace_syscall_info_entry
impl Debug for __c_anonymous_ptrace_syscall_info_exit
impl Debug for __c_anonymous_ptrace_syscall_info_seccomp
impl Debug for __c_anonymous_sockaddr_can_can_addr
impl Debug for __c_anonymous_sockaddr_can_j1939
impl Debug for __c_anonymous_sockaddr_can_tp
impl Debug for __c_anonymous_xsk_tx_metadata_union
impl Debug for __exit_status
impl Debug for __kernel_fd_set
impl Debug for __kernel_fsid_t
impl Debug for __kernel_itimerspec
impl Debug for __kernel_old_itimerval
impl Debug for __kernel_old_timespec
impl Debug for __kernel_old_timeval
impl Debug for __kernel_sock_timeval
impl Debug for __kernel_timespec
impl Debug for __m128
impl Debug for __m256
impl Debug for __m512
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128h
impl Debug for __m128i
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for __old_kernel_stat
impl Debug for __sifields__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_4
impl Debug for __sifields__bindgen_ty_6
impl Debug for __sifields__bindgen_ty_7
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3
impl Debug for __tile1024i
impl Debug for __timeval
impl Debug for __user_cap_data_struct
impl Debug for __user_cap_header_struct
impl Debug for _libc_fpstate
impl Debug for _libc_fpxreg
impl Debug for _libc_xmmreg
impl Debug for addrinfo
impl Debug for af_alg_iv
impl Debug for aiocb
impl Debug for arpd_request
impl Debug for arphdr
impl Debug for arpreq
impl Debug for arpreq_old
impl Debug for bf16
impl Debug for bool
impl Debug for c_void
impl Debug for cachestat
impl Debug for cachestat_range
impl Debug for can_filter
impl Debug for can_frame
impl Debug for canfd_frame
impl Debug for canxl_frame
impl Debug for char
impl Debug for linux_raw_sys::general::clone_args
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::clone_args
impl Debug for cmsghdr
impl Debug for compat_statfs64
impl Debug for cpu_set_t
impl Debug for dirent
impl Debug for dirent64
impl Debug for dl_phdr_info
impl Debug for linux_raw_sys::general::dmabuf_cmsg
impl Debug for libc::unix::linux_like::linux::dmabuf_cmsg
impl Debug for linux_raw_sys::general::dmabuf_token
impl Debug for libc::unix::linux_like::linux::dmabuf_token
impl Debug for dqblk
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl Debug for dyn Value
impl Debug for linux_raw_sys::general::epoll_event
impl Debug for libc::unix::linux_like::epoll_event
impl Debug for linux_raw_sys::general::epoll_params
impl Debug for libc::unix::linux_like::linux::epoll_params
impl Debug for f16
impl Debug for f32
impl Debug for f64
impl Debug for f128
impl Debug for f_owner_ex
impl Debug for fanotify_event_info_error
impl Debug for fanotify_event_info_fid
impl Debug for fanotify_event_info_header
impl Debug for fanotify_event_info_pidfd
impl Debug for fanotify_event_metadata
impl Debug for fanotify_response
impl Debug for fanout_args
impl Debug for fd_set
impl Debug for ff_condition_effect
impl Debug for ff_constant_effect
impl Debug for ff_effect
impl Debug for ff_envelope
impl Debug for ff_periodic_effect
impl Debug for ff_ramp_effect
impl Debug for ff_replay
impl Debug for ff_rumble_effect
impl Debug for ff_trigger
impl Debug for linux_raw_sys::general::file_clone_range
impl Debug for libc::unix::linux_like::file_clone_range
impl Debug for file_dedupe_range
impl Debug for file_dedupe_range_info
impl Debug for files_stat_struct
impl Debug for linux_raw_sys::general::flock
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::flock
impl Debug for linux_raw_sys::general::flock64
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::flock64
impl Debug for fpos64_t
impl Debug for fpos_t
impl Debug for fs_sysfs_path
impl Debug for fsconfig_command
impl Debug for fscrypt_key
impl Debug for fscrypt_policy_v1
impl Debug for fscrypt_policy_v2
impl Debug for fscrypt_provisioning_key_payload
impl Debug for fsid_t
impl Debug for fstrim_range
impl Debug for fsuuid2
impl Debug for fsxattr
impl Debug for futex_waitv
impl Debug for genlmsghdr
impl Debug for glob64_t
impl Debug for glob_t
impl Debug for group
impl Debug for hostent
impl Debug for hwtstamp_config
impl Debug for i8
impl Debug for i16
impl Debug for i32
impl Debug for i64
impl Debug for i128
impl Debug for if_nameindex
impl Debug for ifaddrs
impl Debug for ifconf
impl Debug for ifreq
impl Debug for in6_addr
impl Debug for in6_ifreq
impl Debug for in6_pktinfo
impl Debug for in6_rtmsg
impl Debug for in_addr
impl Debug for in_pktinfo
impl Debug for inodes_stat_t
impl Debug for linux_raw_sys::general::inotify_event
impl Debug for libc::unix::linux_like::linux::inotify_event
impl Debug for inotify_sys::inotify_event
impl Debug for input_absinfo
impl Debug for input_event
impl Debug for input_id
impl Debug for input_keymap_entry
impl Debug for input_mask
impl Debug for iocb
impl Debug for linux_raw_sys::general::iovec
impl Debug for libc::unix::iovec
impl Debug for ip_mreq
impl Debug for ip_mreq_source
impl Debug for ip_mreqn
impl Debug for ipc_perm
impl Debug for ipv6_mreq
impl Debug for isize
impl Debug for linux_raw_sys::general::itimerspec
impl Debug for libc::unix::linux_like::linux::itimerspec
impl Debug for linux_raw_sys::general::itimerval
impl Debug for libc::unix::itimerval
impl Debug for iw_discarded
impl Debug for iw_encode_ext
impl Debug for iw_event
impl Debug for iw_freq
impl Debug for iw_michaelmicfailure
impl Debug for iw_missed
impl Debug for iw_mlme
impl Debug for iw_param
impl Debug for iw_pmkid_cand
impl Debug for iw_pmksa
impl Debug for iw_point
impl Debug for iw_priv_args
impl Debug for iw_quality
impl Debug for iw_range
impl Debug for iw_scan_req
impl Debug for iw_statistics
impl Debug for iw_thrspy
impl Debug for iwreq
impl Debug for iwreq_data
impl Debug for j1939_filter
impl Debug for kernel_sigaction
impl Debug for kernel_sigset_t
impl Debug for ktermios
impl Debug for lconv
impl Debug for linger
impl Debug for linux_dirent64
impl Debug for mallinfo
impl Debug for mallinfo2
impl Debug for max_align_t
impl Debug for mbstate_t
impl Debug for mcontext_t
impl Debug for membarrier_cmd
impl Debug for membarrier_cmd_flag
impl Debug for mmsghdr
impl Debug for mnt_id_req
impl Debug for mnt_ns_info
impl Debug for mntent
impl Debug for linux_raw_sys::general::mount_attr
impl Debug for libc::unix::linux_like::linux::mount_attr
impl Debug for mq_attr
impl Debug for msghdr
impl Debug for msginfo
impl Debug for msqid_ds
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for ntptimeval
impl Debug for linux_raw_sys::general::open_how
impl Debug for libc::unix::linux_like::linux::open_how
impl Debug for option
impl Debug for packet_mreq
impl Debug for page_region
impl Debug for passwd
impl Debug for pidfd_info
impl Debug for pm_scan_arg
impl Debug for linux_raw_sys::general::pollfd
impl Debug for libc::unix::pollfd
impl Debug for posix_spawn_file_actions_t
impl Debug for posix_spawnattr_t
impl Debug for procmap_query
impl Debug for procmap_query_flags
impl Debug for protoent
impl Debug for pthread_attr_t
impl Debug for pthread_barrier_t
impl Debug for pthread_barrierattr_t
impl Debug for pthread_cond_t
impl Debug for pthread_condattr_t
impl Debug for pthread_mutex_t
impl Debug for pthread_mutexattr_t
impl Debug for pthread_rwlock_t
impl Debug for pthread_rwlockattr_t
impl Debug for ptp_clock_caps
impl Debug for ptp_clock_time
impl Debug for ptp_extts_event
impl Debug for ptp_extts_request
impl Debug for ptp_perout_request
impl Debug for ptp_pin_desc
impl Debug for ptp_sys_offset
impl Debug for ptp_sys_offset_extended
impl Debug for ptp_sys_offset_precise
impl Debug for ptrace_peeksiginfo_args
impl Debug for ptrace_rseq_configuration
impl Debug for ptrace_sud_config
impl Debug for ptrace_syscall_info
impl Debug for rand_pool_info
impl Debug for regex_t
impl Debug for regmatch_t
impl Debug for linux_raw_sys::general::rlimit
impl Debug for libc::unix::rlimit
impl Debug for linux_raw_sys::general::rlimit64
impl Debug for libc::unix::linux_like::linux::rlimit64
impl Debug for robust_list
impl Debug for robust_list_head
impl Debug for rtentry
impl Debug for linux_raw_sys::general::rusage
impl Debug for libc::unix::rusage
impl Debug for sched_attr
impl Debug for sched_param
impl Debug for sctp_authinfo
impl Debug for sctp_initmsg
impl Debug for sctp_nxtinfo
impl Debug for sctp_prinfo
impl Debug for sctp_rcvinfo
impl Debug for sctp_sndinfo
impl Debug for sctp_sndrcvinfo
impl Debug for seccomp_data
impl Debug for seccomp_notif
impl Debug for seccomp_notif_addfd
impl Debug for seccomp_notif_resp
impl Debug for seccomp_notif_sizes
impl Debug for sem_t
impl Debug for sembuf
impl Debug for semid_ds
impl Debug for seminfo
impl Debug for servent
impl Debug for shmid_ds
impl Debug for linux_raw_sys::general::sigaction
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::sigaction
impl Debug for sigaltstack
impl Debug for sigevent
impl Debug for sigevent__bindgen_ty_1__bindgen_ty_1
impl Debug for siginfo_t
impl Debug for signalfd_siginfo
impl Debug for sigset_t
impl Debug for sigval
impl Debug for sock_extended_err
impl Debug for sock_filter
impl Debug for sock_fprog
impl Debug for sock_txtime
impl Debug for sockaddr
impl Debug for sockaddr_alg
impl Debug for sockaddr_can
impl Debug for sockaddr_in
impl Debug for sockaddr_in6
impl Debug for sockaddr_ll
impl Debug for sockaddr_nl
impl Debug for sockaddr_pkt
impl Debug for sockaddr_storage
impl Debug for sockaddr_un
impl Debug for sockaddr_vm
impl Debug for sockaddr_xdp
impl Debug for spwd
impl Debug for stack_t
impl Debug for linux_raw_sys::general::stat
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::stat
impl Debug for stat64
impl Debug for linux_raw_sys::general::statfs
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs
impl Debug for linux_raw_sys::general::statfs64
impl Debug for libc::unix::linux_like::linux::gnu::b64::x86_64::statfs64
impl Debug for statmount
impl Debug for statvfs
impl Debug for statvfs64
impl Debug for linux_raw_sys::general::statx
impl Debug for libc::unix::linux_like::statx
impl Debug for linux_raw_sys::general::statx_timestamp
impl Debug for libc::unix::linux_like::statx_timestamp
impl Debug for str
impl Debug for sysinfo
impl Debug for tcp_info
impl Debug for termio
impl Debug for linux_raw_sys::general::termios
impl Debug for libc::unix::linux_like::linux::gnu::termios
impl Debug for linux_raw_sys::general::termios2
impl Debug for libc::unix::linux_like::linux::arch::generic::termios2
impl Debug for linux_raw_sys::general::timespec
impl Debug for libc::unix::linux_like::linux::gnu::timespec
impl Debug for linux_raw_sys::general::timeval
impl Debug for libc::unix::timeval
impl Debug for timex
impl Debug for linux_raw_sys::general::timezone
impl Debug for libc::unix::linux_like::timezone
impl Debug for tls12_crypto_info_aes_ccm_128
impl Debug for tls12_crypto_info_aes_gcm_128
impl Debug for tls12_crypto_info_aes_gcm_256
impl Debug for tls12_crypto_info_aria_gcm_128
impl Debug for tls12_crypto_info_aria_gcm_256
impl Debug for tls12_crypto_info_chacha20_poly1305
impl Debug for tls12_crypto_info_sm4_ccm
impl Debug for tls12_crypto_info_sm4_gcm
impl Debug for tls_crypto_info
impl Debug for tm
impl Debug for tms
impl Debug for tpacket2_hdr
impl Debug for tpacket3_hdr
impl Debug for tpacket_auxdata
impl Debug for tpacket_bd_header_u
impl Debug for tpacket_bd_ts
impl Debug for tpacket_block_desc
impl Debug for tpacket_hdr
impl Debug for tpacket_hdr_v1
impl Debug for tpacket_hdr_variant1
impl Debug for tpacket_req
impl Debug for tpacket_req3
impl Debug for tpacket_req_u
impl Debug for tpacket_rollover_stats
impl Debug for tpacket_stats
impl Debug for tpacket_stats_v3
impl Debug for tpacket_versions
impl Debug for u8
impl Debug for u16
impl Debug for u32
impl Debug for u64
impl Debug for u128
impl Debug for ucontext_t
impl Debug for ucred
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_2
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_3
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_4
impl Debug for uffd_msg__bindgen_ty_1__bindgen_ty_5
impl Debug for uffdio_api
impl Debug for uffdio_continue
impl Debug for uffdio_copy
impl Debug for uffdio_move
impl Debug for uffdio_poison
impl Debug for uffdio_range
impl Debug for uffdio_register
impl Debug for uffdio_writeprotect
impl Debug for uffdio_zeropage
impl Debug for uinput_abs_setup
impl Debug for uinput_ff_erase
impl Debug for uinput_ff_upload
impl Debug for uinput_setup
impl Debug for uinput_user_dev
impl Debug for user
impl Debug for user_desc
impl Debug for user_fpregs_struct
impl Debug for user_regs_struct
impl Debug for usize
impl Debug for utimbuf
impl Debug for utmpx
impl Debug for utsname
impl Debug for vfs_cap_data
impl Debug for vfs_cap_data__bindgen_ty_1
impl Debug for vfs_ns_cap_data
impl Debug for vfs_ns_cap_data__bindgen_ty_1
impl Debug for vgetrandom_opaque_params
impl Debug for linux_raw_sys::general::winsize
impl Debug for libc::unix::winsize
impl Debug for xattr_args
impl Debug for xdp_desc
impl Debug for xdp_mmap_offsets
impl Debug for xdp_mmap_offsets_v1
impl Debug for xdp_options
impl Debug for xdp_ring_offset
impl Debug for xdp_ring_offset_v1
impl Debug for xdp_statistics
impl Debug for xdp_statistics_v1
impl Debug for xdp_umem_reg
impl Debug for xdp_umem_reg_v1
impl Debug for xsk_tx_metadata
impl Debug for xsk_tx_metadata_completion
impl Debug for xsk_tx_metadata_request
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'bases, R> Debug for EhHdrTableIter<'a, 'bases, R>
impl<'a, 'ctx, R, S> Debug for UnwindTable<'a, 'ctx, R, S>
impl<'a, 'h> Debug for memchr::arch::all::memchr::OneIter<'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::sse2::memchr::OneIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::all::memchr::ThreeIter<'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::sse2::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::TwoIter<'a, 'h>
impl<'a, 'h> Debug for memchr::arch::x86_64::sse2::memchr::TwoIter<'a, 'h>
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, Color, T> Debug for BgColorDisplay<'a, Color, T>
impl<'a, Color, T> Debug for BgDynColorDisplay<'a, Color, T>
impl<'a, Color, T> Debug for FgColorDisplay<'a, Color, T>
impl<'a, Color, T> Debug for FgDynColorDisplay<'a, Color, T>
impl<'a, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
alloc or std only.impl<'a, E> Debug for StrDeserializer<'a, E>
impl<'a, Fg, Bg, T> Debug for ComboColorDisplay<'a, Fg, Bg, T>
impl<'a, Fg, Bg, T> Debug for ComboDynColorDisplay<'a, Fg, Bg, T>
impl<'a, I, A> Debug for zellij_tile::shim::alloc::collections::vec_deque::Splice<'a, I, A>
impl<'a, I, A> Debug for zellij_tile::shim::alloc::vec::Splice<'a, I, A>
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, L> Debug for interprocess::local_socket::listener::trait::Incoming<'a, L>where
L: Debug,
impl<'a, P> Debug for MatchIndices<'a, P>
impl<'a, P> Debug for Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for zellij_tile::shim::alloc::str::RSplit<'a, P>
impl<'a, P> Debug for zellij_tile::shim::alloc::str::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for zellij_tile::shim::alloc::str::Split<'a, P>
impl<'a, P> Debug for zellij_tile::shim::alloc::str::SplitInclusive<'a, P>
impl<'a, P> Debug for zellij_tile::shim::alloc::str::SplitN<'a, P>
impl<'a, P> Debug for SplitTerminator<'a, P>
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::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::mutex::MutexGuard<'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> Debug for CallFrameInstructionIter<'a, R>
impl<'a, R> Debug for EhHdrTable<'a, R>
impl<'a, R> Debug for FillBuf<'a, R>
impl<'a, R> Debug for ReadCacheRange<'a, R>where
R: Debug + ReadCacheOps,
impl<'a, R> Debug for ReadExactFuture<'a, R>
impl<'a, R> Debug for ReadFuture<'a, R>
impl<'a, R> Debug for ReadLineFuture<'a, R>
impl<'a, R> Debug for ReadToEndFuture<'a, R>
impl<'a, R> Debug for ReadToStringFuture<'a, R>
impl<'a, R> Debug for ReadUntilFuture<'a, R>
impl<'a, R> Debug for ReadVectoredFuture<'a, R>
impl<'a, R> Debug for UnitRef<'a, R>
impl<'a, S, F, B> Debug for TryFoldFuture<'a, S, F, B>
impl<'a, S, F> Debug for FindMapFuture<'a, S, F>
impl<'a, S, F> Debug for TryForEachFuture<'a, S, F>
impl<'a, S, P> Debug for AllFuture<'a, S, P>
impl<'a, S, P> Debug for AnyFuture<'a, S, P>
impl<'a, S, P> Debug for FindFuture<'a, S, P>
impl<'a, S, P> Debug for PositionFuture<'a, S, P>
impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>
impl<'a, S> Debug for NextFuture<'a, S>
impl<'a, S> Debug for NthFuture<'a, S>
impl<'a, S> Debug for SeekFuture<'a, S>
impl<'a, S> Debug for TryNextFuture<'a, S>
impl<'a, T, A> Debug for zellij_tile::shim::alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, F> Debug for VarZeroSliceIter<'a, T, F>
impl<'a, T, P> Debug for ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, T> Debug for AsyncFdReadyGuard<'a, T>
impl<'a, T> Debug for AsyncFdReadyMutGuard<'a, T>
impl<'a, T> Debug for BlinkDisplay<'a, T>
impl<'a, T> Debug for BlinkFastDisplay<'a, T>
impl<'a, T> Debug for BoldDisplay<'a, T>
impl<'a, T> Debug for Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for CodePointMapDataBorrowed<'a, T>
impl<'a, T> Debug for DimDisplay<'a, T>
impl<'a, T> Debug for smallvec::Drain<'a, T>
impl<'a, T> Debug for http::header::map::Drain<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::Entry<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for GetAll<'a, T>where
T: Debug,
impl<'a, T> Debug for HiddenDisplay<'a, T>
impl<'a, T> Debug for ItalicDisplay<'a, T>
impl<'a, T> Debug for std::sync::mpmc::Iter<'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 core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for http::header::map::Iter<'a, T>where
T: Debug,
impl<'a, T> Debug for core::result::IterMut<'a, T>where
T: Debug + 'a,
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 tokio::sync::mutex::MappedMutexGuard<'a, T>
impl<'a, T> Debug for http::header::map::OccupiedEntry<'a, T>where
T: Debug,
impl<'a, T> Debug for OnceRef<'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 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 zellij_tile::shim::alloc::collections::btree_set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Recv<'a, T>where
T: Debug,
impl<'a, T> Debug for tokio::sync::watch::Ref<'a, T>where
T: Debug,
impl<'a, T> Debug for ReversedDisplay<'a, T>
impl<'a, T> Debug for RwLockMappedWriteGuard<'a, T>
impl<'a, T> Debug for tokio::sync::rwlock::read_guard::RwLockReadGuard<'a, T>
impl<'a, T> Debug for tokio::sync::rwlock::write_guard::RwLockWriteGuard<'a, T>
impl<'a, T> Debug for Send<'a, T>where
T: Debug,
impl<'a, T> Debug for rand::distributions::slice::Slice<'a, T>where
T: Debug,
impl<'a, T> Debug for StrikeThroughDisplay<'a, T>
impl<'a, T> Debug for std::sync::mpmc::TryIter<'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 UnderlineDisplay<'a, T>
impl<'a, T> Debug for slab::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 ValueDrain<'a, T>where
T: Debug,
impl<'a, T> Debug for ValueIter<'a, T>where
T: Debug,
impl<'a, T> Debug for ValueIterMut<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::Values<'a, T>where
T: Debug,
impl<'a, T> Debug for http::header::map::ValuesMut<'a, T>where
T: Debug,
impl<'a, T> Debug for ValuesRef<'a, T>where
T: Debug,
impl<'a, T> Debug for Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ZeroSliceIter<'a, T>
impl<'a, V> Debug for VarZeroCow<'a, V>
impl<'a, W> Debug for CloseFuture<'a, W>
impl<'a, W> Debug for FlushFuture<'a, W>
impl<'a, W> Debug for WriteAllFuture<'a, W>
impl<'a, W> Debug for WriteFuture<'a, W>
impl<'a, W> Debug for WriteVectoredFuture<'a, W>
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for tracing_core::span::Attributes<'a>
impl<'a> Debug for ByteSerialize<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for zellij_tile::shim::alloc::str::Bytes<'a>
impl<'a> Debug for BytesOrWideString<'a>
impl<'a> Debug for CanonicalCombiningClassMapBorrowed<'a>
impl<'a> Debug for CanonicalCompositionBorrowed<'a>
impl<'a> Debug for CanonicalDecompositionBorrowed<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for CodePointSetDataBorrowed<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for ComposingNormalizerBorrowed<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for DataIdentifierBorrowed<'a>
impl<'a> Debug for DataRequest<'a>
impl<'a> Debug for DecomposingNormalizerBorrowed<'a>
impl<'a> Debug for Demangle<'a>
impl<'a> Debug for include_dir::dir::Dir<'a>
impl<'a> Debug for include_dir::dir_entry::DirEntry<'a>
impl<'a> Debug for EmojiSetDataBorrowed<'a>
impl<'a> Debug for EnterGuard<'a>
impl<'a> Debug for Entered<'a>
impl<'a> Debug for ErrorReportingUtf8Chars<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for zellij_tile::shim::alloc::str::EscapeDebug<'a>
impl<'a> Debug for zellij_tile::shim::alloc::str::EscapeDefault<'a>
impl<'a> Debug for zellij_tile::shim::alloc::str::EscapeUnicode<'a>
impl<'a> Debug for tracing_core::event::Event<'a>
impl<'a> Debug for inotify::events::Events<'a>
impl<'a> Debug for object::read::pe::export::Export<'a>
impl<'a> Debug for ExportTarget<'a>
impl<'a> Debug for include_dir::file::File<'a>
impl<'a> Debug for IdsRef<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for IndexVecIter<'a>
impl<'a> Debug for Indices<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for Item<'a>
impl<'a> Debug for mio::event::events::Iter<'a>
impl<'a> Debug for curl::easy::list::Iter<'a>
impl<'a> Debug for zellij_tile::shim::alloc::str::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for LogFile<'a>
impl<'a> Debug for socket2::MaybeUninitSlice<'a>
impl<'a> Debug for socket2::MaybeUninitSlice<'a>
impl<'a> Debug for curl::multi::Message<'a>
impl<'a> Debug for log::Metadata<'a>
impl<'a> Debug for tracing_core::metadata::Metadata<'a>
impl<'a> Debug for MetadataBuilder<'a>
impl<'a> Debug for miette::protocol::MietteSpanContents<'a>
impl<'a> Debug for miette::protocol::MietteSpanContents<'a>
impl<'a> Debug for MimeIter<'a>
impl<'a> Debug for mime::Name<'a>
impl<'a> Debug for Notified<'a>
impl<'a> Debug for textwrap::options::Options<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for mime::Params<'a>
impl<'a> Debug for PathSegmentsMut<'a>
impl<'a> Debug for PercentDecode<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for Protocols<'a>
impl<'a> Debug for RawValues<'a>
impl<'a> Debug for tokio::net::tcp::split::ReadHalf<'a>
impl<'a> Debug for tokio::net::unix::split::ReadHalf<'a>
impl<'a> Debug for log::Record<'a>
impl<'a> Debug for tracing_core::span::Record<'a>
impl<'a> Debug for RecordBuilder<'a>
impl<'a> Debug for core::error::Request<'a>
impl<'a> Debug for ScriptExtensionsSet<'a>
impl<'a> Debug for ScriptWithExtensionsBorrowed<'a>
impl<'a> Debug for SemaphorePermit<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for SourceFd<'a>
impl<'a> Debug for SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'a>
impl<'a> Debug for StrftimeItems<'a>
impl<'a> Debug for SymbolName<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for UrlQuery<'a>
impl<'a> Debug for Utf8CharIndices<'a>
impl<'a> Debug for Utf8Chars<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Uts46MapperBorrowed<'a>
impl<'a> Debug for ValueSet<'a>
impl<'a> Debug for WaitForCancellationFuture<'a>
impl<'a> Debug for Word<'a>
impl<'a> Debug for tokio::net::tcp::split::WriteHalf<'a>
impl<'a> Debug for tokio::net::unix::split::WriteHalf<'a>
impl<'a> Debug for ZeroAsciiIgnoreCaseTrieCursor<'a>
impl<'a> Debug for ZeroTrieSimpleAsciiCursor<'a>
impl<'abbrev, 'entry, 'unit, R> Debug for AttrsIter<'abbrev, 'entry, 'unit, R>
impl<'abbrev, 'unit, 'tree, R> Debug for EntriesTreeIter<'abbrev, 'unit, 'tree, R>
impl<'abbrev, 'unit, 'tree, R> Debug for EntriesTreeNode<'abbrev, 'unit, 'tree, R>
impl<'abbrev, 'unit, R, Offset> Debug for DebuggingInformationEntry<'abbrev, 'unit, R, Offset>
impl<'abbrev, 'unit, R> Debug for EntriesCursor<'abbrev, 'unit, R>
impl<'abbrev, 'unit, R> Debug for EntriesRaw<'abbrev, 'unit, R>
impl<'abbrev, 'unit, R> Debug for EntriesTree<'abbrev, 'unit, R>
impl<'bases, Section, R> Debug for CfiEntriesIter<'bases, Section, R>
impl<'bases, Section, R> Debug for CieOrFde<'bases, Section, R>
impl<'bases, Section, R> Debug for PartialFrameDescriptionEntry<'bases, Section, R>where
Section: Debug + UnwindSection<R>,
R: Debug + Reader,
<R as Reader>::Offset: Debug,
<Section as UnwindSection<R>>::Offset: Debug,
impl<'c> Debug for ResponseFuture<'c>
impl<'data, 'cache, E, R> Debug for DyldCacheImage<'data, 'cache, E, R>
impl<'data, 'cache, E, R> Debug for DyldCacheImageIterator<'data, 'cache, E, R>
impl<'data, 'file, Elf, R> Debug for ElfComdat<'data, 'file, Elf, R>where
Elf: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Elf as FileHeader>::SectionHeader: Debug,
<Elf as FileHeader>::Endian: Debug,
impl<'data, 'file, Elf, R> Debug for ElfComdatIterator<'data, 'file, Elf, R>where
Elf: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Elf as FileHeader>::SectionHeader: Debug,
impl<'data, 'file, Elf, R> Debug for ElfComdatSectionIterator<'data, 'file, Elf, R>
impl<'data, 'file, Elf, R> Debug for ElfDynamicRelocationIterator<'data, 'file, Elf, R>where
Elf: FileHeader,
R: ReadRef<'data>,
impl<'data, 'file, Elf, R> Debug for ElfSection<'data, 'file, Elf, R>where
Elf: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Elf as FileHeader>::SectionHeader: Debug,
impl<'data, 'file, Elf, R> Debug for ElfSectionIterator<'data, 'file, Elf, R>where
Elf: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Elf as FileHeader>::SectionHeader: Debug,
impl<'data, 'file, Elf, R> Debug for ElfSectionRelocationIterator<'data, 'file, Elf, R>where
Elf: FileHeader,
R: ReadRef<'data>,
impl<'data, 'file, Elf, R> Debug for ElfSegment<'data, 'file, Elf, R>where
Elf: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Elf as FileHeader>::ProgramHeader: Debug,
impl<'data, 'file, Elf, R> Debug for ElfSegmentIterator<'data, 'file, Elf, R>where
Elf: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Elf as FileHeader>::ProgramHeader: Debug,
impl<'data, 'file, Elf, R> Debug for ElfSymbol<'data, 'file, Elf, R>where
Elf: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Elf as FileHeader>::Endian: Debug,
<Elf as FileHeader>::Sym: Debug,
impl<'data, 'file, Elf, R> Debug for ElfSymbolIterator<'data, 'file, Elf, R>where
Elf: FileHeader,
R: ReadRef<'data>,
impl<'data, 'file, Elf, R> Debug for ElfSymbolTable<'data, 'file, Elf, R>
impl<'data, 'file, Mach, R> Debug for MachOComdat<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> Debug for MachOComdatIterator<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> Debug for MachOComdatSectionIterator<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> Debug for MachORelocationIterator<'data, 'file, Mach, R>where
Mach: MachHeader,
R: ReadRef<'data>,
impl<'data, 'file, Mach, R> Debug for MachOSection<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> Debug for MachOSectionIterator<'data, 'file, Mach, R>where
Mach: MachHeader,
R: ReadRef<'data>,
impl<'data, 'file, Mach, R> Debug for MachOSegment<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> Debug for MachOSegmentIterator<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> Debug for MachOSymbol<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> Debug for MachOSymbolIterator<'data, 'file, Mach, R>where
Mach: MachHeader,
R: ReadRef<'data>,
impl<'data, 'file, Mach, R> Debug for MachOSymbolTable<'data, 'file, Mach, R>
impl<'data, 'file, Pe, R> Debug for PeComdat<'data, 'file, Pe, R>
impl<'data, 'file, Pe, R> Debug for PeComdatIterator<'data, 'file, Pe, R>
impl<'data, 'file, Pe, R> Debug for PeComdatSectionIterator<'data, 'file, Pe, R>
impl<'data, 'file, Pe, R> Debug for PeSection<'data, 'file, Pe, R>
impl<'data, 'file, Pe, R> Debug for PeSectionIterator<'data, 'file, Pe, R>
impl<'data, 'file, Pe, R> Debug for PeSegment<'data, 'file, Pe, R>
impl<'data, 'file, Pe, R> Debug for PeSegmentIterator<'data, 'file, Pe, R>
impl<'data, 'file, R, Coff> Debug for CoffComdat<'data, 'file, R, Coff>where
R: Debug + ReadRef<'data>,
Coff: Debug + CoffHeader,
<Coff as CoffHeader>::ImageSymbol: Debug,
impl<'data, 'file, R, Coff> Debug for CoffComdatIterator<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> Debug for CoffComdatSectionIterator<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> Debug for CoffRelocationIterator<'data, 'file, R, Coff>where
R: ReadRef<'data>,
Coff: CoffHeader,
impl<'data, 'file, R, Coff> Debug for CoffSection<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> Debug for CoffSectionIterator<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> Debug for CoffSegment<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> Debug for CoffSegmentIterator<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> Debug for CoffSymbol<'data, 'file, R, Coff>where
R: Debug + ReadRef<'data>,
Coff: Debug + CoffHeader,
<Coff as CoffHeader>::ImageSymbol: Debug,
impl<'data, 'file, R, Coff> Debug for CoffSymbolIterator<'data, 'file, R, Coff>where
R: ReadRef<'data>,
Coff: CoffHeader,
impl<'data, 'file, R, Coff> Debug for CoffSymbolTable<'data, 'file, R, Coff>
impl<'data, 'file, R> Debug for Comdat<'data, 'file, R>where
R: ReadRef<'data>,
impl<'data, 'file, R> Debug for ComdatIterator<'data, 'file, R>
impl<'data, 'file, R> Debug for ComdatSectionIterator<'data, 'file, R>
impl<'data, 'file, R> Debug for DynamicRelocationIterator<'data, 'file, R>
impl<'data, 'file, R> Debug for PeRelocationIterator<'data, 'file, R>where
R: Debug,
impl<'data, 'file, R> Debug for Section<'data, 'file, R>where
R: ReadRef<'data>,
impl<'data, 'file, R> Debug for SectionIterator<'data, 'file, R>
impl<'data, 'file, R> Debug for SectionRelocationIterator<'data, 'file, R>
impl<'data, 'file, R> Debug for Segment<'data, 'file, R>where
R: ReadRef<'data>,
impl<'data, 'file, R> Debug for SegmentIterator<'data, 'file, R>
impl<'data, 'file, R> Debug for object::read::any::Symbol<'data, 'file, R>where
R: ReadRef<'data>,
impl<'data, 'file, R> Debug for object::read::any::SymbolIterator<'data, 'file, R>
impl<'data, 'file, R> Debug for object::read::any::SymbolTable<'data, 'file, R>
impl<'data, 'file, Xcoff, R> Debug for XcoffComdat<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> Debug for XcoffComdatIterator<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> Debug for XcoffComdatSectionIterator<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> Debug for XcoffRelocationIterator<'data, 'file, Xcoff, R>where
Xcoff: FileHeader,
R: ReadRef<'data>,
impl<'data, 'file, Xcoff, R> Debug for XcoffSection<'data, 'file, Xcoff, R>where
Xcoff: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Xcoff as FileHeader>::SectionHeader: Debug,
impl<'data, 'file, Xcoff, R> Debug for XcoffSectionIterator<'data, 'file, Xcoff, R>where
Xcoff: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Xcoff as FileHeader>::SectionHeader: Debug,
impl<'data, 'file, Xcoff, R> Debug for XcoffSegment<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> Debug for XcoffSegmentIterator<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> Debug for XcoffSymbol<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> Debug for XcoffSymbolIterator<'data, 'file, Xcoff, R>where
Xcoff: FileHeader,
R: ReadRef<'data>,
impl<'data, 'file, Xcoff, R> Debug for XcoffSymbolTable<'data, 'file, Xcoff, R>
impl<'data, 'table, R, Coff> Debug for object::read::coff::symbol::SymbolIterator<'data, 'table, R, Coff>
impl<'data, 'table, Xcoff, R> Debug for object::read::xcoff::symbol::SymbolIterator<'data, 'table, Xcoff, R>
impl<'data, E, R> Debug for DyldCache<'data, E, R>
impl<'data, E, R> Debug for DyldCacheMapping<'data, E, R>
impl<'data, E, R> Debug for DyldCacheMappingIterator<'data, E, R>
impl<'data, E, R> Debug for DyldCacheRelocationIterator<'data, E, R>
impl<'data, E> Debug for DyldCacheMappingSlice<'data, E>
impl<'data, E> Debug for DyldCacheSlideInfo<'data, E>
impl<'data, E> Debug for DyldSubCacheSlice<'data, E>
impl<'data, E> Debug for LoadCommandData<'data, E>
impl<'data, E> Debug for LoadCommandIterator<'data, E>
impl<'data, E> Debug for LoadCommandVariant<'data, E>
impl<'data, Elf, R> Debug for ElfFile<'data, Elf, R>where
Elf: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Elf as FileHeader>::Endian: Debug,
<Elf as FileHeader>::ProgramHeader: Debug,
impl<'data, Elf, R> Debug for object::read::elf::section::SectionTable<'data, Elf, R>where
Elf: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Elf as FileHeader>::SectionHeader: Debug,
impl<'data, Elf, R> Debug for object::read::elf::symbol::SymbolTable<'data, Elf, R>where
Elf: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Elf as FileHeader>::Sym: Debug,
<Elf as FileHeader>::Endian: Debug,
impl<'data, Elf> Debug for AttributesSection<'data, Elf>
impl<'data, Elf> Debug for AttributesSubsection<'data, Elf>
impl<'data, Elf> Debug for AttributesSubsectionIterator<'data, Elf>
impl<'data, Elf> Debug for AttributesSubsubsectionIterator<'data, Elf>
impl<'data, Elf> Debug for GnuHashTable<'data, Elf>
impl<'data, Elf> Debug for HashTable<'data, Elf>
impl<'data, Elf> Debug for Note<'data, Elf>
impl<'data, Elf> Debug for NoteIterator<'data, Elf>
impl<'data, Elf> Debug for RelrIterator<'data, Elf>where
Elf: Debug + FileHeader,
<Elf as FileHeader>::Word: Debug,
<Elf as FileHeader>::Relr: Debug,
<Elf as FileHeader>::Endian: Debug,
impl<'data, Elf> Debug for VerdauxIterator<'data, Elf>
impl<'data, Elf> Debug for VerdefIterator<'data, Elf>
impl<'data, Elf> Debug for VernauxIterator<'data, Elf>
impl<'data, Elf> Debug for VerneedIterator<'data, Elf>
impl<'data, Elf> Debug for VersionTable<'data, Elf>
impl<'data, Endian> Debug for GnuPropertyIterator<'data, Endian>
impl<'data, Fat> Debug for MachOFatFile<'data, Fat>
impl<'data, I> Debug for Composition<'data, I>
impl<'data, I> Debug for Decomposition<'data, I>
impl<'data, Mach, R> Debug for MachOFile<'data, Mach, R>
impl<'data, Mach, R> Debug for object::read::macho::symbol::SymbolTable<'data, Mach, R>
impl<'data, Pe, R> Debug for PeFile<'data, Pe, R>
impl<'data, R, Coff> Debug for CoffFile<'data, R, Coff>
impl<'data, R, Coff> Debug for object::read::coff::symbol::SymbolTable<'data, R, Coff>where
R: Debug + ReadRef<'data>,
Coff: Debug + CoffHeader,
<Coff as CoffHeader>::ImageSymbolBytes: Debug,
impl<'data, R> Debug for ArchiveFile<'data, R>
impl<'data, R> Debug for ArchiveMemberIterator<'data, R>
impl<'data, R> Debug for object::read::any::File<'data, R>
impl<'data, R> Debug for StringTable<'data, R>
impl<'data, T> Debug for PropertyCodePointMap<'data, T>
impl<'data, Xcoff, R> Debug for object::read::xcoff::symbol::SymbolTable<'data, Xcoff, R>
impl<'data, Xcoff, R> Debug for XcoffFile<'data, Xcoff, R>where
Xcoff: Debug + FileHeader,
R: Debug + ReadRef<'data>,
<Xcoff as FileHeader>::AuxHeader: Debug,
impl<'data, Xcoff> Debug for object::read::xcoff::section::SectionTable<'data, Xcoff>
impl<'data> Debug for ArchiveMember<'data>
impl<'data> Debug for ArchiveSymbol<'data>
impl<'data> Debug for ArchiveSymbolIterator<'data>
impl<'data> Debug for AttributeIndexIterator<'data>
impl<'data> Debug for AttributeReader<'data>
impl<'data> Debug for AttributesSubsubsection<'data>
impl<'data> Debug for object::read::util::Bytes<'data>
impl<'data> Debug for CanonicalCompositions<'data>
impl<'data> Debug for Char16Trie<'data>
impl<'data> Debug for CodePointInversionList<'data>
impl<'data> Debug for CodePointInversionListAndStringList<'data>
impl<'data> Debug for CodeView<'data>
impl<'data> Debug for CompressedData<'data>
impl<'data> Debug for CrelIterator<'data>
impl<'data> Debug for DataDirectories<'data>
impl<'data> Debug for DecompositionData<'data>
impl<'data> Debug for DecompositionTables<'data>
impl<'data> Debug for DelayLoadDescriptorIterator<'data>
impl<'data> Debug for DelayLoadImportTable<'data>
impl<'data> Debug for object::read::Export<'data>
impl<'data> Debug for ExportTable<'data>
impl<'data> Debug for GnuProperty<'data>
impl<'data> Debug for object::read::pe::import::Import<'data>
impl<'data> Debug for object::read::Import<'data>
impl<'data> Debug for ImportDescriptorIterator<'data>
impl<'data> Debug for ImportFile<'data>
impl<'data> Debug for ImportName<'data>
impl<'data> Debug for ImportObjectData<'data>
impl<'data> Debug for ImportTable<'data>
impl<'data> Debug for ImportThunkList<'data>
impl<'data> Debug for NonRecursiveDecompositionSupplement<'data>
impl<'data> Debug for ObjectMap<'data>
impl<'data> Debug for ObjectMapEntry<'data>
impl<'data> Debug for ObjectMapFile<'data>
impl<'data> Debug for PropertyCodePointSet<'data>
impl<'data> Debug for PropertyEnumToValueNameLinearMap<'data>
impl<'data> Debug for PropertyScriptToIcuScriptMap<'data>
impl<'data> Debug for PropertyUnicodeSet<'data>
impl<'data> Debug for PropertyValueNameToEnumMap<'data>
impl<'data> Debug for RelocationBlockIterator<'data>
impl<'data> Debug for RelocationIterator<'data>
impl<'data> Debug for ResourceDirectory<'data>
impl<'data> Debug for ResourceDirectoryEntryData<'data>
impl<'data> Debug for ResourceDirectoryTable<'data>
impl<'data> Debug for RichHeaderInfo<'data>
impl<'data> Debug for ScriptWithExtensionsProperty<'data>
impl<'data> Debug for object::read::coff::section::SectionTable<'data>
impl<'data> Debug for SymbolMapName<'data>
impl<'data> Debug for object::read::elf::version::Version<'data>
impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>
impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>
impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
impl<'e, E, R> Debug for DecoderReader<'e, E, R>
impl<'e, E, W> Debug for EncoderWriter<'e, E, W>
impl<'easy, 'data> Debug for Transfer<'easy, 'data>
impl<'form, 'data> Debug for curl::easy::form::Part<'form, 'data>
impl<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'index, R> Debug for UnitIndexSectionIterator<'index, R>
impl<'input, Endian> Debug for EndianSlice<'input, Endian>where
Endian: Endianity,
impl<'iter, T> Debug for RegisterRuleIter<'iter, T>where
T: Debug + ReaderOffset,
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, 'ctx, T> Debug for AsyncAsSync<'r, 'ctx, T>where
T: Debug,
impl<'s> Debug for interprocess::local_socket::name::Name<'s>
impl<'s> Debug for ParsedArg<'s>
impl<'s> Debug for ShortFlags<'s>
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<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env>
impl<'scope, T> Debug for std::thread::scoped::ScopedJoinHandle<'scope, T>
impl<'trie, T> Debug for CodePointTrie<'trie, T>
impl<'trie, T> Debug for FastCodePointTrie<'trie, T>
impl<'trie, T> Debug for SmallCodePointTrie<'trie, T>
impl<A, B, C, D, E, F, Format> Debug for Tuple6VarULE<A, B, C, D, E, F, Format>
impl<A, B, C, D, E, F> Debug for Tuple6ULE<A, B, C, D, E, F>
impl<A, B, C, D, E, Format> Debug for Tuple5VarULE<A, B, C, D, E, Format>
impl<A, B, C, D, E> Debug for Tuple5ULE<A, B, C, D, E>
impl<A, B, C, D, Format> Debug for Tuple4VarULE<A, B, C, D, Format>
impl<A, B, C, D> Debug for Tuple4ULE<A, B, C, D>
impl<A, B, C, Format> Debug for Tuple3VarULE<A, B, C, Format>
impl<A, B, C> Debug for Tuple3ULE<A, B, C>
impl<A, B, Format> Debug for Tuple2VarULE<A, B, Format>
impl<A, B> Debug for core::iter::adapters::chain::Chain<A, B>
impl<A, B> Debug for Tuple2ULE<A, B>
impl<A, B> Debug for VarTuple<A, B>
impl<A, B> Debug for futures_lite::stream::Zip<A, B>
impl<A, B> Debug for core::iter::adapters::zip::Zip<A, B>
impl<A, T, F> Debug for arc_swap::access::Map<A, T, F>
impl<A, T, F> Debug for MapCache<A, T, F>
impl<A, T> Debug for Cache<A, T>
impl<A, V> Debug for VarTupleULE<A, V>
impl<A> Debug for EnumAccessDeserializer<A>where
A: Debug,
impl<A> Debug for smallvec::IntoIter<A>
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for MapAccessDeserializer<A>where
A: Debug,
impl<A> Debug for OptionFlatten<A>where
A: Debug,
impl<A> Debug for RangeFromIter<A>where
A: Debug,
impl<A> Debug for RangeInclusiveIter<A>where
A: Debug,
impl<A> Debug for core::range::iter::RangeIter<A>where
A: Debug,
impl<A> Debug for core::iter::sources::repeat::Repeat<A>where
A: Debug,
impl<A> Debug for RepeatN<A>where
A: Debug,
impl<A> Debug for SeqAccessDeserializer<A>where
A: Debug,
impl<A> Debug for SmallVec<A>
impl<B, C> Debug for ControlFlow<B, C>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for bitflags::traits::Flag<B>where
B: Debug,
impl<B> Debug for zellij_tile::shim::alloc::io::Lines<B>where
B: Debug,
impl<B> Debug for Reader<B>where
B: Debug,
impl<B> Debug for zellij_tile::shim::alloc::io::Split<B>where
B: Debug,
impl<B> Debug for Writer<B>where
B: Debug,
impl<C0, C1> Debug for EitherCart<C0, C1>
impl<C> Debug for CartableOptionPointer<C>
impl<C> Debug for anstyle_parse::Parser<C>where
C: Debug,
impl<C> Debug for ThreadLocalContext<C>
impl<D, F, T, S> Debug for DistMap<D, F, T, S>
impl<D, R, T> Debug for DistIter<D, R, T>
impl<DataStruct> Debug for ErasedMarker<DataStruct>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for BoolDeserializer<E>
impl<E> Debug for BuildToolVersion<E>
impl<E> Debug for BuildVersionCommand<E>
impl<E> Debug for CharDeserializer<E>
impl<E> Debug for CompressionHeader32<E>
impl<E> Debug for CompressionHeader64<E>
impl<E> Debug for DataInCodeEntry<E>
impl<E> Debug for DyldCacheHeader<E>
impl<E> Debug for DyldCacheImageInfo<E>
impl<E> Debug for DyldCacheMappingAndSlideInfo<E>
impl<E> Debug for DyldCacheMappingInfo<E>
impl<E> Debug for DyldCacheSlideInfo2<E>
impl<E> Debug for DyldCacheSlideInfo3<E>
impl<E> Debug for DyldCacheSlideInfo5<E>
impl<E> Debug for DyldInfoCommand<E>
impl<E> Debug for DyldSubCacheEntryV1<E>
impl<E> Debug for DyldSubCacheEntryV2<E>
impl<E> Debug for Dylib<E>
impl<E> Debug for DylibCommand<E>
impl<E> Debug for DylibModule32<E>
impl<E> Debug for DylibModule64<E>
impl<E> Debug for DylibReference<E>
impl<E> Debug for DylibTableOfContents<E>
impl<E> Debug for DylinkerCommand<E>
impl<E> Debug for Dyn32<E>
impl<E> Debug for Dyn64<E>
impl<E> Debug for DysymtabCommand<E>
impl<E> Debug for EncryptionInfoCommand32<E>
impl<E> Debug for EncryptionInfoCommand64<E>
impl<E> Debug for EntryPointCommand<E>
impl<E> Debug for EnumValueParser<E>
impl<E> Debug for Err<E>where
E: Debug,
impl<E> Debug for F32Deserializer<E>
impl<E> Debug for F64Deserializer<E>
impl<E> Debug for object::elf::FileHeader32<E>
impl<E> Debug for object::elf::FileHeader64<E>
impl<E> Debug for FilesetEntryCommand<E>
impl<E> Debug for FvmfileCommand<E>
impl<E> Debug for Fvmlib<E>
impl<E> Debug for FvmlibCommand<E>
impl<E> Debug for GnuHashHeader<E>
impl<E> Debug for HashHeader<E>
impl<E> Debug for I8Deserializer<E>
impl<E> Debug for I16Bytes<E>where
E: Endian,
impl<E> Debug for I16Deserializer<E>
impl<E> Debug for I32Bytes<E>where
E: Endian,
impl<E> Debug for I32Deserializer<E>
impl<E> Debug for I64Bytes<E>where
E: Endian,
impl<E> Debug for I64Deserializer<E>
impl<E> Debug for I128Deserializer<E>
impl<E> Debug for IdentCommand<E>
impl<E> Debug for IsizeDeserializer<E>
impl<E> Debug for LcStr<E>
impl<E> Debug for LinkeditDataCommand<E>
impl<E> Debug for LinkerOptionCommand<E>
impl<E> Debug for LoadCommand<E>
impl<E> Debug for LookupError<E>where
E: Debug,
impl<E> Debug for MachHeader32<E>
impl<E> Debug for MachHeader64<E>
impl<E> Debug for Nlist32<E>
impl<E> Debug for Nlist64<E>
impl<E> Debug for NoteCommand<E>
impl<E> Debug for NoteHeader32<E>
impl<E> Debug for NoteHeader64<E>
impl<E> Debug for PrebindCksumCommand<E>
impl<E> Debug for PreboundDylibCommand<E>
impl<E> Debug for ProgramHeader32<E>
impl<E> Debug for ProgramHeader64<E>
impl<E> Debug for object::elf::Rel32<E>
impl<E> Debug for object::elf::Rel64<E>
impl<E> Debug for Rela32<E>
impl<E> Debug for Rela64<E>
impl<E> Debug for object::macho::Relocation<E>
impl<E> Debug for Relr32<E>
impl<E> Debug for Relr64<E>
impl<E> Debug for std::error::Report<E>
impl<E> Debug for RoutinesCommand32<E>
impl<E> Debug for RoutinesCommand64<E>
impl<E> Debug for RpathCommand<E>
impl<E> Debug for Section32<E>
impl<E> Debug for Section64<E>
impl<E> Debug for object::elf::SectionHeader32<E>
impl<E> Debug for object::elf::SectionHeader64<E>
impl<E> Debug for SegmentCommand32<E>
impl<E> Debug for SegmentCommand64<E>
impl<E> Debug for SourceVersionCommand<E>
impl<E> Debug for StringDeserializer<E>
alloc or std only.impl<E> Debug for SubClientCommand<E>
impl<E> Debug for SubFrameworkCommand<E>
impl<E> Debug for SubLibraryCommand<E>
impl<E> Debug for SubUmbrellaCommand<E>
impl<E> Debug for Sym32<E>
impl<E> Debug for Sym64<E>
impl<E> Debug for Syminfo32<E>
impl<E> Debug for Syminfo64<E>
impl<E> Debug for SymsegCommand<E>
impl<E> Debug for SymtabCommand<E>
impl<E> Debug for ThreadCommand<E>
impl<E> Debug for TwolevelHint<E>
impl<E> Debug for TwolevelHintsCommand<E>
impl<E> Debug for U8Deserializer<E>
impl<E> Debug for U16Bytes<E>where
E: Endian,
impl<E> Debug for U16Deserializer<E>
impl<E> Debug for U32Bytes<E>where
E: Endian,
impl<E> Debug for U32Deserializer<E>
impl<E> Debug for U64Bytes<E>where
E: Endian,
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 UuidCommand<E>
impl<E> Debug for Verdaux<E>
impl<E> Debug for Verdef<E>
impl<E> Debug for Vernaux<E>
impl<E> Debug for Verneed<E>
impl<E> Debug for VersionMinCommand<E>
impl<E> Debug for Versym<E>
impl<F1, F2> Debug for futures_lite::future::Or<F1, F2>
impl<F1, F2> Debug for futures_lite::future::Race<F1, F2>
impl<F1, F2> Debug for TryZip<F1, F2>
impl<F1, F2> Debug for futures_lite::future::Zip<F1, F2>
impl<F> Debug for CatchUnwind<F>where
F: Debug,
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for clap_builder::error::Error<F>where
F: ErrorFormatter,
impl<F> Debug for Fwhere
F: FnPtr,
impl<F> Debug for core::iter::sources::from_fn::FromFn<F>
impl<F> Debug for zellij_tile::shim::alloc::fmt::FromFn<F>
impl<F> Debug for OnceFuture<F>where
F: Debug,
impl<F> Debug for OnceWith<F>
impl<F> Debug for core::future::poll_fn::PollFn<F>
impl<F> Debug for futures_lite::future::PollFn<F>
impl<F> Debug for futures_lite::stream::PollFn<F>
impl<F> Debug for PollOnce<F>
impl<F> Debug for core::iter::sources::repeat_with::RepeatWith<F>
impl<F> Debug for futures_lite::stream::RepeatWith<F>where
F: Debug,
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<H> Debug for Easy2<H>where
H: Debug,
impl<H> Debug for Easy2Handle<H>where
H: Debug,
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
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, G> Debug for IntersperseWith<I, G>
impl<I, P> Debug for core::iter::adapters::filter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for FilterEntry<I, P>
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, St, F> Debug for core::iter::adapters::scan::Scan<I, St, F>
impl<I, U, F> Debug for core::iter::adapters::flatten::FlatMap<I, U, F>
impl<I, U> Debug for core::iter::adapters::flatten::Flatten<I>
impl<I, const N: usize> Debug for ArrayChunks<I, N>
impl<I> Debug for core::iter::adapters::cloned::Cloned<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::copied::Copied<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::cycle::Cycle<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for DelayedFormat<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::enumerate::Enumerate<I>where
I: Debug,
impl<I> Debug for nom::error::Error<I>where
I: Debug,
impl<I> Debug for FromIter<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 futures_lite::stream::Iter<I>where
I: Debug,
impl<I> Debug for tokio_stream::iter::Iter<I>where
I: Debug,
impl<I> Debug for Peekable<I>
impl<I> Debug for core::iter::adapters::skip::Skip<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::step_by::StepBy<I>where
I: Debug,
impl<I> Debug for core::iter::adapters::take::Take<I>where
I: Debug,
impl<Idx> Debug for Clamp<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::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::RangeToInclusive<Idx>where
Idx: Debug,
impl<K, A> Debug for zellij_tile::shim::alloc::collections::btree_set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for zellij_tile::shim::alloc::collections::btree_set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, A> Debug for std::collections::hash::set::Drain<'_, K, A>
impl<K, A> Debug for std::collections::hash::set::IntoIter<K, A>
impl<K, F, A> Debug for std::collections::hash::set::ExtractIf<'_, K, F, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for zellij_tile::shim::alloc::collections::btree_map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for zellij_tile::shim::alloc::collections::btree_map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::Drain<'_, K, V, A>
impl<K, V, A> Debug for zellij_tile::shim::alloc::collections::btree_map::Entry<'_, K, V, A>
impl<K, V, A> Debug for zellij_tile::shim::alloc::collections::btree_map::IntoIter<K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::IntoIter<K, V, A>
impl<K, V, A> Debug for zellij_tile::shim::alloc::collections::btree_map::IntoKeys<K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for zellij_tile::shim::alloc::collections::btree_map::IntoValues<K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::IntoValues<K, V, A>
impl<K, V, A> Debug for zellij_tile::shim::alloc::collections::btree_map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for zellij_tile::shim::alloc::collections::btree_map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for zellij_tile::shim::alloc::collections::btree_map::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for std::collections::hash::map::VacantEntry<'_, K, V, A>
impl<K, V, F, A> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F, A>
impl<K, V, R, F, A> Debug for zellij_tile::shim::alloc::collections::btree_map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S, A> Debug for HashMap<K, V, S, A>
impl<K, V, S> Debug for litemap::map::Entry<'_, 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> Debug for zellij_tile::shim::alloc::collections::btree_map::Cursor<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for zellij_tile::shim::alloc::collections::btree_map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for zellij_tile::shim::alloc::collections::btree_map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for zellij_tile::shim::alloc::collections::btree_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for zellij_tile::shim::alloc::collections::btree_map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for StreamMap<K, V>
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for zellij_tile::shim::alloc::collections::btree_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 zellij_tile::shim::alloc::collections::btree_map::ValuesMut<'_, K, V>where
V: Debug,
impl<K> Debug for zellij_tile::shim::alloc::collections::btree_set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<L, R> Debug for Either<L, R>
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<M> Debug for 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 DataRef<M>
impl<M> Debug for DataResponse<M>where
M: DynamicDataMarker,
&'a <<M as DynamicDataMarker>::DataStruct as Yokeable<'a>>::Output: for<'a> Debug,
impl<Offset> Debug for UnitType<Offset>where
Offset: Debug + ReaderOffset,
impl<P, F> Debug for MapValueParser<P, F>
impl<P, F> Debug for TryMapValueParser<P, F>
impl<P> Debug for MaybeDangling<P>
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<R1, R2> Debug for futures_lite::io::Chain<R1, R2>
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, Offset> Debug for AddrHeader<R, Offset>
impl<R, Offset> Debug for ArangeHeader<R, Offset>
impl<R, Offset> Debug for AttributeValue<R, Offset>
impl<R, Offset> Debug for CommonInformationEntry<R, Offset>
impl<R, Offset> Debug for CompleteLineProgram<R, Offset>
impl<R, Offset> Debug for FileEntry<R, Offset>
impl<R, Offset> Debug for FrameDescriptionEntry<R, Offset>
impl<R, Offset> Debug for IncompleteLineProgram<R, Offset>
impl<R, Offset> Debug for LineInstruction<R, Offset>
impl<R, Offset> Debug for LineProgramHeader<R, Offset>
impl<R, Offset> Debug for gimli::read::op::Location<R, Offset>
impl<R, Offset> Debug for MacroEntry<R, Offset>
impl<R, Offset> Debug for MacroString<R, Offset>
impl<R, Offset> Debug for Operation<R, Offset>
impl<R, Offset> Debug for Piece<R, Offset>
impl<R, Offset> Debug for Unit<R, Offset>
impl<R, Offset> Debug for UnitHeader<R, Offset>
impl<R, Program, Offset> Debug for LineRows<R, Program, Offset>where
R: Debug + Reader<Offset = Offset>,
Program: Debug + LineProgram<R, Offset>,
Offset: Debug + ReaderOffset,
impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>
impl<R, S> Debug for Evaluation<R, S>where
R: Debug + Reader,
S: Debug + EvaluationStorage<R>,
<S as EvaluationStorage<R>>::Stack: Debug,
<S as EvaluationStorage<R>>::ExpressionStack: Debug,
<S as EvaluationStorage<R>>::Result: Debug,
impl<R, S> Debug for interprocess::error::ReuniteError<R, S>
impl<R, T> Debug for lock_api::mutex::Mutex<R, T>
impl<R, T> Debug for RelocateReader<R, T>
impl<R, T> Debug for lock_api::rwlock::RwLock<R, T>
impl<R, W> Debug for Join<R, W>
impl<R> Debug for AddrEntryIter<R>
impl<R> Debug for AddrHeaderIter<R>
impl<R> Debug for ArangeEntryIter<R>
impl<R> Debug for ArangeHeaderIter<R>
impl<R> Debug for gimli::read::unit::Attribute<R>
impl<R> Debug for BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for zellij_tile::shim::alloc::io::BufReader<R>
impl<R> Debug for tokio::io::util::buf_reader::BufReader<R>where
R: Debug,
impl<R> Debug for futures_lite::io::BufReader<R>where
R: Debug,
impl<R> Debug for zellij_tile::shim::alloc::io::Bytes<R>where
R: Debug,
impl<R> Debug for futures_lite::io::Bytes<R>where
R: Debug,
impl<R> Debug for DebugAbbrev<R>where
R: Debug,
impl<R> Debug for DebugAddr<R>where
R: Debug,
impl<R> Debug for DebugAranges<R>where
R: Debug,
impl<R> Debug for DebugCuIndex<R>where
R: Debug,
impl<R> Debug for DebugFrame<R>
impl<R> Debug for DebugInfo<R>where
R: Debug,
impl<R> Debug for DebugInfoUnitHeadersIter<R>
impl<R> Debug for DebugLine<R>where
R: Debug,
impl<R> Debug for DebugLineStr<R>where
R: Debug,
impl<R> Debug for DebugLoc<R>where
R: Debug,
impl<R> Debug for DebugLocLists<R>where
R: Debug,
impl<R> Debug for DebugMacinfo<R>where
R: Debug,
impl<R> Debug for DebugMacro<R>where
R: Debug,
impl<R> Debug for DebugPubNames<R>
impl<R> Debug for DebugPubTypes<R>
impl<R> Debug for DebugRanges<R>where
R: Debug,
impl<R> Debug for DebugRngLists<R>where
R: Debug,
impl<R> Debug for DebugStr<R>where
R: Debug,
impl<R> Debug for DebugStrOffsets<R>where
R: Debug,
impl<R> Debug for DebugTuIndex<R>where
R: Debug,
impl<R> Debug for DebugTypes<R>where
R: Debug,
impl<R> Debug for DebugTypesUnitHeadersIter<R>
impl<R> Debug for Dwarf<R>where
R: Debug,
impl<R> Debug for DwarfPackage<R>
impl<R> Debug for EhFrame<R>
impl<R> Debug for EhFrameHdr<R>
impl<R> Debug for EvaluationResult<R>
impl<R> Debug for Expression<R>
impl<R> Debug for LineInstructions<R>
impl<R> Debug for LineSequence<R>
impl<R> Debug for tokio::io::util::lines::Lines<R>where
R: Debug,
impl<R> Debug for futures_lite::io::Lines<R>where
R: Debug,
impl<R> Debug for LocListIter<R>
impl<R> Debug for LocationListEntry<R>
impl<R> Debug for LocationLists<R>where
R: Debug,
impl<R> Debug for MacroIter<R>
impl<R> Debug for OperationIter<R>
impl<R> Debug for ParsedEhFrameHdr<R>
impl<R> Debug for PubNamesEntry<R>
impl<R> Debug for PubNamesEntryIter<R>
impl<R> Debug for PubTypesEntry<R>
impl<R> Debug for PubTypesEntryIter<R>
impl<R> Debug for gimli::read::dwarf::RangeIter<R>
impl<R> Debug for RangeLists<R>where
R: Debug,
impl<R> Debug for RawLocListEntry<R>
impl<R> Debug for RawLocListIter<R>
impl<R> Debug for RawRngListIter<R>
impl<R> Debug for ReadCache<R>where
R: Debug + ReadCacheOps,
impl<R> Debug for ReadRng<R>where
R: Debug,
impl<R> Debug for ReaderStream<R>where
R: Debug,
impl<R> Debug for RngListIter<R>
impl<R> Debug for tokio::io::util::split::Split<R>where
R: Debug,
impl<R> Debug for futures_lite::io::Split<R>where
R: Debug,
impl<R> Debug for tokio::io::util::take::Take<R>where
R: Debug,
impl<R> Debug for futures_lite::io::Take<R>where
R: Debug,
impl<R> Debug for UnitIndex<R>
impl<RW> Debug for BufStream<RW>where
RW: Debug,
impl<S1, S2> Debug for futures_lite::stream::Or<S1, S2>
impl<S1, S2> Debug for futures_lite::stream::Race<S1, S2>
impl<S, B> Debug for StreamReader<S, B>
impl<S, C> Debug for CollectFuture<S, C>
impl<S, C> Debug for TryCollectFuture<S, C>
impl<S, E> Debug for interprocess::error::ConversionError<S, E>
impl<S, F, Fut> Debug for futures_lite::stream::Then<S, F, Fut>
impl<S, F, T> Debug for FoldFuture<S, F, T>
impl<S, F> Debug for futures_lite::stream::FilterMap<S, F>
impl<S, F> Debug for ForEachFuture<S, F>
impl<S, F> Debug for futures_lite::stream::Inspect<S, F>
impl<S, F> Debug for futures_lite::stream::Map<S, F>
impl<S, FromA, FromB> Debug for UnzipFuture<S, FromA, FromB>
impl<S, P, B> Debug for PartitionFuture<S, P, B>
impl<S, P> Debug for futures_lite::stream::Filter<S, P>
impl<S, P> Debug for futures_lite::stream::SkipWhile<S, P>
impl<S, P> Debug for futures_lite::stream::TakeWhile<S, P>
impl<S, St, F> Debug for futures_lite::stream::Scan<S, St, F>
impl<S, U, F> Debug for futures_lite::stream::FlatMap<S, U, F>
impl<S, U> Debug for futures_lite::stream::Chain<S, U>
impl<S> Debug for AutoStream<S>
impl<S> Debug for futures_lite::stream::BlockOn<S>where
S: Debug,
impl<S> Debug for ChunksTimeout<S>
impl<S> Debug for futures_lite::stream::Cloned<S>where
S: Debug,
impl<S> Debug for futures_lite::stream::Copied<S>where
S: Debug,
impl<S> Debug for CopyToBytes<S>where
S: Debug,
impl<S> Debug for CountFuture<S>
impl<S> Debug for futures_lite::stream::Cycle<S>where
S: Debug,
impl<S> Debug for futures_lite::stream::Enumerate<S>where
S: Debug,
impl<S> Debug for inotify::events::Event<S>where
S: Debug,
impl<S> Debug for futures_lite::stream::Flatten<S>
impl<S> Debug for futures_lite::stream::Fuse<S>where
S: Debug,
impl<S> Debug for Host<S>where
S: Debug,
impl<S> Debug for LastFuture<S>
impl<S> Debug for miette::named_source::NamedSource<S>where
S: SourceCode,
impl<S> Debug for SinkWriter<S>where
S: Debug,
impl<S> Debug for futures_lite::stream::Skip<S>where
S: Debug,
impl<S> Debug for futures_lite::stream::StepBy<S>where
S: Debug,
impl<S> Debug for StripStream<S>
impl<S> Debug for futures_lite::stream::Take<S>where
S: Debug,
impl<S> Debug for tokio_stream::stream_ext::timeout::Timeout<S>where
S: Debug,
impl<S> Debug for TimeoutRepeating<S>where
S: Debug,
impl<Section, Symbol> Debug for SymbolFlags<Section, Symbol>
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, Fut, F> Debug for tokio_stream::stream_ext::then::Then<St, Fut, F>where
St: Debug,
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<Storage> Debug for __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<T, A> Debug for Arc<T, A>
impl<T, A> Debug for BTreeSet<T, A>
impl<T, A> Debug for BinaryHeap<T, A>
impl<T, A> Debug for Box<T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::linked_list::Cursor<'_, T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::linked_list::CursorMut<'_, T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::btree_set::Difference<'_, T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::vec_deque::Drain<'_, T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::vec::Drain<'_, T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::btree_set::Entry<'_, T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::btree_set::Intersection<'_, T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::binary_heap::IntoIter<T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::linked_list::IntoIter<T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::vec_deque::IntoIter<T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::vec::IntoIter<T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::btree_set::IntoIter<T, A>
impl<T, A> Debug for IntoIterSorted<T, A>
impl<T, A> Debug for LinkedList<T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::btree_set::OccupiedEntry<'_, T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::vec::PeekMut<'_, T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::binary_heap::PeekMut<'_, T, A>
impl<T, A> Debug for Rc<T, A>
impl<T, A> Debug for UniqueArc<T, A>
impl<T, A> Debug for UniqueRc<T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::collections::btree_set::VacantEntry<'_, T, A>
impl<T, A> Debug for Vec<T, A>
impl<T, A> Debug for VecDeque<T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::rc::Weak<T, A>
impl<T, A> Debug for zellij_tile::shim::alloc::sync::Weak<T, A>
impl<T, E> Debug for core::result::Result<T, E>
impl<T, F, A> Debug for zellij_tile::shim::alloc::collections::linked_list::ExtractIf<'_, T, F, A>
impl<T, F, A> Debug for zellij_tile::shim::alloc::collections::vec_deque::ExtractIf<'_, T, F, A>
impl<T, F, A> Debug for zellij_tile::shim::alloc::vec::ExtractIf<'_, T, F, A>
impl<T, F, Fut> Debug for TryUnfold<T, F, Fut>
impl<T, F, Fut> Debug for Unfold<T, F, Fut>
impl<T, F, S> Debug for ScopeGuard<T, F, S>
impl<T, F> Debug for core::mem::drop_guard::DropGuard<T, F>
impl<T, F> Debug for once_cell::unsync::Lazy<T, F>where
T: Debug,
impl<T, F> Debug for once_cell::sync::Lazy<T, F>where
T: Debug,
impl<T, F> Debug for LazyCell<T, F>where
T: Debug,
impl<T, F> Debug for LazyLock<T, F>where
T: Debug,
impl<T, F> Debug for Successors<T, F>where
T: Debug,
impl<T, F> Debug for TaskLocalFuture<T, F>where
T: 'static + Debug,
impl<T, F> Debug for VarZeroSlice<T, F>
impl<T, F> Debug for VarZeroVec<'_, T, F>
impl<T, P> Debug for CompareExchangeError<'_, T, P>
impl<T, P> Debug for zellij_tile::shim::alloc::slice::RSplit<'_, T, P>
impl<T, P> Debug for RSplitMut<'_, T, P>
impl<T, P> Debug for zellij_tile::shim::alloc::slice::RSplitN<'_, T, P>
impl<T, P> Debug for RSplitNMut<'_, T, P>
impl<T, P> Debug for zellij_tile::shim::alloc::slice::Split<'_, T, P>
impl<T, P> Debug for zellij_tile::shim::alloc::slice::SplitInclusive<'_, T, P>
impl<T, P> Debug for SplitInclusiveMut<'_, T, P>
impl<T, P> Debug for SplitMut<'_, T, P>
impl<T, P> Debug for zellij_tile::shim::alloc::slice::SplitN<'_, T, P>
impl<T, P> Debug for SplitNMut<'_, T, P>
impl<T, R, F, A> Debug for zellij_tile::shim::alloc::collections::btree_set::ExtractIf<'_, T, R, F, A>
impl<T, S, A> Debug for std::collections::hash::set::Difference<'_, T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::Entry<'_, T, S, A>
impl<T, S, A> Debug for HashSet<T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::Intersection<'_, T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::OccupiedEntry<'_, T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::SymmetricDifference<'_, T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::Union<'_, T, S, A>
impl<T, S, A> Debug for std::collections::hash::set::VacantEntry<'_, T, S, A>
impl<T, S> Debug for ArcSwapAny<T, S>
impl<T, S> Debug for arc_swap::Guard<T, S>
impl<T, S> Debug for UnwindContext<T, S>where
T: ReaderOffset,
S: UnwindContextStorage<T>,
impl<T, S> Debug for UnwindTableRow<T, S>where
T: ReaderOffset,
S: UnwindContextStorage<T>,
impl<T, U> Debug for zellij_tile::shim::alloc::io::Chain<T, U>
impl<T, U> Debug for zellij_tile::shim::bytes::buf::Chain<T, U>
impl<T, U> Debug for OwnedMappedMutexGuard<T, U>
impl<T, U> Debug for OwnedRwLockMappedWriteGuard<T, U>
impl<T, U> Debug for OwnedRwLockReadGuard<T, U>
impl<T, const N: usize, A> Debug for BoxedArrayIntoIter<T, N, A>
impl<T, const N: usize> Debug for core::array::iter::IntoIter<T, N>where
T: Debug,
impl<T, const N: usize> Debug for Mask<T, N>where
T: MaskElement + Debug,
impl<T, const N: usize> Debug for Simd<T, N>where
T: SimdElement + Debug,
impl<T, const N: usize> Debug for [T; N]where
T: Debug,
impl<T, const VARIANT: u32, const FIELD: u32> Debug for FieldRepresentingType<T, VARIANT, FIELD>where
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for ArrayQueue<T>
impl<T> Debug for AssertAsync<T>where
T: Debug,
impl<T> Debug for AssertUnwindSafe<T>where
T: Debug,
impl<T> Debug for AsyncFd<T>
impl<T> Debug for AsyncFdTryNewError<T>
impl<T> Debug for core::sync::atomic::Atomic<*mut T>
target_has_atomic_load_store=ptr only.impl<T> Debug for crossbeam_epoch::atomic::Atomic<T>
impl<T> Debug for AtomicCell<T>
impl<T> Debug for futures_lite::io::BlockOn<T>where
T: Debug,
impl<T> Debug for BorrowedBuf<'_, T>
impl<T> Debug for BorrowedCursor<'_, T>
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for CachePadded<T>where
T: Debug,
impl<T> Debug for CallFrameInstruction<T>where
T: Debug + ReaderOffset,
impl<T> Debug for Cell<T>
impl<T> Debug for CfaRule<T>where
T: Debug + ReaderOffset,
impl<T> Debug for CodePointMapData<T>
impl<T> Debug for CodePointMapRange<T>where
T: Debug,
impl<T> Debug for Compat<T>where
T: Debug,
impl<T> Debug for Complex<T>where
T: Debug,
impl<T> Debug for ConcurrentQueue<T>
impl<T> Debug for Constant<T>where
T: Debug,
impl<T> Debug for CovariantUnsafeCell<T>where
T: ?Sized,
impl<T> Debug for zellij_tile::shim::alloc::io::Cursor<T>where
T: Debug,
impl<T> Debug for futures_lite::io::Cursor<T>where
T: Debug,
impl<T> Debug for DebugAbbrevOffset<T>where
T: Debug,
impl<T> Debug for DebugAddrBase<T>where
T: Debug,
impl<T> Debug for DebugAddrIndex<T>where
T: Debug,
impl<T> Debug for DebugAddrOffset<T>where
T: Debug,
impl<T> Debug for DebugArangesOffset<T>where
T: Debug,
impl<T> Debug for DebugFrameOffset<T>where
T: Debug,
impl<T> Debug for DebugInfoOffset<T>where
T: Debug,
impl<T> Debug for DebugLineOffset<T>where
T: Debug,
impl<T> Debug for DebugLineStrOffset<T>where
T: Debug,
impl<T> Debug for DebugLocListsBase<T>where
T: Debug,
impl<T> Debug for DebugLocListsIndex<T>where
T: Debug,
impl<T> Debug for DebugMacinfoOffset<T>where
T: Debug,
impl<T> Debug for DebugMacroOffset<T>where
T: Debug,
impl<T> Debug for DebugRngListsBase<T>where
T: Debug,
impl<T> Debug for DebugRngListsIndex<T>where
T: Debug,
impl<T> Debug for DebugStrOffset<T>where
T: Debug,
impl<T> Debug for DebugStrOffsetsBase<T>where
T: Debug,
impl<T> Debug for DebugStrOffsetsIndex<T>where
T: Debug,
impl<T> Debug for DebugTypesOffset<T>where
T: Debug,
impl<T> Debug for DebugValue<T>where
T: Debug,
impl<T> Debug for DieReference<T>where
T: Debug,
impl<T> Debug for Discriminant<T>
impl<T> Debug for DisplayValue<T>where
T: Display,
impl<T> Debug for slab::Drain<'_, T>
impl<T> Debug for DwarfPackageSections<T>where
T: Debug,
impl<T> Debug for DwarfSections<T>where
T: Debug,
impl<T> Debug for EhFrameOffset<T>where
T: Debug,
impl<T> Debug for core::iter::sources::empty::Empty<T>
impl<T> Debug for futures_lite::stream::Empty<T>where
T: Debug,
impl<T> Debug for tokio_stream::empty::Empty<T>where
T: Debug,
impl<T> Debug for tokio_stream::stream_ext::fuse::Fuse<T>where
T: Debug,
impl<T> Debug for HeaderMap<T>where
T: Debug,
impl<T> Debug for Injector<T>
impl<T> Debug for tracing_futures::Instrumented<T>where
T: Debug,
impl<T> Debug for tracing::instrument::Instrumented<T>where
T: Debug,
impl<T> Debug for crossbeam_channel::channel::IntoIter<T>
impl<T> Debug for std::sync::mpmc::IntoIter<T>where
T: Debug,
impl<T> Debug for std::sync::mpsc::IntoIter<T>where
T: Debug,
impl<T> Debug for core::result::IntoIter<T>where
T: Debug,
impl<T> Debug for zellij_tile::shim::bytes::buf::IntoIter<T>where
T: Debug,
impl<T> Debug for slab::IntoIter<T>where
T: Debug,
impl<T> Debug for http::header::map::IntoIter<T>where
T: Debug,
impl<T> Debug for crossbeam_channel::channel::Iter<'_, T>
impl<T> Debug for zellij_tile::shim::alloc::slice::Iter<'_, T>where
T: Debug,
impl<T> Debug for zellij_tile::shim::alloc::collections::binary_heap::Iter<'_, T>where
T: Debug,
impl<T> Debug for zellij_tile::shim::alloc::collections::btree_set::Iter<'_, T>where
T: Debug,
impl<T> Debug for zellij_tile::shim::alloc::collections::linked_list::Iter<'_, T>where
T: Debug,
impl<T> Debug for zellij_tile::shim::alloc::collections::vec_deque::Iter<'_, T>where
T: Debug,
impl<T> Debug for slab::Iter<'_, T>where
T: Debug,
impl<T> Debug for zellij_tile::shim::alloc::slice::IterMut<'_, T>where
T: Debug,
impl<T> Debug for zellij_tile::shim::alloc::collections::linked_list::IterMut<'_, T>where
T: Debug,
impl<T> Debug for zellij_tile::shim::alloc::collections::vec_deque::IterMut<'_, T>where
T: Debug,
impl<T> Debug for slab::IterMut<'_, T>where
T: Debug,
impl<T> Debug for std::thread::join_handle::JoinHandle<T>
impl<T> Debug for tokio::runtime::task::join::JoinHandle<T>where
T: Debug,
impl<T> Debug for JoinSet<T>
impl<T> Debug for Limit<T>where
T: Debug,
impl<T> Debug for std::thread::local::LocalKey<T>where
T: 'static,
impl<T> Debug for tokio::task::task_local::LocalKey<T>where
T: 'static,
impl<T> Debug for LocalResult<T>where
T: Debug,
impl<T> Debug for LocationListsOffset<T>where
T: Debug,
impl<T> Debug for LossyWrap<T>where
T: Debug,
impl<T> Debug for ManuallyDrop<T>
impl<T> Debug for std::sync::nonpoison::mutex::MappedMutexGuard<'_, T>
impl<T> Debug for std::sync::poison::mutex::MappedMutexGuard<'_, T>
impl<T> Debug for std::sync::nonpoison::rwlock::MappedRwLockReadGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::MappedRwLockReadGuard<'_, T>
impl<T> Debug for std::sync::nonpoison::rwlock::MappedRwLockWriteGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::MappedRwLockWriteGuard<'_, T>
impl<T> Debug for MaybeUninit<T>
impl<T> Debug for std::sync::nonpoison::mutex::Mutex<T>
impl<T> Debug for std::sync::poison::mutex::Mutex<T>
impl<T> Debug for tokio::sync::mutex::Mutex<T>
impl<T> Debug for std::sync::nonpoison::mutex::MutexGuard<'_, T>
impl<T> Debug for std::sync::poison::mutex::MutexGuard<'_, T>
impl<T> Debug for tokio::sync::mutex::MutexGuard<'_, T>
impl<T> Debug for NonNull<T>where
T: ?Sized,
impl<T> Debug for NonZero<T>where
T: ZeroablePrimitive + Debug,
impl<T> Debug for NumBuffer<T>where
T: NumBufferTrait,
impl<T> Debug for core::iter::sources::once::Once<T>where
T: Debug,
impl<T> Debug for futures_lite::stream::Once<T>where
T: Debug,
impl<T> Debug for tokio_stream::once::Once<T>where
T: Debug,
impl<T> Debug for OnceBox<T>
impl<T> Debug for core::cell::once::OnceCell<T>where
T: Debug,
impl<T> Debug for tokio::sync::once_cell::OnceCell<T>where
T: Debug,
impl<T> Debug for once_cell::unsync::OnceCell<T>where
T: Debug,
impl<T> Debug for once_cell::sync::OnceCell<T>where
T: Debug,
impl<T> Debug for OnceLock<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Owned<T>
impl<T> Debug for OwnedMutexGuard<T>
impl<T> Debug for OwnedPermit<T>
impl<T> Debug for OwnedRwLockWriteGuard<T>
impl<T> Debug for core::future::pending::Pending<T>
impl<T> Debug for futures_lite::future::Pending<T>
impl<T> Debug for futures_lite::stream::Pending<T>where
T: Debug,
impl<T> Debug for tokio_stream::pending::Pending<T>where
T: Debug,
impl<T> Debug for Permit<'_, T>
impl<T> Debug for PermitIterator<'_, T>
impl<T> Debug for PhantomContravariant<T>where
T: ?Sized,
impl<T> Debug for PhantomCovariant<T>where
T: ?Sized,
impl<T> Debug for PhantomData<T>where
T: ?Sized,
impl<T> Debug for PhantomInvariant<T>where
T: ?Sized,
impl<T> Debug for PoisonError<T>
impl<T> Debug for core::task::poll::Poll<T>where
T: Debug,
impl<T> Debug for PollSendError<T>where
T: Debug,
impl<T> Debug for PollSender<T>where
T: Debug,
impl<T> Debug for Port<T>where
T: Debug,
impl<T> Debug for PropertyNamesLong<T>where
T: NamedEnumeratedProperty,
impl<T> Debug for PropertyNamesShort<T>where
T: NamedEnumeratedProperty,
impl<T> Debug for PropertyParser<T>where
T: Debug,
impl<T> Debug for PushError<T>where
T: Debug,
impl<T> Debug for RangeListsOffset<T>where
T: Debug,
impl<T> Debug for RangedI64ValueParser<T>
impl<T> Debug for RangedU64ValueParser<T>
impl<T> Debug for RawRangeListsOffset<T>where
T: Debug,
impl<T> Debug for RawRngListEntry<T>where
T: Debug,
impl<T> Debug for tokio::io::split::ReadHalf<T>where
T: Debug,
impl<T> Debug for futures_lite::io::ReadHalf<T>where
T: Debug,
impl<T> Debug for core::future::ready::Ready<T>where
T: Debug,
impl<T> Debug for futures_lite::future::Ready<T>where
T: Debug,
impl<T> Debug for std::sync::mpmc::Receiver<T>
impl<T> Debug for std::sync::mpsc::Receiver<T>
impl<T> Debug for std::sync::oneshot::Receiver<T>
impl<T> Debug for tokio::sync::broadcast::Receiver<T>
impl<T> Debug for tokio::sync::mpsc::bounded::Receiver<T>
impl<T> Debug for crossbeam_channel::channel::Receiver<T>
impl<T> Debug for async_channel::Receiver<T>
impl<T> Debug for tokio::sync::oneshot::Receiver<T>where
T: Debug,
impl<T> Debug for tokio::sync::watch::Receiver<T>where
T: Debug,
impl<T> Debug for ReceiverStream<T>where
T: Debug,
impl<T> Debug for std::sync::oneshot::RecvTimeoutError<T>
impl<T> Debug for ReentrantLock<T>
impl<T> Debug for ReentrantLockGuard<'_, T>
impl<T> Debug for core::cell::Ref<'_, T>
impl<T> Debug for RefCell<T>
impl<T> Debug for RefMut<'_, T>
impl<T> Debug for RegisterRule<T>where
T: Debug + ReaderOffset,
impl<T> Debug for futures_lite::stream::Repeat<T>where
T: Debug,
impl<T> Debug for http::request::Request<T>where
T: Debug,
impl<T> Debug for Resettable<T>where
T: Debug,
impl<T> Debug for http::response::Response<T>where
T: Debug,
impl<T> Debug for ReusableBoxFuture<'_, T>
impl<T> Debug for Rev<T>where
T: Debug,
impl<T> Debug for Reverse<T>where
T: Debug,
impl<T> Debug for std::sync::nonpoison::rwlock::RwLock<T>
impl<T> Debug for std::sync::poison::rwlock::RwLock<T>
impl<T> Debug for tokio::sync::rwlock::RwLock<T>
impl<T> Debug for std::sync::nonpoison::rwlock::RwLockReadGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::RwLockReadGuard<'_, T>
impl<T> Debug for std::sync::nonpoison::rwlock::RwLockWriteGuard<'_, T>
impl<T> Debug for std::sync::poison::rwlock::RwLockWriteGuard<'_, T>
impl<T> Debug for Saturating<T>where
T: Debug,
impl<T> Debug for crossbeam_utils::thread::ScopedJoinHandle<'_, T>
impl<T> Debug for SegQueue<T>
impl<T> Debug for std::sync::mpsc::SendError<T>
impl<T> Debug for tokio::sync::mpsc::error::SendError<T>
impl<T> Debug for tokio::sync::watch::error::SendError<T>
impl<T> Debug for crossbeam_channel::err::SendError<T>
impl<T> Debug for async_channel::SendError<T>
impl<T> Debug for tokio::sync::broadcast::error::SendError<T>where
T: Debug,
impl<T> Debug for std::sync::mpmc::error::SendTimeoutError<T>
impl<T> Debug for tokio::sync::mpsc::error::SendTimeoutError<T>
time only.