pub trait Debug {
// Required method
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}Expand description
? formatting.
Debug should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive a Debug implementation.
When used with the alternate format specifier #?, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive] if all fields implement Debug. When
derived for structs, it will use the name of the struct, then {, then a
comma-separated list of each field’s name and Debug value, then }. For
enums, it will use the name of the variant and, if applicable, (, then the
Debug values of the fields, then ).
§Stability
Derived Debug formats are not stable, and so may change with future Rust
versions. Additionally, Debug implementations of types provided by the
standard library (std, core, alloc, etc.) are not stable, and
may also change with future Rust versions.
§Examples
Deriving an implementation:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);Manually implementing:
use std::fmt;
struct Point {
x: i32,
y: i32,
}
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Point")
.field("x", &self.x)
.field("y", &self.y)
.finish()
}
}
let origin = Point { x: 0, y: 0 };
assert_eq!(
format!("The origin is: {origin:?}"),
"The origin is: Point { x: 0, y: 0 }",
);There are a number of helper methods on the Formatter struct to help you with manual
implementations, such as debug_struct.
Types that do not wish to use the standard suite of debug representations
provided by the Formatter trait (debug_struct, debug_tuple,
debug_list, debug_set, debug_map) can do something totally custom by
manually writing an arbitrary representation to the Formatter.
impl fmt::Debug for Point {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Point [{} {}]", self.x, self.y)
}
}Debug implementations using either derive or the debug builder API
on Formatter support pretty-printing using the alternate flag: {:#?}.
Pretty-printing with #?:
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
let origin = Point { x: 0, y: 0 };
let expected = "The origin is: Point {
x: 0,
y: 0,
}";
assert_eq!(format!("The origin is: {origin:#?}"), expected);Required Methods§
1.0.0 · Sourcefn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
§Errors
This function should return Err if, and only if, the provided Formatter returns Err.
String formatting is considered an infallible operation; this function only
returns a Result because writing to the underlying stream might fail and it must
provide a way to propagate the fact that an error has occurred back up the stack.
§Examples
use std::fmt;
struct Position {
longitude: f32,
latitude: f32,
}
impl fmt::Debug for Position {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("")
.field(&self.longitude)
.field(&self.latitude)
.finish()
}
}
let position = Position { longitude: 1.987, latitude: 2.983 };
assert_eq!(format!("{position:?}"), "(1.987, 2.983)");
assert_eq!(format!("{position:#?}"), "(
1.987,
2.983,
)");Implementors§
impl Debug for FileLeaseType
impl Debug for IptIpFlags
impl Debug for KcmpResource
impl Debug for starnix_uapi::resource_limits::Resource
impl Debug for SyslogAction
impl Debug for AsciiChar
impl Debug for starnix_uapi::arch32::__static_assertions::_core::cmp::Ordering
impl Debug for Infallible
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for AtomicOrdering
impl Debug for SimdAlign
impl Debug for IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for starnix_uapi::arch32::__static_assertions::_core::net::SocketAddr
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for starnix_uapi::arch32::__static_assertions::_core::slice::GetDisjointMutError
impl Debug for SearchStep
impl Debug for starnix_uapi::arch32::__static_assertions::_core::sync::atomic::Ordering
impl Debug for starnix_uapi::arch32::__static_assertions::_core::fmt::Alignment
impl Debug for DebugAsHex
impl Debug for Sign
impl Debug for TryReserveErrorKind
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for std::fs::TryLockError
impl Debug for SeekFrom
impl Debug for std::io::error::ErrorKind
impl Debug for Shutdown
impl Debug for BacktraceStyle
impl Debug for std::sync::mpsc::RecvTimeoutError
impl Debug for std::sync::mpsc::TryRecvError
impl Debug for Colons
impl Debug for Fixed
impl Debug for Numeric
impl Debug for OffsetPrecision
impl Debug for Pad
impl Debug for ParseErrorKind
impl Debug for SecondsFormat
impl Debug for Month
impl Debug for RoundingError
impl Debug for Weekday
impl Debug for log::Level
impl Debug for LevelFilter
impl Debug for FloatErrorKind
impl Debug for Always
impl Debug for OnSuccess
impl Debug for OnUnwind
impl Debug for Category
impl Debug for serde_json::value::Value
impl Debug for Origin
impl Debug for url::parser::ParseError
impl Debug for SyntaxViolation
impl Debug for url::slicing::Position
impl Debug for zerocopy::byteorder::BigEndian
impl Debug for zerocopy::byteorder::LittleEndian
impl Debug for zx_packet_guest_vcpu_type_t
impl Debug for zx_packet_type_t
impl Debug for zx_page_request_command_t
impl Debug for bool
impl Debug for char
impl Debug for f16
impl Debug for f32
impl Debug for f64
impl Debug for f128
impl Debug for i8
impl Debug for i16
impl Debug for i32
impl Debug for i64
impl Debug for i128
impl Debug for isize
impl Debug for !
impl Debug for str
impl Debug for u8
impl Debug for u16
impl Debug for u32
impl Debug for u64
impl Debug for u128
impl Debug for ()
impl Debug for usize
impl Debug for Capabilities
impl Debug for Credentials
impl Debug for FsCred
impl Debug for PtraceAccessMode
impl Debug for SecureBits
impl Debug for UserAndOrGroupId
impl Debug for UserCredentials
impl Debug for DeviceType
impl Debug for Errno
impl Debug for ErrnoCode
impl Debug for Access
impl Debug for FileMode
impl Debug for InotifyMask
impl Debug for IptIpFlagsV4
impl Debug for IptIpFlagsV6
impl Debug for IptIpInverseFlags
impl Debug for NfIpHooks
impl Debug for NfNatRangeFlags
impl Debug for XtTcpInverseFlags
impl Debug for XtUdpInverseFlags
impl Debug for MountFlags
impl Debug for starnix_uapi::open_flags::OpenFlags
impl Debug for PersonalityFlags
impl Debug for ResourceLimits
impl Debug for SealFlags
impl Debug for SigSet
impl Debug for Signal
impl Debug for UncheckedSignal
impl Debug for __kernel_fd_set
impl Debug for __kernel_fsid_t
impl Debug for __kernel_itimerspec
impl Debug for __kernel_old_timespec
impl Debug for __kernel_sigaction
impl Debug for __kernel_sock_timeval
impl Debug for __kernel_timespec
impl Debug for __old_kernel_stat
impl Debug for __sifields__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_4
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2
impl Debug for __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3
impl Debug for __sifields__bindgen_ty_6
impl Debug for __sifields__bindgen_ty_7
impl Debug for __user_cap_data_struct
impl Debug for __user_cap_header_struct
impl Debug for _fpreg
impl Debug for _fpx_sw_bytes
impl Debug for _fpxreg
impl Debug for _header
impl Debug for _xmmreg
impl Debug for _xt_align
impl Debug for _ymmh_state
impl Debug for arphdr
impl Debug for arpreq
impl Debug for arpreq_old
impl Debug for ashmem_pin
impl Debug for audit_features
impl Debug for audit_rule_data
impl Debug for audit_tty_status
impl Debug for binder_buffer_object
impl Debug for binder_extended_error
impl Debug for binder_fd_array_object
impl Debug for binder_freeze_info
impl Debug for binder_frozen_state_info
impl Debug for binder_frozen_status_info
impl Debug for binder_node_debug_info
impl Debug for binder_node_info_for_ref
impl Debug for binder_object_header
impl Debug for binder_pri_desc
impl Debug for binder_transaction_data__bindgen_ty_2__bindgen_ty_1
impl Debug for binder_version
impl Debug for binder_write_read
impl Debug for binderfs_device
impl Debug for bpf_attr__bindgen_ty_1
impl Debug for bpf_attr__bindgen_ty_3
impl Debug for bpf_attr__bindgen_ty_5
impl Debug for bpf_attr__bindgen_ty_7
impl Debug for bpf_attr__bindgen_ty_9
impl Debug for bpf_attr__bindgen_ty_11
impl Debug for bpf_attr__bindgen_ty_12
impl Debug for bpf_attr__bindgen_ty_13
impl Debug for bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
impl Debug for bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
impl Debug for bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
impl Debug for bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
impl Debug for bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
impl Debug for bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
impl Debug for bpf_attr__bindgen_ty_16
impl Debug for bpf_attr__bindgen_ty_17
impl Debug for bpf_attr__bindgen_ty_18
impl Debug for bpf_attr__bindgen_ty_19
impl Debug for bpf_attr__bindgen_ty_20
impl Debug for bpf_btf_info
impl Debug for bpf_cgroup_dev_ctx
impl Debug for bpf_cgroup_storage_key
impl Debug for bpf_core_relo
impl Debug for bpf_dynptr
impl Debug for bpf_fib_lookup__bindgen_ty_5__bindgen_ty_1
impl Debug for bpf_fib_lookup__bindgen_ty_6__bindgen_ty_1
impl Debug for bpf_fib_lookup__bindgen_ty_6__bindgen_ty_2
impl Debug for bpf_flow_keys__bindgen_ty_1__bindgen_ty_1
impl Debug for bpf_flow_keys__bindgen_ty_1__bindgen_ty_2
impl Debug for bpf_func_info
impl Debug for bpf_insn
impl Debug for bpf_iter_link_info__bindgen_ty_1
impl Debug for bpf_iter_link_info__bindgen_ty_2
impl Debug for bpf_iter_link_info__bindgen_ty_3
impl Debug for bpf_iter_num
impl Debug for bpf_line_info
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_1
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_2
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_3
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_5
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_6
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_7
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_8
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_9
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_10
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_12
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_13
impl Debug for bpf_link_info__bindgen_ty_1__bindgen_ty_14
impl Debug for bpf_list_head
impl Debug for bpf_list_node
impl Debug for bpf_lpm_trie_key
impl Debug for bpf_lpm_trie_key_hdr
impl Debug for bpf_map_info
impl Debug for bpf_perf_event_data
impl Debug for bpf_perf_event_value
impl Debug for bpf_pidns_info
impl Debug for bpf_prog
impl Debug for bpf_prog_info
impl Debug for bpf_raw_tracepoint_args
impl Debug for bpf_rb_node
impl Debug for bpf_rb_root
impl Debug for bpf_refcount
impl Debug for bpf_sock
impl Debug for bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1
impl Debug for bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2
impl Debug for bpf_spin_lock
impl Debug for bpf_sysctl
impl Debug for bpf_tcp_sock
impl Debug for bpf_timer
impl Debug for bpf_wq
impl Debug for bpf_xdp_sock
impl Debug for btf_ptr
impl Debug for cachestat
impl Debug for cachestat_range
impl Debug for cisco_proto
impl Debug for clone_args
impl Debug for starnix_uapi::uapi::cmsghdr
impl Debug for compat_statfs64
impl Debug for cuse_init_in
impl Debug for cuse_init_out
impl Debug for dm_ioctl
impl Debug for dm_name_list
impl Debug for dm_target_deps
impl Debug for dm_target_msg
impl Debug for dm_target_spec
impl Debug for dm_target_versions
impl Debug for dma_buf_export_sync_file
impl Debug for dma_buf_import_sync_file
impl Debug for dma_buf_sync
impl Debug for dma_heap_allocation_data
impl Debug for dmabuf_cmsg
impl Debug for dmabuf_token
impl Debug for starnix_uapi::uapi::epoll_event
impl Debug for epoll_params
impl Debug for ethhdr
impl Debug for f_owner_ex
impl Debug for fanout_args
impl Debug for fastrpc_ioctl_capability
impl Debug for fastrpc_ioctl_init
impl Debug for fastrpc_ioctl_invoke2
impl Debug for fastrpc_ioctl_invoke
impl Debug for fastrpc_ioctl_invoke_fd
impl Debug for fb_bitfield
impl Debug for fb_cmap
impl Debug for fb_con2fbmap
impl Debug for fb_copyarea
impl Debug for fb_cursor
impl Debug for fb_fillrect
impl Debug for fb_fix_screeninfo
impl Debug for fb_image
impl Debug for fb_var_screeninfo
impl Debug for fb_vblank
impl Debug for fbcurpos
impl Debug for starnix_uapi::uapi::ff_condition_effect
impl Debug for starnix_uapi::uapi::ff_constant_effect
impl Debug for starnix_uapi::uapi::ff_envelope
impl Debug for starnix_uapi::uapi::ff_periodic_effect
impl Debug for starnix_uapi::uapi::ff_ramp_effect
impl Debug for starnix_uapi::uapi::ff_replay
impl Debug for starnix_uapi::uapi::ff_rumble_effect
impl Debug for starnix_uapi::uapi::ff_trigger
impl Debug for fib_rule_hdr
impl Debug for fib_rule_port_range
impl Debug for fib_rule_uid_range
impl Debug for file_clone_range
impl Debug for file_dedupe_range
impl Debug for file_dedupe_range_info
impl Debug for files_stat_struct
impl Debug for starnix_uapi::uapi::flock
impl Debug for fr_proto
impl Debug for fr_proto_pvc
impl Debug for fr_proto_pvc_info
impl Debug for fs_sysfs_path
impl Debug for fscrypt_key
impl Debug for fscrypt_policy_v1
impl Debug for fscrypt_policy_v2
impl Debug for fscrypt_provisioning_key_payload
impl Debug for fstrim_range
impl Debug for fsuuid2
impl Debug for fsverity_descriptor
impl Debug for fsverity_digest
impl Debug for fsverity_enable_arg
impl Debug for fsverity_formatted_digest
impl Debug for fsverity_read_metadata_arg
impl Debug for fsxattr
impl Debug for fuse_access_in
impl Debug for fuse_attr
impl Debug for fuse_attr_out
impl Debug for fuse_backing_map
impl Debug for fuse_batch_forget_in
impl Debug for fuse_bmap_in
impl Debug for fuse_bmap_out
impl Debug for fuse_bpf_arg
impl Debug for fuse_bpf_args
impl Debug for fuse_bpf_in_arg
impl Debug for fuse_copy_file_range_in
impl Debug for fuse_create_in
impl Debug for fuse_dirent
impl Debug for fuse_direntplus
impl Debug for fuse_entry_bpf_out
impl Debug for fuse_entry_out
impl Debug for fuse_ext_header
impl Debug for fuse_fallocate_in
impl Debug for fuse_file_lock
impl Debug for fuse_flush_in
impl Debug for fuse_forget_in
impl Debug for fuse_forget_one
impl Debug for fuse_fsync_in
impl Debug for fuse_getattr_in
impl Debug for fuse_getxattr_in
impl Debug for fuse_getxattr_out
impl Debug for fuse_in_header
impl Debug for fuse_in_header__bindgen_ty_1__bindgen_ty_1
impl Debug for fuse_init_in
impl Debug for fuse_init_out
impl Debug for fuse_interrupt_in
impl Debug for fuse_ioctl_in
impl Debug for fuse_ioctl_iovec
impl Debug for fuse_ioctl_out
impl Debug for fuse_kstatfs
impl Debug for fuse_link_in
impl Debug for fuse_lk_in
impl Debug for fuse_lk_out
impl Debug for fuse_lseek_in
impl Debug for fuse_lseek_out
impl Debug for fuse_mkdir_in
impl Debug for fuse_mknod_in
impl Debug for fuse_mount
impl Debug for fuse_notify_delete_out
impl Debug for fuse_notify_inval_entry_out
impl Debug for fuse_notify_inval_inode_out
impl Debug for fuse_notify_poll_wakeup_out
impl Debug for fuse_notify_retrieve_in
impl Debug for fuse_notify_retrieve_out
impl Debug for fuse_notify_store_out
impl Debug for fuse_open_in
impl Debug for fuse_open_out
impl Debug for fuse_out_header
impl Debug for fuse_passthrough_out_v0
impl Debug for fuse_poll_in
impl Debug for fuse_poll_out
impl Debug for fuse_read_in
impl Debug for fuse_read_out
impl Debug for fuse_release_in
impl Debug for fuse_removemapping_in
impl Debug for fuse_removemapping_one
impl Debug for fuse_rename2_in
impl Debug for fuse_rename_in
impl Debug for fuse_secctx
impl Debug for fuse_secctx_header
impl Debug for fuse_setattr_in
impl Debug for fuse_setupmapping_in
impl Debug for fuse_setxattr_in
impl Debug for fuse_statfs_out
impl Debug for fuse_statx
impl Debug for fuse_statx_in
impl Debug for fuse_statx_out
impl Debug for fuse_supp_groups
impl Debug for fuse_sx_time
impl Debug for fuse_syncfs_in
impl Debug for fuse_write_in
impl Debug for fuse_write_out
impl Debug for futex_waitv
impl Debug for group_filter
impl Debug for group_filter__bindgen_ty_1__bindgen_ty_1
impl Debug for group_filter__bindgen_ty_1__bindgen_ty_2
impl Debug for i2c_msg
impl Debug for if_stats_msg
impl Debug for ifa_cacheinfo
impl Debug for ifaddrmsg
impl Debug for ifinfomsg
impl Debug for ifla_bridge_id
impl Debug for ifla_cacheinfo
impl Debug for ifla_port_vsi
impl Debug for ifla_rmnet_flags
impl Debug for ifla_vf_broadcast
impl Debug for ifla_vf_guid
impl Debug for ifla_vf_link_state
impl Debug for ifla_vf_mac
impl Debug for ifla_vf_rate
impl Debug for ifla_vf_rss_query_en
impl Debug for ifla_vf_spoofchk
impl Debug for ifla_vf_trust
impl Debug for ifla_vf_tx_rate
impl Debug for ifla_vf_vlan
impl Debug for ifla_vf_vlan_info
impl Debug for ifla_vlan_flags
impl Debug for ifla_vlan_qos_mapping
impl Debug for ifla_vxlan_port_range
impl Debug for ifmap
impl Debug for starnix_uapi::uapi::in_addr
impl Debug for in_pktinfo
impl Debug for inodes_stat_t
impl Debug for inotify_event
impl Debug for starnix_uapi::uapi::input_absinfo
impl Debug for starnix_uapi::uapi::input_event
impl Debug for starnix_uapi::uapi::input_id
impl Debug for starnix_uapi::uapi::input_keymap_entry
impl Debug for starnix_uapi::uapi::input_mask
impl Debug for io_cqring_offsets
impl Debug for io_event
impl Debug for io_sqring_offsets
impl Debug for io_uring_buf
impl Debug for io_uring_buf_reg
impl Debug for io_uring_buf_ring__bindgen_ty_1__bindgen_ty_1
impl Debug for io_uring_buf_ring__bindgen_ty_1__bindgen_ty_2
impl Debug for io_uring_buf_ring__bindgen_ty_1__bindgen_ty_2__bindgen_ty_1
impl Debug for io_uring_buf_status
impl Debug for io_uring_clock_register
impl Debug for io_uring_clone_buffers
impl Debug for io_uring_cqe
impl Debug for io_uring_file_index_range
impl Debug for io_uring_files_update
impl Debug for io_uring_getevents_arg
impl Debug for io_uring_napi
impl Debug for io_uring_params
impl Debug for io_uring_probe
impl Debug for io_uring_probe_op
impl Debug for io_uring_recvmsg_out
impl Debug for io_uring_rsrc_register
impl Debug for io_uring_rsrc_update2
impl Debug for io_uring_rsrc_update
impl Debug for io_uring_sqe__bindgen_ty_1__bindgen_ty_1
impl Debug for io_uring_sqe__bindgen_ty_2__bindgen_ty_1
impl Debug for io_uring_sqe__bindgen_ty_5__bindgen_ty_1
impl Debug for io_uring_sqe__bindgen_ty_6__bindgen_ty_1
impl Debug for io_uring_sync_cancel_reg
impl Debug for iocb
impl Debug for starnix_uapi::uapi::iovec
impl Debug for ip6t_getinfo
impl Debug for ip6t_icmp
impl Debug for ip6t_reject_info
impl Debug for ip_auth_hdr
impl Debug for ip_beet_phdr
impl Debug for ip_comp_hdr
impl Debug for ip_esp_hdr
impl Debug for starnix_uapi::uapi::ip_mreq
impl Debug for starnix_uapi::uapi::ip_mreqn
impl Debug for iphdr__bindgen_ty_1__bindgen_ty_1
impl Debug for iphdr__bindgen_ty_1__bindgen_ty_2
impl Debug for ipt_entry
impl Debug for ipt_get_entries
impl Debug for ipt_getinfo
impl Debug for ipt_icmp
impl Debug for ipt_ip
impl Debug for ipt_reject_info
impl Debug for ipt_replace
impl Debug for ipv6_opt_hdr
impl Debug for ipv6_rt_hdr
impl Debug for starnix_uapi::uapi::itimerspec
impl Debug for starnix_uapi::uapi::itimerval
impl Debug for kcmp_epoll_slot
impl Debug for kgsl_bind_gmem_shadow
impl Debug for kgsl_buffer_desc
impl Debug for kgsl_capabilities
impl Debug for kgsl_capabilities_properties
impl Debug for kgsl_cff_sync_gpuobj
impl Debug for kgsl_cff_syncmem
impl Debug for kgsl_cff_user_event
impl Debug for kgsl_cmd_syncpoint
impl Debug for kgsl_cmd_syncpoint_fence
impl Debug for kgsl_cmd_syncpoint_timeline
impl Debug for kgsl_cmd_syncpoint_timestamp
impl Debug for kgsl_cmdbatch_profiling_buffer
impl Debug for kgsl_cmdstream_freememontimestamp
impl Debug for kgsl_cmdstream_freememontimestamp_ctxtid
impl Debug for kgsl_cmdstream_readtimestamp
impl Debug for kgsl_cmdstream_readtimestamp_ctxtid
impl Debug for kgsl_cmdwindow_write
impl Debug for kgsl_command_object
impl Debug for kgsl_command_syncpoint
impl Debug for kgsl_context_property
impl Debug for kgsl_context_property_fault
impl Debug for kgsl_device_constraint
impl Debug for kgsl_device_constraint_pwrlevel
impl Debug for kgsl_device_getproperty
impl Debug for kgsl_device_waittimestamp
impl Debug for kgsl_device_waittimestamp_ctxtid
impl Debug for kgsl_devinfo
impl Debug for kgsl_devmemstore
impl Debug for kgsl_drawctxt_create
impl Debug for kgsl_drawctxt_destroy
impl Debug for kgsl_drawctxt_set_bin_base_offset
impl Debug for kgsl_fault
impl Debug for kgsl_fault_report
impl Debug for kgsl_gmem_desc
impl Debug for kgsl_gpmu_version
impl Debug for kgsl_gpu_aux_command
impl Debug for kgsl_gpu_aux_command_bind
impl Debug for kgsl_gpu_aux_command_generic
impl Debug for kgsl_gpu_aux_command_timeline
impl Debug for kgsl_gpu_command
impl Debug for kgsl_gpu_event_fence
impl Debug for kgsl_gpu_event_timestamp
impl Debug for kgsl_gpu_model
impl Debug for kgsl_gpu_sparse_command
impl Debug for kgsl_gpumem_alloc
impl Debug for kgsl_gpumem_alloc_id
impl Debug for kgsl_gpumem_bind_range
impl Debug for kgsl_gpumem_bind_ranges
impl Debug for kgsl_gpumem_free_id
impl Debug for kgsl_gpumem_get_info
impl Debug for kgsl_gpumem_sync_cache
impl Debug for kgsl_gpumem_sync_cache_bulk
impl Debug for kgsl_gpuobj_alloc
impl Debug for kgsl_gpuobj_free
impl Debug for kgsl_gpuobj_import
impl Debug for kgsl_gpuobj_import_dma_buf
impl Debug for kgsl_gpuobj_import_useraddr
impl Debug for kgsl_gpuobj_info
impl Debug for kgsl_gpuobj_set_info
impl Debug for kgsl_gpuobj_sync
impl Debug for kgsl_gpuobj_sync_obj
impl Debug for kgsl_ibdesc
impl Debug for kgsl_map_user_mem
impl Debug for kgsl_pagefault_report
impl Debug for kgsl_perfcounter_get
impl Debug for kgsl_perfcounter_put
impl Debug for kgsl_perfcounter_query
impl Debug for kgsl_perfcounter_read
impl Debug for kgsl_perfcounter_read_group
impl Debug for kgsl_preemption_counters_query
impl Debug for kgsl_qdss_stm_prop
impl Debug for kgsl_qtimer_prop
impl Debug for kgsl_read_calibrated_timestamps
impl Debug for kgsl_recurring_command
impl Debug for kgsl_ringbuffer_issueibcmds
impl Debug for kgsl_shadowprop
impl Debug for kgsl_sp_generic_mem
impl Debug for kgsl_sparse_bind
impl Debug for kgsl_sparse_binding_object
impl Debug for kgsl_sparse_phys_alloc
impl Debug for kgsl_sparse_phys_free
impl Debug for kgsl_sparse_virt_alloc
impl Debug for kgsl_sparse_virt_free
impl Debug for kgsl_submit_commands
impl Debug for kgsl_syncsource_create
impl Debug for kgsl_syncsource_create_fence
impl Debug for kgsl_syncsource_destroy
impl Debug for kgsl_syncsource_signal_fence
impl Debug for kgsl_timeline_create
impl Debug for kgsl_timeline_fence_get
impl Debug for kgsl_timeline_signal
impl Debug for kgsl_timeline_val
impl Debug for kgsl_timeline_wait
impl Debug for kgsl_timestamp_event
impl Debug for kgsl_timestamp_event_fence
impl Debug for kgsl_timestamp_event_genlock
impl Debug for kgsl_ucode_version
impl Debug for kgsl_version
impl Debug for ktermios
impl Debug for starnix_uapi::uapi::linger
impl Debug for loop_config
impl Debug for loop_info64
impl Debug for loop_info
impl Debug for max_align_t
impl Debug for starnix_uapi::uapi::mmsghdr
impl Debug for mnt_id_req
impl Debug for mount_attr
impl Debug for starnix_uapi::uapi::mq_attr
impl Debug for starnix_uapi::uapi::msghdr
impl Debug for nda_cacheinfo
impl Debug for ndmsg
impl Debug for ndt_config
impl Debug for ndt_stats
impl Debug for ndtmsg
impl Debug for nduseroptmsg
impl Debug for new_utsname
impl Debug for nf_conntrack_man_proto__bindgen_ty_1
impl Debug for nf_conntrack_man_proto__bindgen_ty_2
impl Debug for nf_conntrack_man_proto__bindgen_ty_3
impl Debug for nf_conntrack_man_proto__bindgen_ty_4
impl Debug for nf_conntrack_man_proto__bindgen_ty_5
impl Debug for nf_conntrack_man_proto__bindgen_ty_6
impl Debug for nl_mmap_hdr
impl Debug for nl_mmap_req
impl Debug for nl_pktinfo
impl Debug for nla_bitfield32
impl Debug for nlattr
impl Debug for nlmsgerr
impl Debug for nlmsghdr
impl Debug for old_utsname
impl Debug for oldold_utsname
impl Debug for open_how
impl Debug for packet_mreq
impl Debug for page_region
impl Debug for perf_branch_entry
impl Debug for perf_event_header
impl Debug for perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
impl Debug for perf_event_query_bpf
impl Debug for perf_mem_data_src__bindgen_ty_1
impl Debug for perf_ns_link_info
impl Debug for perf_sample_weight__bindgen_ty_1
impl Debug for pm_scan_arg
impl Debug for starnix_uapi::uapi::pollfd
impl Debug for prctl_mm_map
impl Debug for prefix_cacheinfo
impl Debug for prefixmsg
impl Debug for procmap_query
impl Debug for pselect6_sigmask
impl Debug for pt_regs
impl Debug for ptrace_peeksiginfo_args
impl Debug for ptrace_rseq_configuration
impl Debug for ptrace_sud_config
impl Debug for ptrace_syscall_info__bindgen_ty_1__bindgen_ty_1
impl Debug for ptrace_syscall_info__bindgen_ty_1__bindgen_ty_2
impl Debug for ptrace_syscall_info__bindgen_ty_1__bindgen_ty_3
impl Debug for rand_pool_info
impl Debug for raw_hdlc_proto
impl Debug for remote_binder_start_command
impl Debug for remote_binder_wait_command
impl Debug for remote_buf
impl Debug for starnix_uapi::uapi::rlimit64
impl Debug for starnix_uapi::uapi::rlimit
impl Debug for robust_list
impl Debug for robust_list_head
impl Debug for rta_cacheinfo
impl Debug for rta_mfc_stats
impl Debug for rta_session__bindgen_ty_1__bindgen_ty_1
impl Debug for rta_session__bindgen_ty_1__bindgen_ty_2
impl Debug for rtattr
impl Debug for rtgenmsg
impl Debug for rtmsg
impl Debug for rtnexthop
impl Debug for rtnl_hw_stats64
impl Debug for rtnl_link_ifmap
impl Debug for rtnl_link_stats64
impl Debug for rtnl_link_stats
impl Debug for rtvia
impl Debug for starnix_uapi::uapi::rusage
impl Debug for sadb_address
impl Debug for sadb_alg
impl Debug for sadb_comb
impl Debug for sadb_ext
impl Debug for sadb_ident
impl Debug for sadb_key
impl Debug for sadb_lifetime
impl Debug for sadb_msg
impl Debug for sadb_prop
impl Debug for sadb_sa
impl Debug for sadb_sens
impl Debug for sadb_spirange
impl Debug for sadb_supported
impl Debug for sadb_x_filter
impl Debug for sadb_x_ipsecrequest
impl Debug for sadb_x_kmaddress
impl Debug for sadb_x_kmprivate
impl Debug for sadb_x_nat_t_port
impl Debug for sadb_x_nat_t_type
impl Debug for sadb_x_policy
impl Debug for sadb_x_sa2
impl Debug for sadb_x_sec_ctx
impl Debug for sched_attr
impl Debug for starnix_uapi::uapi::sched_param
impl Debug for seccomp_data
impl Debug for seccomp_metadata
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 sigaltstack
impl Debug for sigcontext_32
impl Debug for sigcontext_64
impl Debug for sigevent__bindgen_ty_1__bindgen_ty_1
impl Debug for starnix_uapi::uapi::signalfd_siginfo
impl Debug for sock_diag_req
impl Debug for sock_filter
impl Debug for sock_fprog
impl Debug for starnix_uapi::uapi::sockaddr
impl Debug for starnix_uapi::uapi::sockaddr_in
impl Debug for starnix_uapi::uapi::sockaddr_ll
impl Debug for starnix_uapi::uapi::sockaddr_nl
impl Debug for sockaddr_pkt
impl Debug for sockaddr_qrtr
impl Debug for sockaddr_storage__bindgen_ty_1__bindgen_ty_1
impl Debug for starnix_uapi::uapi::sockaddr_un
impl Debug for starnix_uapi::uapi::sockaddr_vm
impl Debug for starnix_uapi::uapi::stat
impl Debug for starnix_uapi::uapi::statfs64
impl Debug for starnix_uapi::uapi::statfs
impl Debug for statmount
impl Debug for statx
impl Debug for statx_timestamp
impl Debug for sync_fence_info
impl Debug for sync_file_info
impl Debug for sync_merge_data
impl Debug for sync_serial_settings
impl Debug for sync_set_deadline
impl Debug for starnix_uapi::uapi::sysinfo
impl Debug for taskstats
impl Debug for tcamsg
impl Debug for tcmsg
impl Debug for te1_settings
impl Debug for termio
impl Debug for starnix_uapi::uapi::termios2
impl Debug for starnix_uapi::uapi::termios
impl Debug for starnix_uapi::uapi::timespec
impl Debug for starnix_uapi::uapi::timeval
impl Debug for starnix_uapi::uapi::timezone
impl Debug for starnix_uapi::uapi::tms
impl Debug for tpacket2_hdr
impl Debug for tpacket_auxdata
impl Debug for tpacket_hdr
impl Debug for tpacket_hdr_variant1
impl Debug for tpacket_req3
impl Debug for tpacket_req
impl Debug for tpacket_rollover_stats
impl Debug for tpacket_stats
impl Debug for tpacket_stats_v3
impl Debug for tun_filter
impl Debug for tun_pi
impl Debug for tunnel_msg
impl Debug for uaddr32
impl Debug for uaddr
impl Debug for starnix_uapi::uapi::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_setup
impl Debug for uinput_user_dev
impl Debug for usb_bos_descriptor
impl Debug for usb_config_descriptor
impl Debug for usb_connection_context
impl Debug for usb_ctrlrequest
impl Debug for usb_debug_descriptor
impl Debug for usb_descriptor_header
impl Debug for usb_dev_cap_header
impl Debug for usb_device_descriptor
impl Debug for usb_dfu_functional_descriptor
impl Debug for usb_encryption_descriptor
impl Debug for usb_endpoint_descriptor
impl Debug for usb_endpoint_descriptor_no_audio
impl Debug for usb_ext_cap_descriptor
impl Debug for usb_ext_compat_desc__bindgen_ty_1__bindgen_ty_1
impl Debug for usb_ext_compat_desc__bindgen_ty_1__bindgen_ty_2
impl Debug for usb_ext_prop_desc
impl Debug for usb_ffs_dmabuf_transfer_req
impl Debug for usb_functionfs_descs_head
impl Debug for usb_functionfs_descs_head_v2
impl Debug for usb_functionfs_strings_head
impl Debug for usb_handshake
impl Debug for usb_interface_assoc_descriptor
impl Debug for usb_interface_descriptor
impl Debug for usb_os_desc_header__bindgen_ty_1__bindgen_ty_1
impl Debug for usb_otg20_descriptor
impl Debug for usb_otg_descriptor
impl Debug for usb_pd_cap_battery_info_descriptor
impl Debug for usb_pd_cap_consumer_port_descriptor
impl Debug for usb_pd_cap_descriptor
impl Debug for usb_ptm_cap_descriptor
impl Debug for usb_qualifier_descriptor
impl Debug for usb_security_descriptor
impl Debug for usb_set_sel_req
impl Debug for usb_ss_cap_descriptor
impl Debug for usb_ss_container_id_descriptor
impl Debug for usb_ss_ep_comp_descriptor
impl Debug for usb_ssp_cap_descriptor__bindgen_ty_1__bindgen_ty_1
impl Debug for usb_ssp_cap_descriptor__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1
impl Debug for usb_ssp_isoc_ep_comp_descriptor
impl Debug for usb_string_descriptor__bindgen_ty_1__bindgen_ty_1
impl Debug for usb_string_descriptor__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1
impl Debug for usb_wireless_cap_descriptor
impl Debug for usb_wireless_ep_comp_descriptor
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 starnix_uapi::uapi::winsize
impl Debug for x25_hdlc_proto
impl Debug for xdp_md
impl Debug for xfrm_algo
impl Debug for xfrm_algo_aead
impl Debug for xfrm_algo_auth
impl Debug for xfrm_lifetime_cfg
impl Debug for xfrm_lifetime_cur
impl Debug for xfrm_mark
impl Debug for xfrm_replay_state
impl Debug for xfrm_replay_state_esn
impl Debug for xfrm_sec_ctx
impl Debug for xfrm_stats
impl Debug for xfrm_user_offload
impl Debug for xfrm_user_sec_ctx
impl Debug for xfrm_userpolicy_default
impl Debug for xfrm_userpolicy_type
impl Debug for xfrm_usersa_flush
impl Debug for xfrmu_sadhinfo
impl Debug for xfrmu_spdhinfo
impl Debug for xfrmu_spdhthresh
impl Debug for xfrmu_spdinfo
impl Debug for xt_bpf_info
impl Debug for xt_counters
impl Debug for xt_counters_info
impl Debug for xt_entry_match__bindgen_ty_1__bindgen_ty_1
impl Debug for xt_entry_match__bindgen_ty_1__bindgen_ty_2
impl Debug for xt_entry_target__bindgen_ty_1__bindgen_ty_1
impl Debug for xt_entry_target__bindgen_ty_1__bindgen_ty_2
impl Debug for xt_get_revision
impl Debug for xt_mark_mtinfo1
impl Debug for xt_mark_tginfo2
impl Debug for xt_match
impl Debug for xt_target
impl Debug for xt_tcp
impl Debug for xt_tproxy_target_info
impl Debug for xt_udp
impl Debug for UnmountFlags
impl Debug for UserAddress32
impl Debug for UserAddress
impl Debug for FdEvents
impl Debug for ResolveFlags
impl Debug for user
impl Debug for user_fpregs_struct
impl Debug for user_regs_struct
impl Debug for starnix_uapi::arch32::__static_assertions::_core::alloc::AllocError
impl Debug for Layout
impl Debug for LayoutError
impl Debug for TypeId
impl Debug for CpuidResult
impl Debug for __m128
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128h
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for bf16
impl Debug for starnix_uapi::arch32::__static_assertions::_core::array::TryFromSliceError
impl Debug for starnix_uapi::arch32::__static_assertions::_core::ascii::EscapeDefault
impl Debug for ByteStr
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for DecodeUtf16Error
impl Debug for starnix_uapi::arch32::__static_assertions::_core::char::EscapeDebug
impl Debug for starnix_uapi::arch32::__static_assertions::_core::char::EscapeDefault
impl Debug for starnix_uapi::arch32::__static_assertions::_core::char::EscapeUnicode
impl Debug for ParseCharError
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for CStr
Shows the underlying bytes as a normal string, with invalid UTF-8 presented as hex escape sequences.
impl Debug for FromBytesUntilNulError
impl Debug for VaList<'_>
impl Debug for SipHasher
impl Debug for Last
impl Debug for BorrowedBuf<'_>
impl Debug for PhantomContravariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomInvariantLifetime<'_>
impl Debug for PhantomPinned
impl Debug for Assume
impl Debug for AddrParseError
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for starnix_uapi::arch32::__static_assertions::_core::num::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for Location<'_>
impl Debug for PanicMessage<'_>
impl Debug for starnix_uapi::arch32::__static_assertions::_core::ptr::Alignment
impl Debug for starnix_uapi::arch32::__static_assertions::_core::str::Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for ParseBoolError
impl Debug for starnix_uapi::arch32::__static_assertions::_core::str::Utf8Chunks<'_>
impl Debug for starnix_uapi::arch32::__static_assertions::_core::str::Utf8Error
impl Debug for AtomicBool
target_has_atomic_load_store=8 only.impl Debug for AtomicI8
impl Debug for AtomicI16
impl Debug for AtomicI32
impl Debug for AtomicI64
impl Debug for AtomicI128
impl Debug for AtomicIsize
impl Debug for AtomicU8
impl Debug for AtomicU16
impl Debug for AtomicU32
impl Debug for AtomicU64
impl Debug for AtomicU128
impl Debug for AtomicUsize
impl Debug for starnix_uapi::arch32::__static_assertions::_core::task::Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for starnix_uapi::arch32::__static_assertions::_core::time::Duration
impl Debug for TryFromFloatSecsError
impl Debug for Global
impl Debug for ByteString
impl Debug for UnorderedKeyError
impl Debug for alloc::collections::TryReserveError
impl Debug for CString
Delegates to the CStr implementation of fmt::Debug,
showing invalid UTF-8 as hex escapes.
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for alloc::string::Drain<'_>
impl Debug for alloc::string::FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for String
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for OsStr
impl Debug for OsString
impl Debug for DirBuilder
impl Debug for std::fs::DirEntry
impl Debug for File
impl Debug for FileTimes
impl Debug for FileType
impl Debug for std::fs::Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for DefaultHasher
impl Debug for std::hash::random::RandomState
impl Debug for WriterPanicked
impl Debug for std::io::error::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for Stderr
impl Debug for StderrLock<'_>
impl Debug for Stdin
impl Debug for StdinLock<'_>
impl Debug for Stdout
impl Debug for StdoutLock<'_>
impl Debug for std::io::util::Empty
impl Debug for std::io::util::Repeat
impl Debug for std::io::util::Sink
impl Debug for IntoIncoming
impl Debug for std::net::tcp::TcpListener
impl Debug for std::net::tcp::TcpStream
impl Debug for std::net::udp::UdpSocket
impl Debug for BorrowedFd<'_>
impl Debug for OwnedFd
impl Debug for std::os::unix::net::addr::SocketAddr
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for Components<'_>
impl Debug for std::path::Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for NormalizeError
impl Debug for std::path::Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for std::process::Child
impl Debug for ChildStderr
impl Debug for ChildStdin
impl Debug for ChildStdout
impl Debug for Command
impl Debug for ExitCode
impl Debug for ExitStatus
impl Debug for ExitStatusError
impl Debug for Output
impl Debug for Stdio
impl Debug for DefaultRandomSource
impl Debug for Barrier
impl Debug for BarrierWaitResult
impl Debug for std::sync::mpsc::RecvError
impl Debug for std::sync::nonpoison::condvar::Condvar
impl Debug for WouldBlock
impl Debug for std::sync::once::Once
impl Debug for OnceState
impl Debug for std::sync::poison::condvar::Condvar
impl Debug for std::sync::WaitTimeoutResult
impl Debug for Builder
impl Debug for ThreadId
impl Debug for AccessError
impl Debug for std::thread::scoped::Scope<'_, '_>
impl Debug for std::thread::thread::Thread
impl Debug for std::time::Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for anyhow::Error
impl Debug for Parsed
impl Debug for InternalFixed
impl Debug for InternalNumeric
impl Debug for OffsetFormat
impl Debug for chrono::format::ParseError
impl Debug for Months
impl Debug for ParseMonthError
impl Debug for NaiveDate
The Debug output of the naive date d is the same as
d.format("%Y-%m-%d").
The string printed can be readily parsed via the parse method on str.
§Example
use chrono::NaiveDate;
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(2015, 9, 5).unwrap()), "2015-09-05");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 1).unwrap()), "0000-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(9999, 12, 31).unwrap()), "9999-12-31");ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(-1, 1, 1).unwrap()), "-0001-01-01");
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(10000, 12, 31).unwrap()), "+10000-12-31");impl Debug for NaiveDateDaysIterator
impl Debug for NaiveDateWeeksIterator
impl Debug for NaiveDateTime
The Debug output of the naive date and time dt is the same as
dt.format("%Y-%m-%dT%H:%M:%S%.f").
The string printed can be readily parsed via the parse method on str.
It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)
§Example
use chrono::NaiveDate;
let dt = NaiveDate::from_ymd_opt(2016, 11, 15).unwrap().and_hms_opt(7, 39, 24).unwrap();
assert_eq!(format!("{:?}", dt), "2016-11-15T07:39:24");Leap seconds may also be used.
let dt =
NaiveDate::from_ymd_opt(2015, 6, 30).unwrap().and_hms_milli_opt(23, 59, 59, 1_500).unwrap();
assert_eq!(format!("{:?}", dt), "2015-06-30T23:59:60.500");impl Debug for IsoWeek
The Debug output of the ISO week w is the same as
d.format("%G-W%V")
where d is any NaiveDate value in that week.
§Example
use chrono::{Datelike, NaiveDate};
assert_eq!(
format!("{:?}", NaiveDate::from_ymd_opt(2015, 9, 5).unwrap().iso_week()),
"2015-W36"
);
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 3).unwrap().iso_week()), "0000-W01");
assert_eq!(
format!("{:?}", NaiveDate::from_ymd_opt(9999, 12, 31).unwrap().iso_week()),
"9999-W52"
);ISO 8601 requires an explicit sign for years before 1 BCE or after 9999 CE.
assert_eq!(format!("{:?}", NaiveDate::from_ymd_opt(0, 1, 2).unwrap().iso_week()), "-0001-W52");
assert_eq!(
format!("{:?}", NaiveDate::from_ymd_opt(10000, 12, 31).unwrap().iso_week()),
"+10000-W52"
);impl Debug for Days
impl Debug for NaiveWeek
impl Debug for NaiveTime
The Debug output of the naive time t is the same as
t.format("%H:%M:%S%.f").
The string printed can be readily parsed via the parse method on str.
It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)
§Example
use chrono::NaiveTime;
assert_eq!(format!("{:?}", NaiveTime::from_hms_opt(23, 56, 4).unwrap()), "23:56:04");
assert_eq!(
format!("{:?}", NaiveTime::from_hms_milli_opt(23, 56, 4, 12).unwrap()),
"23:56:04.012"
);
assert_eq!(
format!("{:?}", NaiveTime::from_hms_micro_opt(23, 56, 4, 1234).unwrap()),
"23:56:04.001234"
);
assert_eq!(
format!("{:?}", NaiveTime::from_hms_nano_opt(23, 56, 4, 123456).unwrap()),
"23:56:04.000123456"
);Leap seconds may also be used.
assert_eq!(
format!("{:?}", NaiveTime::from_hms_milli_opt(6, 59, 59, 1_500).unwrap()),
"06:59:60.500"
);impl Debug for FixedOffset
impl Debug for Local
impl Debug for Utc
impl Debug for OutOfRange
impl Debug for OutOfRangeError
impl Debug for TimeDelta
impl Debug for ParseWeekdayError
impl Debug for WeekdaySet
Print the underlying bitmask, padded to 7 bits.
§Example
use chrono::Weekday::*;
assert_eq!(format!("{:?}", WeekdaySet::single(Mon)), "WeekdaySet(0000001)");
assert_eq!(format!("{:?}", WeekdaySet::single(Tue)), "WeekdaySet(0000010)");
assert_eq!(format!("{:?}", WeekdaySet::ALL), "WeekdaySet(1111111)");impl Debug for log::kv::error::Error
impl Debug for ParseLevelError
impl Debug for SetLoggerError
impl Debug for num_traits::ParseFloatError
impl Debug for IgnoredAny
impl Debug for serde_core::de::value::Error
impl Debug for serde_json::error::Error
impl Debug for serde_json::map::IntoIter
impl Debug for serde_json::map::IntoValues
impl Debug for serde_json::map::Map<String, Value>
impl Debug for Number
impl Debug for CompactFormatter
impl Debug for OpaqueOrigin
impl Debug for url::Url
Debug the serialization of this URL.
impl Debug for bitflags::parser::ParseError
impl Debug for BStr
impl Debug for BString
impl Debug for bstr::ext_vec::FromUtf8Error
impl Debug for bstr::utf8::Utf8Error
impl Debug for BugRef
impl Debug for zerocopy::error::AllocError
impl Debug for Status
impl Debug for PadByte
impl Debug for acpi_transition_s_state
impl Debug for x86_power_limit
impl Debug for zx_arm64_exc_data_t
impl Debug for zx_channel_call_args_t
impl Debug for zx_channel_call_etc_args_t
impl Debug for zx_channel_iovec_t
impl Debug for zx_clock_create_args_v1_t
impl Debug for zx_clock_details_v1_t
impl Debug for zx_clock_rate_t
impl Debug for zx_clock_transformation_t
impl Debug for zx_clock_update_args_v1_t
impl Debug for zx_clock_update_args_v2_t
impl Debug for zx_cpu_perf_limit_t
impl Debug for zx_cpu_performance_info_t
impl Debug for zx_cpu_performance_scale_t
impl Debug for zx_cpu_set_t
impl Debug for zx_ecam_window_t
impl Debug for zx_exception_context_t
impl Debug for zx_exception_header_t
impl Debug for zx_exception_info_t
impl Debug for zx_exception_report_t
impl Debug for zx_handle_disposition_t
impl Debug for zx_handle_info_t
impl Debug for zx_info_bti_t
impl Debug for zx_info_cpu_stats_t
impl Debug for zx_info_handle_basic_t
impl Debug for zx_info_handle_count_t
impl Debug for zx_info_job_t
impl Debug for zx_info_kmem_stats_compression_t
impl Debug for zx_info_kmem_stats_extended_t
impl Debug for zx_info_kmem_stats_t
impl Debug for zx_info_maps_mapping_t
impl Debug for zx_info_memory_stall_t
impl Debug for zx_info_process_handle_stats_t
impl Debug for zx_info_process_t
impl Debug for zx_info_resource_t
impl Debug for zx_info_socket_t
impl Debug for zx_info_task_runtime_t
impl Debug for zx_info_task_stats_t
impl Debug for zx_info_thread_stats_t
impl Debug for zx_info_thread_t
impl Debug for zx_info_timer_t
impl Debug for zx_info_vmar_t
impl Debug for zx_info_vmo_t
impl Debug for zx_iob_discipline_mediated_write_ring_buffer_t
impl Debug for zx_iommu_desc_stub_t
impl Debug for zx_iovec_t
impl Debug for zx_irq_t
impl Debug for zx_log_record_t
impl Debug for zx_packet_guest_bell_t
impl Debug for zx_packet_guest_io_t
impl Debug for zx_packet_guest_mem_t
impl Debug for zx_packet_guest_vcpu_interrupt_t
impl Debug for zx_packet_guest_vcpu_startup_t
impl Debug for zx_packet_guest_vcpu_t
impl Debug for zx_packet_interrupt_t
impl Debug for zx_packet_page_request_t
impl Debug for zx_packet_processor_power_level_transition_request_t
impl Debug for zx_packet_signal_t
impl Debug for zx_pci_bar_union_struct
impl Debug for zx_pci_init_arg_t
impl Debug for zx_pci_resource_t
impl Debug for zx_pcie_device_info_t
impl Debug for zx_policy_basic
impl Debug for zx_policy_timer_slack
impl Debug for zx_port_packet_t
impl Debug for zx_power_domain_info_t
impl Debug for zx_processor_power_domain_t
impl Debug for zx_processor_power_level_t
impl Debug for zx_processor_power_level_transition_t
impl Debug for zx_processor_power_state_t
impl Debug for zx_restricted_state_t
impl Debug for zx_restricted_syscall_t
impl Debug for zx_riscv64_exc_data_t
impl Debug for zx_sampler_config_t
impl Debug for zx_sched_deadline_params_t
impl Debug for zx_smc_parameters_t
impl Debug for zx_smc_result_t
impl Debug for zx_string_view_t
impl Debug for zx_thread_state_general_regs_t
impl Debug for zx_vcpu_io_t
impl Debug for zx_vcpu_state_t
impl Debug for zx_wait_item_t
impl Debug for zx_waitset_result_t
impl Debug for zx_x86_64_exc_data_t
impl Debug for Arguments<'_>
impl Debug for starnix_uapi::arch32::__static_assertions::_core::fmt::Error
impl Debug for FormattingOptions
impl Debug for fuse_in_header__bindgen_ty_1
impl Debug for fuse_open_out__bindgen_ty_1
impl Debug for zx_exception_header_arch_t
impl Debug for AHasher
impl Debug for AbortHandle
impl Debug for AbortRegistration
impl Debug for Aborted
impl Debug for AcceptStream
impl Debug for Acceptor
impl Debug for AccessType
impl Debug for AddressTaggingFeatureFlags
impl Debug for AdvisoryLockRange
impl Debug for AdvisoryLockRequest
impl Debug for AdvisoryLockType
impl Debug for AdvisoryLockingAdvisoryLockRequest
impl Debug for AdvisoryLockingAdvisoryLockResponder
impl Debug for AdvisoryLockingControlHandle
impl Debug for AdvisoryLockingEvent
impl Debug for AdvisoryLockingMarker
impl Debug for AdvisoryLockingProxy
impl Debug for AdvisoryLockingRequest
impl Debug for AdvisoryLockingSynchronousProxy
impl Debug for All
impl Debug for AllocateMode
impl Debug for AllowedOffers
impl Debug for AllowedOffers
impl Debug for Alphabet
impl Debug for ArchiveAccessorControlHandle
impl Debug for ArchiveAccessorEvent
impl Debug for ArchiveAccessorMarker
impl Debug for ArchiveAccessorProxy
impl Debug for ArchiveAccessorRequest
impl Debug for ArchiveAccessorStreamDiagnosticsRequest
impl Debug for ArchiveAccessorSynchronousProxy
impl Debug for ArchiveAccessorWaitForReadyResponder
impl Debug for ArrayFormat
impl Debug for ArrayValidation
impl Debug for AtRestFlags
impl Debug for AtomicWaker
impl Debug for Availability
impl Debug for Availability
impl Debug for Availability
impl Debug for AvailabilityList
impl Debug for BackingBuffer
impl Debug for Backoff
impl Debug for BatchIteratorControlHandle
impl Debug for BatchIteratorEvent
impl Debug for BatchIteratorGetNextResponder
impl Debug for BatchIteratorGetNextResponse
impl Debug for BatchIteratorMarker
impl Debug for BatchIteratorProxy
impl Debug for BatchIteratorRequest
impl Debug for BatchIteratorSynchronousProxy
impl Debug for BatchIteratorWaitForReadyResponder
impl Debug for BidiClass
impl Debug for BidiMatchedOpeningBracket
impl Debug for BigEndian
impl Debug for BinderControlHandle
impl Debug for BinderEvent
impl Debug for BinderMarker
impl Debug for BinderProxy
impl Debug for BinderRequest
impl Debug for BinderSynchronousProxy
impl Debug for BlockIndex
impl Debug for BlockType
impl Debug for Bool
impl Debug for BoolProperty
impl Debug for BootControllerControlHandle
impl Debug for BootControllerEvent
impl Debug for BootControllerMarker
impl Debug for BootControllerNotifyResponder
impl Debug for BootControllerProxy
impl Debug for BootControllerRequest
impl Debug for BootControllerSynchronousProxy
impl Debug for BootInstant
impl Debug for BootInstant
impl Debug for BootTimeline
impl Debug for BorrowedChildName
impl Debug for Bti
impl Debug for Bti
impl Debug for BtiInfo
impl Debug for BtiOptions
impl Debug for Buffer
impl Debug for Buffer
impl Debug for BytesProperty
impl Debug for CSDefaultOperandSize
impl Debug for CachePolicy
impl Debug for Canceled
impl Debug for Capability
impl Debug for Capability
impl Debug for CapabilityDecl
impl Debug for CapabilityRef
impl Debug for CapabilityRequestedPayload
impl Debug for CapabilityStoreConnectorCreateRequest
impl Debug for CapabilityStoreConnectorCreateResponder
impl Debug for CapabilityStoreConnectorOpenRequest
impl Debug for CapabilityStoreConnectorOpenResponder
impl Debug for CapabilityStoreControlHandle
impl Debug for CapabilityStoreDictionaryCopyRequest
impl Debug for CapabilityStoreDictionaryCopyResponder
impl Debug for CapabilityStoreDictionaryCreateRequest
impl Debug for CapabilityStoreDictionaryCreateResponder
impl Debug for CapabilityStoreDictionaryDrainRequest
impl Debug for CapabilityStoreDictionaryDrainResponder
impl Debug for CapabilityStoreDictionaryEnumerateRequest
impl Debug for CapabilityStoreDictionaryEnumerateResponder
impl Debug for CapabilityStoreDictionaryGetRequest
impl Debug for CapabilityStoreDictionaryGetResponder
impl Debug for CapabilityStoreDictionaryInsertRequest
impl Debug for CapabilityStoreDictionaryInsertResponder
impl Debug for CapabilityStoreDictionaryKeysRequest
impl Debug for CapabilityStoreDictionaryKeysResponder
impl Debug for CapabilityStoreDictionaryLegacyExportRequest
impl Debug for CapabilityStoreDictionaryLegacyExportResponder
impl Debug for CapabilityStoreDictionaryLegacyImportRequest
impl Debug for CapabilityStoreDictionaryLegacyImportResponder
impl Debug for CapabilityStoreDictionaryRemoveRequest
impl Debug for CapabilityStoreDictionaryRemoveResponder
impl Debug for CapabilityStoreDirConnectorCreateRequest
impl Debug for CapabilityStoreDirConnectorCreateResponder
impl Debug for CapabilityStoreDirConnectorOpenRequest
impl Debug for CapabilityStoreDirConnectorOpenResponder
impl Debug for CapabilityStoreDropRequest
impl Debug for CapabilityStoreDropResponder
impl Debug for CapabilityStoreDuplicateRequest
impl Debug for CapabilityStoreDuplicateResponder
impl Debug for CapabilityStoreError
impl Debug for CapabilityStoreEvent
impl Debug for CapabilityStoreExportRequest
impl Debug for CapabilityStoreExportResponder
impl Debug for CapabilityStoreExportResponse
impl Debug for CapabilityStoreImportRequest
impl Debug for CapabilityStoreImportResponder
impl Debug for CapabilityStoreMarker
impl Debug for CapabilityStoreProxy
impl Debug for CapabilityStoreRequest
impl Debug for CapabilityStoreSynchronousProxy
impl Debug for CapabilityTypeName
impl Debug for CapabilityTypeNameIter
impl Debug for Channel
impl Debug for Channel
impl Debug for Child
impl Debug for ChildDecl
impl Debug for ChildIteratorControlHandle
impl Debug for ChildIteratorEvent
impl Debug for ChildIteratorMarker
impl Debug for ChildIteratorNextResponder
impl Debug for ChildIteratorNextResponse
impl Debug for ChildIteratorProxy
impl Debug for ChildIteratorRequest
impl Debug for ChildIteratorSynchronousProxy
impl Debug for ChildLocation
impl Debug for ChildName
impl Debug for ChildRef
impl Debug for ChildRef
impl Debug for Client
impl Debug for ClientSelectorConfiguration
impl Debug for ClockOpts
impl Debug for CloneableCloneRequest
impl Debug for CloneableControlHandle
impl Debug for CloneableEvent
impl Debug for CloneableMarker
impl Debug for CloneableProxy
impl Debug for CloneableRequest
impl Debug for CloneableSynchronousProxy
impl Debug for CloseableCloseResponder
impl Debug for CloseableControlHandle
impl Debug for CloseableEvent
impl Debug for CloseableMarker
impl Debug for CloseableProxy
impl Debug for CloseableRequest
impl Debug for CloseableSynchronousProxy
impl Debug for Collection
impl Debug for CollectionAllocErr
impl Debug for CollectionDecl
impl Debug for CollectionRef
impl Debug for Collector
impl Debug for CompareResult
impl Debug for Component
impl Debug for Component
impl Debug for ComponentControllerControlHandle
impl Debug for ComponentControllerEvent
impl Debug for ComponentControllerMarker
impl Debug for ComponentControllerOnEscrowRequest
impl Debug for ComponentControllerOnPublishDiagnosticsRequest
impl Debug for ComponentControllerProxy
impl Debug for ComponentControllerRequest
impl Debug for ComponentControllerSynchronousProxy
impl Debug for ComponentCrashInfo
impl Debug for ComponentDecl
impl Debug for ComponentDiagnostics
impl Debug for ComponentDiagnostics
impl Debug for ComponentNamespaceEntry
impl Debug for ComponentRunnerControlHandle
impl Debug for ComponentRunnerEvent
impl Debug for ComponentRunnerMarker
impl Debug for ComponentRunnerProxy
impl Debug for ComponentRunnerRequest
impl Debug for ComponentRunnerStartRequest
impl Debug for ComponentRunnerSynchronousProxy
impl Debug for ComponentSelector
impl Debug for ComponentStartInfo
impl Debug for ComponentStopInfo
impl Debug for ComponentTasks
impl Debug for ComponentTasks
impl Debug for ConfigChecksum
impl Debug for ConfigChecksum
impl Debug for ConfigDecl
impl Debug for ConfigField
impl Debug for ConfigField
impl Debug for ConfigMutability
impl Debug for ConfigMutability
impl Debug for ConfigNestedValueType
impl Debug for ConfigOverride
impl Debug for ConfigOverride
impl Debug for ConfigOverrideControlHandle
impl Debug for ConfigOverrideError
impl Debug for ConfigOverrideEvent
impl Debug for ConfigOverrideMarker
impl Debug for ConfigOverrideProxy
impl Debug for ConfigOverrideRequest
impl Debug for ConfigOverrideSetStructuredConfigRequest
impl Debug for ConfigOverrideSetStructuredConfigResponder
impl Debug for ConfigOverrideSynchronousProxy
impl Debug for ConfigOverrideUnsetStructuredConfigRequest
impl Debug for ConfigOverrideUnsetStructuredConfigResponder
impl Debug for ConfigSchema
impl Debug for ConfigSingleValue
impl Debug for ConfigSingleValue
impl Debug for ConfigSourceCapabilities
impl Debug for ConfigSourceCapabilities
impl Debug for ConfigType
impl Debug for ConfigTypeLayout
impl Debug for ConfigValue
impl Debug for ConfigValue
impl Debug for ConfigValueSource
impl Debug for ConfigValueSource
impl Debug for ConfigValueSpec
impl Debug for ConfigValueSpec
impl Debug for ConfigValueType
impl Debug for ConfigValuesData
impl Debug for ConfigValuesData
impl Debug for ConfigVectorValue
impl Debug for ConfigVectorValue
impl Debug for Configuration
impl Debug for ConfigurationDecl
impl Debug for ConfigurationError
impl Debug for ConnectToStorageAdminError
impl Debug for ConnectionInfo
impl Debug for Connector
impl Debug for ConnectorRouterControlHandle
impl Debug for ConnectorRouterEvent
impl Debug for ConnectorRouterMarker
impl Debug for ConnectorRouterProxy
impl Debug for ConnectorRouterRequest
impl Debug for ConnectorRouterRouteResponder
impl Debug for ConnectorRouterRouteResponse
impl Debug for ConnectorRouterSynchronousProxy
impl Debug for ConstructNamespaceError
impl Debug for Container
impl Debug for Context
impl Debug for Context
impl Debug for ControllerControlHandle
impl Debug for ControllerDestroyResponder
impl Debug for ControllerEvent
impl Debug for ControllerGetExposedDictionaryResponder
impl Debug for ControllerGetExposedDictionaryResponse
impl Debug for ControllerIsStartedResponder
impl Debug for ControllerIsStartedResponse
impl Debug for ControllerMarker
impl Debug for ControllerOpenExposedDirRequest
impl Debug for ControllerOpenExposedDirResponder
impl Debug for ControllerProxy
impl Debug for ControllerRequest
impl Debug for ControllerStartRequest
impl Debug for ControllerStartResponder
impl Debug for ControllerSynchronousProxy
impl Debug for Counter
impl Debug for CpuFeatureFlags
impl Debug for CrashIntrospectControlHandle
impl Debug for CrashIntrospectEvent
impl Debug for CrashIntrospectFindComponentByThreadKoidRequest
impl Debug for CrashIntrospectFindComponentByThreadKoidResponder
impl Debug for CrashIntrospectFindComponentByThreadKoidResponse
impl Debug for CrashIntrospectMarker
impl Debug for CrashIntrospectProxy
impl Debug for CrashIntrospectRequest
impl Debug for CrashIntrospectSynchronousProxy
impl Debug for CreateChildArgs
impl Debug for CreateError
impl Debug for DIR
impl Debug for Data
impl Debug for Data
impl Debug for DataRouterControlHandle
impl Debug for DataRouterEvent
impl Debug for DataRouterMarker
impl Debug for DataRouterProxy
impl Debug for DataRouterRequest
impl Debug for DataRouterRouteResponder
impl Debug for DataRouterRouteResponse
impl Debug for DataRouterSynchronousProxy
impl Debug for DataType
impl Debug for DatagramSocket
impl Debug for DebugLog
impl Debug for DebugLogOpts
impl Debug for DebugLogRecord
impl Debug for DebugLogSeverity
impl Debug for DebugProtocolRegistration
impl Debug for DebugProtocolRegistration
impl Debug for DebugRef
impl Debug for DebugRegistration
impl Debug for DebugRegistration
impl Debug for DebugStartedPayload
impl Debug for DeclField
impl Debug for DeclType
impl Debug for DeclType
impl Debug for DecodeError
impl Debug for DecodeMetadata
impl Debug for DecodePaddingMode
impl Debug for DecodeSliceError
impl Debug for DefaultFuchsiaResourceDialect
impl Debug for DeletionError
impl Debug for DeletionError
impl Debug for DeliveryType
impl Debug for DeliveryType
impl Debug for DependencyNode
impl Debug for DependencyType
impl Debug for DependencyType
impl Debug for DependencyType
impl Debug for DestroyError
impl Debug for DestroyedPayload
impl Debug for Dictionary
impl Debug for Dictionary
impl Debug for DictionaryControlHandle
impl Debug for DictionaryDecl
impl Debug for DictionaryDrainIteratorControlHandle
impl Debug for DictionaryDrainIteratorEvent
impl Debug for DictionaryDrainIteratorGetNextRequest
impl Debug for DictionaryDrainIteratorGetNextResponder
impl Debug for DictionaryDrainIteratorGetNextResponse
impl Debug for DictionaryDrainIteratorMarker
impl Debug for DictionaryDrainIteratorProxy
impl Debug for DictionaryDrainIteratorRequest
impl Debug for DictionaryDrainIteratorSynchronousProxy
impl Debug for DictionaryEntry
impl Debug for DictionaryEntry
impl Debug for DictionaryEnumerateIteratorControlHandle
impl Debug for DictionaryEnumerateIteratorEvent
impl Debug for DictionaryEnumerateIteratorGetNextRequest
impl Debug for DictionaryEnumerateIteratorGetNextResponder
impl Debug for DictionaryEnumerateIteratorGetNextResponse
impl Debug for DictionaryEnumerateIteratorMarker
impl Debug for DictionaryEnumerateIteratorProxy
impl Debug for DictionaryEnumerateIteratorRequest
impl Debug for DictionaryEnumerateIteratorSynchronousProxy
impl Debug for DictionaryError
impl Debug for DictionaryEvent
impl Debug for DictionaryItem
impl Debug for DictionaryKeysIteratorControlHandle
impl Debug for DictionaryKeysIteratorEvent
impl Debug for DictionaryKeysIteratorGetNextResponder
impl Debug for DictionaryKeysIteratorGetNextResponse
impl Debug for DictionaryKeysIteratorMarker
impl Debug for DictionaryKeysIteratorProxy
impl Debug for DictionaryKeysIteratorRequest
impl Debug for DictionaryKeysIteratorSynchronousProxy
impl Debug for DictionaryMarker
impl Debug for DictionaryOptionalItem
impl Debug for DictionaryProxy
impl Debug for DictionaryRef
impl Debug for DictionaryRequest
impl Debug for DictionaryRouterControlHandle
impl Debug for DictionaryRouterEvent
impl Debug for DictionaryRouterMarker
impl Debug for DictionaryRouterProxy
impl Debug for DictionaryRouterRequest
impl Debug for DictionaryRouterRouteResponder
impl Debug for DictionaryRouterRouteResponse
impl Debug for DictionaryRouterSynchronousProxy
impl Debug for DictionarySource
impl Debug for DictionarySynchronousProxy
impl Debug for DictionaryValue
impl Debug for DictionaryValue
impl Debug for DirConnector
impl Debug for DirConnectorRouterControlHandle
impl Debug for DirConnectorRouterEvent
impl Debug for DirConnectorRouterMarker
impl Debug for DirConnectorRouterProxy
impl Debug for DirConnectorRouterRequest
impl Debug for DirConnectorRouterRouteResponder
impl Debug for DirConnectorRouterRouteResponse
impl Debug for DirConnectorRouterSynchronousProxy
impl Debug for DirEntry
impl Debug for DirEntryRouterControlHandle
impl Debug for DirEntryRouterEvent
impl Debug for DirEntryRouterMarker
impl Debug for DirEntryRouterProxy
impl Debug for DirEntryRouterRequest
impl Debug for DirEntryRouterRouteResponder
impl Debug for DirEntryRouterRouteResponse
impl Debug for DirEntryRouterSynchronousProxy
impl Debug for DirReceiverControlHandle
impl Debug for DirReceiverEvent
impl Debug for DirReceiverMarker
impl Debug for DirReceiverProxy
impl Debug for DirReceiverReceiveRequest
impl Debug for DirReceiverRequest
impl Debug for DirReceiverSynchronousProxy
impl Debug for Direction
impl Debug for Directory
impl Debug for DirectoryAdvisoryLockResponder
impl Debug for DirectoryCloseResponder
impl Debug for DirectoryControlHandle
impl Debug for DirectoryCreateSymlinkRequest
impl Debug for DirectoryCreateSymlinkResponder
impl Debug for DirectoryDecl
impl Debug for DirectoryDeprecatedGetAttrResponder
impl Debug for DirectoryDeprecatedGetFlagsResponder
impl Debug for DirectoryDeprecatedOpenRequest
impl Debug for DirectoryDeprecatedSetAttrResponder
impl Debug for DirectoryDeprecatedSetFlagsResponder
impl Debug for DirectoryEvent
impl Debug for DirectoryGetAttributesResponder
impl Debug for DirectoryGetExtendedAttributeResponder
impl Debug for DirectoryGetFlagsResponder
impl Debug for DirectoryGetTokenResponder
impl Debug for DirectoryGetTokenResponse
impl Debug for DirectoryInfo
impl Debug for DirectoryLinkRequest
impl Debug for DirectoryLinkResponder
impl Debug for DirectoryLinkResponse
impl Debug for DirectoryMarker
impl Debug for DirectoryObject
impl Debug for DirectoryOpenRequest
impl Debug for DirectoryProxy
impl Debug for DirectoryQueryFilesystemResponder
impl Debug for DirectoryQueryResponder
impl Debug for DirectoryReadDirentsRequest
impl Debug for DirectoryReadDirentsResponder
impl Debug for DirectoryReadDirentsResponse
impl Debug for DirectoryRemoveExtendedAttributeResponder
impl Debug for DirectoryRenameRequest
impl Debug for DirectoryRenameResponder
impl Debug for DirectoryRequest
impl Debug for DirectoryRewindResponder
impl Debug for DirectoryRewindResponse
impl Debug for DirectoryRouterControlHandle
impl Debug for DirectoryRouterEvent
impl Debug for DirectoryRouterMarker
impl Debug for DirectoryRouterProxy
impl Debug for DirectoryRouterRequest
impl Debug for DirectoryRouterRouteResponder
impl Debug for DirectoryRouterRouteResponse
impl Debug for DirectoryRouterSynchronousProxy
impl Debug for DirectorySetExtendedAttributeResponder
impl Debug for DirectorySetFlagsResponder
impl Debug for DirectorySyncResponder
impl Debug for DirectorySynchronousProxy
impl Debug for DirectoryUnlinkRequest
impl Debug for DirectoryUnlinkResponder
impl Debug for DirectoryUpdateAttributesResponder
impl Debug for DirectoryWatchRequest
impl Debug for DirectoryWatchResponder
impl Debug for DirectoryWatchResponse
impl Debug for DirectoryWatcherControlHandle
impl Debug for DirectoryWatcherEvent
impl Debug for DirectoryWatcherMarker
impl Debug for DirectoryWatcherProxy
impl Debug for DirectoryWatcherRequest
impl Debug for DirectoryWatcherSynchronousProxy
impl Debug for DirentType
impl Debug for DiscoveredPayload
impl Debug for Dl_info
impl Debug for Domain
impl Debug for Double
impl Debug for DoubleArrayProperty
impl Debug for DoubleExponentialHistogramProperty
impl Debug for DoubleLinearHistogramProperty
impl Debug for DoubleProperty
impl Debug for Durability
impl Debug for Durability
impl Debug for DynamicFlags
impl Debug for EHandle
impl Debug for Elf32_Phdr
impl Debug for Elf64_Phdr
impl Debug for Empty
impl Debug for EmptyStruct
impl Debug for EncodeSliceError
impl Debug for Endianness
impl Debug for Enter
impl Debug for EnterError
impl Debug for Environment
impl Debug for EnvironmentDecl
impl Debug for EnvironmentExtends
impl Debug for EnvironmentRef
impl Debug for EpitaphBody
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for Error
impl Debug for ErrorKind
impl Debug for ErrorList
impl Debug for Errors
impl Debug for EscrowToken
impl Debug for Event
impl Debug for Event
impl Debug for EventHeader
impl Debug for EventPair
impl Debug for EventPayload
impl Debug for EventScope
impl Debug for EventStream
impl Debug for EventStreamControlHandle
impl Debug for EventStreamDecl
impl Debug for EventStreamEvent
impl Debug for EventStreamGetNextResponder
impl Debug for EventStreamGetNextResponse
impl Debug for EventStreamMarker
impl Debug for EventStreamProxy
impl Debug for EventStreamRequest
impl Debug for EventStreamSynchronousProxy
impl Debug for EventStreamWaitForReadyResponder
impl Debug for EventSubscription
impl Debug for EventType
impl Debug for Exception
impl Debug for Exception
impl Debug for ExceptionArchData
impl Debug for ExceptionChannelOptions
impl Debug for ExceptionChannelType
impl Debug for ExceptionReport
impl Debug for ExceptionType
impl Debug for ExecutionControllerControlHandle
impl Debug for ExecutionControllerEvent
impl Debug for ExecutionControllerMarker
impl Debug for ExecutionControllerOnStopRequest
impl Debug for ExecutionControllerProxy
impl Debug for ExecutionControllerRequest
impl Debug for ExecutionControllerSynchronousProxy
impl Debug for ExecutionInfo
impl Debug for Expose
impl Debug for ExposeConfiguration
impl Debug for ExposeConfigurationDecl
impl Debug for ExposeDecl
impl Debug for ExposeDictionary
impl Debug for ExposeDictionaryDecl
impl Debug for ExposeDirectory
impl Debug for ExposeDirectoryDecl
impl Debug for ExposeProtocol
impl Debug for ExposeProtocolDecl
impl Debug for ExposeResolver
impl Debug for ExposeResolverDecl
impl Debug for ExposeRunner
impl Debug for ExposeRunnerDecl
impl Debug for ExposeService
impl Debug for ExposeServiceDecl
impl Debug for ExposeSource
impl Debug for ExposeTarget
impl Debug for ExtendedAttributeIteratorControlHandle
impl Debug for ExtendedAttributeIteratorEvent
impl Debug for ExtendedAttributeIteratorGetNextResponder
impl Debug for ExtendedAttributeIteratorGetNextResponse
impl Debug for ExtendedAttributeIteratorMarker
impl Debug for ExtendedAttributeIteratorProxy
impl Debug for ExtendedAttributeIteratorRequest
impl Debug for ExtendedAttributeIteratorSynchronousProxy
impl Debug for ExtendedAttributeValue
impl Debug for ExtendedMoniker
impl Debug for Extent
impl Debug for FILE
impl Debug for FakeTime
impl Debug for FeatureKind
impl Debug for FileAdvisoryLockResponder
impl Debug for FileAllocateRequest
impl Debug for FileAllocateResponder
impl Debug for FileCloseResponder
impl Debug for FileControlHandle
impl Debug for FileDeprecatedGetAttrResponder
impl Debug for FileDeprecatedGetFlagsResponder
impl Debug for FileDeprecatedSetAttrResponder
impl Debug for FileDeprecatedSetFlagsResponder
impl Debug for FileDescribeResponder
impl Debug for FileEnableVerityRequest
impl Debug for FileEnableVerityResponder
impl Debug for FileEvent
impl Debug for FileGetAttributesResponder
impl Debug for FileGetBackingMemoryRequest
impl Debug for FileGetBackingMemoryResponder
impl Debug for FileGetBackingMemoryResponse
impl Debug for FileGetExtendedAttributeResponder
impl Debug for FileGetFlagsResponder
impl Debug for FileInfo
impl Debug for FileLinkIntoResponder
impl Debug for FileMarker
impl Debug for FileObject
impl Debug for FileProxy
impl Debug for FileQueryFilesystemResponder
impl Debug for FileQueryResponder
impl Debug for FileReadAtRequest
impl Debug for FileReadAtResponder
impl Debug for FileReadAtResponse
impl Debug for FileReadResponder
impl Debug for FileRemoveExtendedAttributeResponder
impl Debug for FileRequest
impl Debug for FileResizeRequest
impl Debug for FileResizeResponder
impl Debug for FileSeekRequest
impl Debug for FileSeekResponder
impl Debug for FileSeekResponse
impl Debug for FileSetExtendedAttributeResponder
impl Debug for FileSetFlagsResponder
impl Debug for FileSignal
impl Debug for FileSyncResponder
impl Debug for FileSynchronousProxy
impl Debug for FileUpdateAttributesResponder
impl Debug for FileWriteAtRequest
impl Debug for FileWriteAtResponder
impl Debug for FileWriteAtResponse
impl Debug for FileWriteResponder
impl Debug for FilesystemInfo
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for Finder
impl Debug for FinderBuilder
impl Debug for FinderRev
impl Debug for FinderRev
impl Debug for Flags
impl Debug for FlyByteStr
impl Debug for FlyStr
impl Debug for Format
impl Debug for FormattedContent
impl Debug for FrameworkErr
impl Debug for FrameworkRef
impl Debug for Free
impl Debug for FuchsiaProxyBox
impl Debug for Futex
impl Debug for GPAddr
impl Debug for GeneralPurpose
impl Debug for GeneralPurposeConfig
impl Debug for GetAllInstancesError
impl Debug for GetDeclarationError
impl Debug for GetDisjointMutError
impl Debug for GetInstanceError
impl Debug for GetStructuredConfigError
impl Debug for GetTimezoneError
impl Debug for Guard
impl Debug for Guest
impl Debug for GuestBellPacket
impl Debug for GuestIoPacket
impl Debug for GuestMemPacket
impl Debug for GuestVcpuPacket
impl Debug for Handle
impl Debug for HandleBasicInfo
impl Debug for HandleCountInfo
impl Debug for HandleInfo
impl Debug for HandleInfo
impl Debug for HandleInfo
impl Debug for HandleInfoError
impl Debug for HandleType
impl Debug for HandleType
impl Debug for HashAlgorithm
impl Debug for Header
impl Debug for HierarchyMatcher
impl Debug for ImmutableNodeAttributes
impl Debug for IncrementingFakeTime
impl Debug for InspectSinkControlHandle
impl Debug for InspectSinkEscrowRequest
impl Debug for InspectSinkEvent
impl Debug for InspectSinkFetchEscrowRequest
impl Debug for InspectSinkFetchEscrowResponder
impl Debug for InspectSinkFetchEscrowResponse
impl Debug for InspectSinkMarker
impl Debug for InspectSinkProxy
impl Debug for InspectSinkPublishRequest
impl Debug for InspectSinkRequest
impl Debug for InspectSinkSynchronousProxy
impl Debug for Instance
impl Debug for InstanceIteratorControlHandle
impl Debug for InstanceIteratorEvent
impl Debug for InstanceIteratorMarker
impl Debug for InstanceIteratorNextResponder
impl Debug for InstanceIteratorNextResponse
impl Debug for InstanceIteratorProxy
impl Debug for InstanceIteratorRequest
impl Debug for InstanceIteratorSynchronousProxy
impl Debug for InstanceToken
impl Debug for InstanceType
impl Debug for Int
impl Debug for IntArrayProperty
impl Debug for IntExponentialHistogramProperty
impl Debug for IntLinearHistogramProperty
impl Debug for IntProperty
impl Debug for Interest
impl Debug for Interest
impl Debug for InterfaceIndexOrAddress
impl Debug for InterruptPacket
impl Debug for Interval
impl Debug for IntrospectorControlHandle
impl Debug for IntrospectorEvent
impl Debug for IntrospectorGetMonikerRequest
impl Debug for IntrospectorGetMonikerResponder
impl Debug for IntrospectorGetMonikerResponse
impl Debug for IntrospectorMarker
impl Debug for IntrospectorProxy
impl Debug for IntrospectorRequest
impl Debug for IntrospectorSynchronousProxy
impl Debug for InvalidThreadAccess
impl Debug for Iob
impl Debug for IobAccess
impl Debug for Iommu
impl Debug for Iommu
impl Debug for IommuDescStub
impl Debug for IsNormalized
impl Debug for Job
impl Debug for JobAction
impl Debug for JobCondition
impl Debug for JobCriticalOptions
impl Debug for JobDefaultTimerMode
impl Debug for JobInfo
impl Debug for JobPolicy
impl Debug for JobPolicyOption
impl Debug for Koid
impl Debug for LaunchInfo
impl Debug for LauncherAddArgsRequest
impl Debug for LauncherAddEnvironsRequest
impl Debug for LauncherAddHandlesRequest
impl Debug for LauncherAddNamesRequest
impl Debug for LauncherControlHandle
impl Debug for LauncherCreateWithoutStartingRequest
impl Debug for LauncherCreateWithoutStartingResponder
impl Debug for LauncherCreateWithoutStartingResponse
impl Debug for LauncherEvent
impl Debug for LauncherLaunchRequest
impl Debug for LauncherLaunchResponder
impl Debug for LauncherLaunchResponse
impl Debug for LauncherMarker
impl Debug for LauncherProxy
impl Debug for LauncherRequest
impl Debug for LauncherSetOptionsRequest
impl Debug for LauncherSynchronousProxy
impl Debug for LayoutConstraint
impl Debug for LayoutParameter
impl Debug for LazyNode
impl Debug for Level
impl Debug for LifecycleControllerControlHandle
impl Debug for LifecycleControllerCreateInstanceRequest
impl Debug for LifecycleControllerCreateInstanceResponder
impl Debug for LifecycleControllerDestroyInstanceRequest
impl Debug for LifecycleControllerDestroyInstanceResponder
impl Debug for LifecycleControllerEvent
impl Debug for LifecycleControllerMarker
impl Debug for LifecycleControllerProxy
impl Debug for LifecycleControllerRequest
impl Debug for LifecycleControllerResolveInstanceRequest
impl Debug for LifecycleControllerResolveInstanceResponder
impl Debug for LifecycleControllerStartInstanceRequest
impl Debug for LifecycleControllerStartInstanceResponder
impl Debug for LifecycleControllerStartInstanceWithArgsRequest
impl Debug for LifecycleControllerStartInstanceWithArgsResponder
impl Debug for LifecycleControllerStopInstanceRequest
impl Debug for LifecycleControllerStopInstanceResponder
impl Debug for LifecycleControllerSynchronousProxy
impl Debug for LifecycleControllerUnresolveInstanceRequest
impl Debug for LifecycleControllerUnresolveInstanceResponder
impl Debug for Link
impl Debug for LinkNodeDisposition
impl Debug for LinkableControlHandle
impl Debug for LinkableEvent
impl Debug for LinkableLinkIntoRequest
impl Debug for LinkableLinkIntoResponder
impl Debug for LinkableMarker
impl Debug for LinkableProxy
impl Debug for LinkableRequest
impl Debug for LinkableSynchronousProxy
impl Debug for LittleEndian
impl Debug for LoaderCloneRequest
impl Debug for LoaderCloneResponder
impl Debug for LoaderCloneResponse
impl Debug for LoaderConfigRequest
impl Debug for LoaderConfigResponder
impl Debug for LoaderConfigResponse
impl Debug for LoaderControlHandle
impl Debug for LoaderEvent
impl Debug for LoaderLoadObjectRequest
impl Debug for LoaderLoadObjectResponder
impl Debug for LoaderLoadObjectResponse
impl Debug for LoaderMarker
impl Debug for LoaderProxy
impl Debug for LoaderRequest
impl Debug for LoaderSynchronousProxy
impl Debug for LocalExecutor
impl Debug for LocalHandle
impl Debug for LocalPool
impl Debug for LocalSpawner
impl Debug for LogFlusherControlHandle
impl Debug for LogFlusherEvent
impl Debug for LogFlusherMarker
impl Debug for LogFlusherProxy
impl Debug for LogFlusherRequest
impl Debug for LogFlusherSynchronousProxy
impl Debug for LogFlusherWaitUntilFlushedResponder
impl Debug for LogInterestSelector
impl Debug for LogSettingsControlHandle
impl Debug for LogSettingsEvent
impl Debug for LogSettingsMarker
impl Debug for LogSettingsProxy
impl Debug for LogSettingsRequest
impl Debug for LogSettingsSetComponentInterestRequest
impl Debug for LogSettingsSetComponentInterestResponder
impl Debug for LogSettingsSetInterestRequest
impl Debug for LogSettingsSetInterestResponder
impl Debug for LogSettingsSynchronousProxy
impl Debug for LogStreamConnectRequest
impl Debug for LogStreamControlHandle
impl Debug for LogStreamEvent
impl Debug for LogStreamMarker
impl Debug for LogStreamOptions
impl Debug for LogStreamProxy
impl Debug for LogStreamRequest
impl Debug for LogStreamSynchronousProxy
impl Debug for ManifestBytesIteratorControlHandle
impl Debug for ManifestBytesIteratorEvent
impl Debug for ManifestBytesIteratorMarker
impl Debug for ManifestBytesIteratorNextResponder
impl Debug for ManifestBytesIteratorNextResponse
impl Debug for ManifestBytesIteratorProxy
impl Debug for ManifestBytesIteratorRequest
impl Debug for ManifestBytesIteratorSynchronousProxy
impl Debug for MapInfo
impl Debug for MappingDetails
impl Debug for MemAccessSize
impl Debug for MemData
impl Debug for MemStats
impl Debug for MemStatsCompression
impl Debug for MemStatsExtended
impl Debug for MemoryStall
impl Debug for MemoryStallKind
impl Debug for MessageBuf
impl Debug for MessageBufEtc
impl Debug for Metadata
impl Debug for MethodType
impl Debug for MissingValue
impl Debug for MissingValueReason
impl Debug for ModeType
impl Debug for Moniker
impl Debug for MonikerError
impl Debug for MonotonicInstant
impl Debug for MonotonicInstant
impl Debug for MonotonicTimeline
impl Debug for Msi
impl Debug for MutableNodeAttributes
impl Debug for Name
impl Debug for Name
impl Debug for Name
impl Debug for NameInfo
impl Debug for NameMapping
impl Debug for NameMapping
impl Debug for NamespaceControlHandle
impl Debug for NamespaceCreateRequest
impl Debug for NamespaceCreateResponder
impl Debug for NamespaceCreateResponse
impl Debug for NamespaceEntry
impl Debug for NamespaceError
impl Debug for NamespaceEvent
impl Debug for NamespaceInputEntry
impl Debug for NamespaceMarker
impl Debug for NamespacePath
impl Debug for NamespaceProxy
impl Debug for NamespaceRequest
impl Debug for NamespaceSynchronousProxy
impl Debug for Needed
impl Debug for Node
impl Debug for Node
impl Debug for Node
impl Debug for NodeAttributeFlags
impl Debug for NodeAttributes
impl Debug for NodeAttributes2
impl Debug for NodeAttributesQuery
impl Debug for NodeCloseResponder
impl Debug for NodeControlHandle
impl Debug for NodeDeprecatedCloneRequest
impl Debug for NodeDeprecatedGetAttrResponder
impl Debug for NodeDeprecatedGetAttrResponse
impl Debug for NodeDeprecatedGetFlagsResponder
impl Debug for NodeDeprecatedGetFlagsResponse
impl Debug for NodeDeprecatedSetAttrRequest
impl Debug for NodeDeprecatedSetAttrResponder
impl Debug for NodeDeprecatedSetAttrResponse
impl Debug for NodeDeprecatedSetFlagsRequest
impl Debug for NodeDeprecatedSetFlagsResponder
impl Debug for NodeDeprecatedSetFlagsResponse
impl Debug for NodeEvent
impl Debug for NodeGetAttributesRequest
impl Debug for NodeGetAttributesResponder
impl Debug for NodeGetExtendedAttributeRequest
impl Debug for NodeGetExtendedAttributeResponder
impl Debug for NodeGetFlagsResponder
impl Debug for NodeGetFlagsResponse
impl Debug for NodeInfo
impl Debug for NodeInfoDeprecated
impl Debug for NodeListExtendedAttributesRequest
impl Debug for NodeMarker
impl Debug for NodeOnOpenRequest
impl Debug for NodeProtocolKinds
impl Debug for NodeProxy
impl Debug for NodeQueryFilesystemResponder
impl Debug for NodeQueryFilesystemResponse
impl Debug for NodeQueryResponder
impl Debug for NodeRemoveExtendedAttributeRequest
impl Debug for NodeRemoveExtendedAttributeResponder
impl Debug for NodeRequest
impl Debug for NodeSetExtendedAttributeRequest
impl Debug for NodeSetExtendedAttributeResponder
impl Debug for NodeSetFlagsRequest
impl Debug for NodeSetFlagsResponder
impl Debug for NodeSyncResponder
impl Debug for NodeSynchronousProxy
impl Debug for NodeUpdateAttributesResponder
impl Debug for NsUnit
impl Debug for NullableHandle
impl Debug for NumberValidation
impl Debug for ObjectType
impl Debug for ObjectValidation
impl Debug for Offer
impl Debug for OfferConfiguration
impl Debug for OfferConfigurationDecl
impl Debug for OfferDecl
impl Debug for OfferDictionary
impl Debug for OfferDictionaryDecl
impl Debug for OfferDirectory
impl Debug for OfferDirectoryDecl
impl Debug for OfferEventStream
impl Debug for OfferEventStreamDecl
impl Debug for OfferProtocol
impl Debug for OfferProtocolDecl
impl Debug for OfferResolver
impl Debug for OfferResolverDecl
impl Debug for OfferRunner
impl Debug for OfferRunnerDecl
impl Debug for OfferService
impl Debug for OfferServiceDecl
impl Debug for OfferSource
impl Debug for OfferStorage
impl Debug for OfferStorageDecl
impl Debug for OfferTarget
impl Debug for OnTerminate
impl Debug for OnTerminate
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for One
impl Debug for One
impl Debug for One
impl Debug for OpenDirType
impl Debug for OpenError
impl Debug for OpenFlags
impl Debug for Operations
impl Debug for Options
impl Debug for Package
impl Debug for Packet
impl Debug for PacketContents
impl Debug for Pager
impl Debug for Pager
impl Debug for PagerOptions
impl Debug for PagerPacket
impl Debug for PagerWritebackBeginOptions
impl Debug for Pair
impl Debug for ParagraphInfo
impl Debug for ParentRef
impl Debug for Parker
impl Debug for ParseAlphabetError
impl Debug for ParseError
impl Debug for ParseError
impl Debug for ParseError
impl Debug for ParseNameError
impl Debug for PartialNodeHierarchy
impl Debug for Path
impl Debug for PciDevice
impl Debug for PerCpuStats
impl Debug for PerformanceConfiguration
impl Debug for Pmt
impl Debug for Pmt
impl Debug for PolicyCode
impl Debug for PollNext
impl Debug for Port
impl Debug for PortAccessSize
impl Debug for PortData
impl Debug for Position
impl Debug for PowerTransitionPacket
impl Debug for PrefilterConfig
impl Debug for Process
impl Debug for ProcessHandleStats
impl Debug for ProcessInfo
impl Debug for ProcessInfoFlags
impl Debug for ProcessOptions
impl Debug for ProcessStartData
impl Debug for Profile
impl Debug for Program
impl Debug for ProgramDecl
impl Debug for Property
impl Debug for PropertyFormat
impl Debug for PropertySelector
impl Debug for Protocol
impl Debug for Protocol
impl Debug for ProtocolDecl
impl Debug for ProtocolPayload
impl Debug for PurgedPayload
impl Debug for QueryableControlHandle
impl Debug for QueryableEvent
impl Debug for QueryableMarker
impl Debug for QueryableProxy
impl Debug for QueryableQueryResponder
impl Debug for QueryableQueryResponse
impl Debug for QueryableRequest
impl Debug for QueryableSynchronousProxy
impl Debug for RaiseExceptionOptions
impl Debug for RandomState
impl Debug for Range
impl Debug for ReadableControlHandle
impl Debug for ReadableEvent
impl Debug for ReadableMarker
impl Debug for ReadableProxy
impl Debug for ReadableReadRequest
impl Debug for ReadableReadResponder
impl Debug for ReadableReadResponse
impl Debug for ReadableRequest
impl Debug for ReadableState
impl Debug for ReadableSynchronousProxy
impl Debug for ReaderError
impl Debug for ReaderError
impl Debug for ReadyTimeoutError
impl Debug for RealInterruptKind
impl Debug for RealmControlHandle
impl Debug for RealmCreateChildRequest
impl Debug for RealmCreateChildResponder
impl Debug for RealmDestroyChildRequest
impl Debug for RealmDestroyChildResponder
impl Debug for RealmEvent
impl Debug for RealmExplorerControlHandle
impl Debug for RealmExplorerEvent
impl Debug for RealmExplorerMarker
impl Debug for RealmExplorerProxy
impl Debug for RealmExplorerRequest
impl Debug for RealmExplorerSynchronousProxy
impl Debug for RealmGetChildOutputDictionaryRequest
impl Debug for RealmGetChildOutputDictionaryResponder
impl Debug for RealmGetChildOutputDictionaryResponse
impl Debug for RealmGetResolvedInfoResponder
impl Debug for RealmGetResolvedInfoResponse
impl Debug for RealmListChildrenRequest
impl Debug for RealmListChildrenResponder
impl Debug for RealmMarker
impl Debug for RealmOpenControllerRequest
impl Debug for RealmOpenControllerResponder
impl Debug for RealmOpenExposedDirRequest
impl Debug for RealmOpenExposedDirResponder
impl Debug for RealmProxy
impl Debug for RealmQueryConnectToStorageAdminRequest
impl Debug for RealmQueryConnectToStorageAdminResponder
impl Debug for RealmQueryConstructNamespaceRequest
impl Debug for RealmQueryConstructNamespaceResponder
impl Debug for RealmQueryConstructNamespaceResponse
impl Debug for RealmQueryControlHandle
impl Debug for RealmQueryError
impl Debug for RealmQueryEvent
impl Debug for RealmQueryGetAllInstancesResponder
impl Debug for RealmQueryGetAllInstancesResponse
impl Debug for RealmQueryGetInstanceRequest
impl Debug for RealmQueryGetInstanceResponder
impl Debug for RealmQueryGetInstanceResponse
impl Debug for RealmQueryGetResolvedDeclarationRequest
impl Debug for RealmQueryGetResolvedDeclarationResponder
impl Debug for RealmQueryGetResolvedDeclarationResponse
impl Debug for RealmQueryGetStructuredConfigRequest
impl Debug for RealmQueryGetStructuredConfigResponder
impl Debug for RealmQueryGetStructuredConfigResponse
impl Debug for RealmQueryMarker
impl Debug for RealmQueryOpenDirectoryRequest
impl Debug for RealmQueryOpenDirectoryResponder
impl Debug for RealmQueryProxy
impl Debug for RealmQueryRequest
impl Debug for RealmQueryResolveDeclarationRequest
impl Debug for RealmQueryResolveDeclarationResponder
impl Debug for RealmQueryResolveDeclarationResponse
impl Debug for RealmQuerySynchronousProxy
impl Debug for RealmRequest
impl Debug for RealmSynchronousProxy
impl Debug for ReceiverControlHandle
impl Debug for ReceiverEvent
impl Debug for ReceiverMarker
impl Debug for ReceiverProxy
impl Debug for ReceiverRequest
impl Debug for ReceiverSynchronousProxy
impl Debug for RecvError
impl Debug for RecvFlags
impl Debug for RecvTimeoutError
impl Debug for Ref
impl Debug for RegistrationSource
impl Debug for RelativePath
impl Debug for RemoveRefSiblings
impl Debug for Repeat
impl Debug for ReplaceBoolSchemas
impl Debug for Representation
impl Debug for Reserved
impl Debug for ResolveError
impl Debug for ResolvedConfig
impl Debug for ResolvedConfigField
impl Debug for ResolvedInfo
impl Debug for ResolvedPayload
impl Debug for Resolver
impl Debug for ResolverControlHandle
impl Debug for ResolverControlHandle
impl Debug for ResolverDecl
impl Debug for ResolverError
impl Debug for ResolverEvent
impl Debug for ResolverEvent
impl Debug for ResolverMarker
impl Debug for ResolverMarker
impl Debug for ResolverProxy
impl Debug for ResolverProxy
impl Debug for ResolverRegistration
impl Debug for ResolverRegistration
impl Debug for ResolverRequest
impl Debug for ResolverRequest
impl Debug for ResolverResolveRequest
impl Debug for ResolverResolveRequest
impl Debug for ResolverResolveResponder
impl Debug for ResolverResolveResponder
impl Debug for ResolverResolveResponse
impl Debug for ResolverResolveResponse
impl Debug for ResolverResolveWithContextRequest
impl Debug for ResolverResolveWithContextResponder
impl Debug for ResolverResolveWithContextResponse
impl Debug for ResolverSynchronousProxy
impl Debug for ResolverSynchronousProxy
impl Debug for Resource
impl Debug for ResourceFlag
impl Debug for ResourceInfo
impl Debug for ResourceKind
impl Debug for Rights
impl Debug for RootSchema
impl Debug for RouteError
impl Debug for RouteOutcome
impl Debug for RouteReport
impl Debug for RouteRequest
impl Debug for RouteTarget
impl Debug for RouteValidatorControlHandle
impl Debug for RouteValidatorError
impl Debug for RouteValidatorEvent
impl Debug for RouteValidatorMarker
impl Debug for RouteValidatorProxy
impl Debug for RouteValidatorRequest
impl Debug for RouteValidatorRouteRequest
impl Debug for RouteValidatorRouteResponder
impl Debug for RouteValidatorRouteResponse
impl Debug for RouteValidatorSynchronousProxy
impl Debug for RouteValidatorValidateRequest
impl Debug for RouteValidatorValidateResponder
impl Debug for RouteValidatorValidateResponse
impl Debug for RouterError
impl Debug for Runner
impl Debug for RunnerDecl
impl Debug for RunnerRegistration
impl Debug for RunnerRegistration
impl Debug for RuntimeError
impl Debug for SampleCommitRequest
impl Debug for SampleCommitResponder
impl Debug for SampleControlHandle
impl Debug for SampleDatum
impl Debug for SampleEvent
impl Debug for SampleMarker
impl Debug for SampleParameters
impl Debug for SampleProxy
impl Debug for SampleReady
impl Debug for SampleRequest
impl Debug for SampleSetRequest
impl Debug for SampleSinkControlHandle
impl Debug for SampleSinkEvent
impl Debug for SampleSinkMarker
impl Debug for SampleSinkOnSampleReadiedRequest
impl Debug for SampleSinkProxy
impl Debug for SampleSinkRequest
impl Debug for SampleSinkResult
impl Debug for SampleSinkSynchronousProxy
impl Debug for SampleStrategy
impl Debug for SampleSynchronousProxy
impl Debug for Schema
impl Debug for SchemaGenerator
impl Debug for SchemaObject
impl Debug for SchemaSettings
impl Debug for Scope
impl Debug for Scope<'_>
impl Debug for ScopeActiveGuard
impl Debug for ScopeHandle
impl Debug for SeekOrigin
impl Debug for Select<'_>
impl Debug for SelectTimeoutError
impl Debug for SelectedOperation<'_>
impl Debug for Selector
impl Debug for SelectorArgument
impl Debug for SelfRef
impl Debug for SelinuxContext
impl Debug for SendError
impl Debug for SendExecutor
impl Debug for SeparatedPath
impl Debug for Service
impl Debug for Service
impl Debug for ServiceDecl
impl Debug for ServiceInstance
impl Debug for SetExtendedAttributeMode
impl Debug for SetSingleExample
impl Debug for Severity
impl Debug for Severity
impl Debug for SignalPacket
impl Debug for Signals
impl Debug for Sink
impl Debug for Snapshot
impl Debug for SnapshotTree
impl Debug for SockAddr
impl Debug for SockRef<'_>
impl Debug for Socket
impl Debug for Socket
impl Debug for Socket
impl Debug for SocketInfo
impl Debug for SocketOpts
impl Debug for SocketReadOpts
impl Debug for SocketWriteDisposition
impl Debug for SocketWriteOpts
impl Debug for SourceBreaking
impl Debug for SpawnError
impl Debug for StartChildArgs
impl Debug for StartError
impl Debug for StartedPayload
impl Debug for StartupMode
impl Debug for StartupMode
impl Debug for Stats
impl Debug for StatusError
impl Debug for StatusError
impl Debug for StopError
impl Debug for StoppedPayload
impl Debug for Storage
impl Debug for StorageAdminControlHandle
impl Debug for StorageAdminControlHandle
impl Debug for StorageAdminDeleteAllStorageContentsResponder
impl Debug for StorageAdminDeleteAllStorageContentsResponder
impl Debug for StorageAdminDeleteComponentStorageRequest
impl Debug for StorageAdminDeleteComponentStorageRequest
impl Debug for StorageAdminDeleteComponentStorageResponder
impl Debug for StorageAdminDeleteComponentStorageResponder
impl Debug for StorageAdminEvent
impl Debug for StorageAdminEvent
impl Debug for StorageAdminGetStatusResponder
impl Debug for StorageAdminGetStatusResponder
impl Debug for StorageAdminListStorageInRealmRequest
impl Debug for StorageAdminListStorageInRealmRequest
impl Debug for StorageAdminListStorageInRealmResponder
impl Debug for StorageAdminListStorageInRealmResponder
impl Debug for StorageAdminMarker
impl Debug for StorageAdminMarker
impl Debug for StorageAdminOpenComponentStorageByIdRequest
impl Debug for StorageAdminOpenComponentStorageByIdRequest
impl Debug for StorageAdminOpenComponentStorageByIdResponder
impl Debug for StorageAdminOpenComponentStorageByIdResponder
impl Debug for StorageAdminOpenStorageRequest
impl Debug for StorageAdminOpenStorageRequest
impl Debug for StorageAdminOpenStorageResponder
impl Debug for StorageAdminOpenStorageResponder
impl Debug for StorageAdminProxy
impl Debug for StorageAdminProxy
impl Debug for StorageAdminRequest
impl Debug for StorageAdminRequest
impl Debug for StorageAdminSynchronousProxy
impl Debug for StorageAdminSynchronousProxy
impl Debug for StorageDecl
impl Debug for StorageDirectorySource
impl Debug for StorageId
impl Debug for StorageId
impl Debug for StorageIteratorControlHandle
impl Debug for StorageIteratorControlHandle
impl Debug for StorageIteratorEvent
impl Debug for StorageIteratorEvent
impl Debug for StorageIteratorMarker
impl Debug for StorageIteratorMarker
impl Debug for StorageIteratorNextResponder
impl Debug for StorageIteratorNextResponder
impl Debug for StorageIteratorNextResponse
impl Debug for StorageIteratorNextResponse
impl Debug for StorageIteratorProxy
impl Debug for StorageIteratorProxy
impl Debug for StorageIteratorRequest
impl Debug for StorageIteratorRequest
impl Debug for StorageIteratorSynchronousProxy
impl Debug for StorageIteratorSynchronousProxy
impl Debug for StorageStatus
impl Debug for StorageStatus
impl Debug for Stream
impl Debug for StreamMode
impl Debug for StreamOptions
impl Debug for StreamParameters
impl Debug for StreamReadOptions
impl Debug for StreamWriteOptions
impl Debug for StringArrayProperty
impl Debug for StringPatternError
impl Debug for StringProperty
impl Debug for StringRef
impl Debug for StringReference
impl Debug for StringSelector
impl Debug for StringValidation
impl Debug for SubschemaValidation
impl Debug for SubtreeSelector
impl Debug for SuspendToken
impl Debug for SymlinkCloseResponder
impl Debug for SymlinkControlHandle
impl Debug for SymlinkDeprecatedGetAttrResponder
impl Debug for SymlinkDeprecatedGetFlagsResponder
impl Debug for SymlinkDeprecatedSetAttrResponder
impl Debug for SymlinkDeprecatedSetFlagsResponder
impl Debug for SymlinkDescribeResponder
impl Debug for SymlinkEvent
impl Debug for SymlinkGetAttributesResponder
impl Debug for SymlinkGetExtendedAttributeResponder
impl Debug for SymlinkGetFlagsResponder
impl Debug for SymlinkInfo
impl Debug for SymlinkLinkIntoResponder
impl Debug for SymlinkMarker
impl Debug for SymlinkObject
impl Debug for SymlinkProxy
impl Debug for SymlinkQueryFilesystemResponder
impl Debug for SymlinkQueryResponder
impl Debug for SymlinkRemoveExtendedAttributeResponder
impl Debug for SymlinkRequest
impl Debug for SymlinkSetExtendedAttributeResponder
impl Debug for SymlinkSetFlagsResponder
impl Debug for SymlinkSyncResponder
impl Debug for SymlinkSynchronousProxy
impl Debug for SymlinkUpdateAttributesResponder
impl Debug for SyntheticTimeline
impl Debug for SystemControllerControlHandle
impl Debug for SystemControllerEvent
impl Debug for SystemControllerMarker
impl Debug for SystemControllerProxy
impl Debug for SystemControllerRequest
impl Debug for SystemControllerShutdownResponder
impl Debug for SystemControllerSynchronousProxy
impl Debug for Task
impl Debug for Task
impl Debug for TaskProviderControlHandle
impl Debug for TaskProviderEvent
impl Debug for TaskProviderGetJobResponder
impl Debug for TaskProviderGetJobResponse
impl Debug for TaskProviderMarker
impl Debug for TaskProviderProxy
impl Debug for TaskProviderRequest
impl Debug for TaskProviderSynchronousProxy
impl Debug for TaskRuntimeInfo
impl Debug for TaskStatsInfo
impl Debug for TcpConnector
impl Debug for TcpKeepalive
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for Thread
impl Debug for ThreadBlockType
impl Debug for ThreadInfo
impl Debug for ThreadState
impl Debug for ThreadStats
impl Debug for Three
impl Debug for Three
impl Debug for Three
impl Debug for TicksUnit
impl Debug for Timer
impl Debug for Tombstone
impl Debug for Topic
impl Debug for TransactionHeader
impl Debug for TransferDataOptions
impl Debug for TransportError
impl Debug for TreeContent
impl Debug for TreeControlHandle
impl Debug for TreeEvent
impl Debug for TreeGetContentResponder
impl Debug for TreeGetContentResponse
impl Debug for TreeListChildNamesRequest
impl Debug for TreeMarker
impl Debug for TreeNameIteratorControlHandle
impl Debug for TreeNameIteratorEvent
impl Debug for TreeNameIteratorGetNextResponder
impl Debug for TreeNameIteratorGetNextResponse
impl Debug for TreeNameIteratorMarker
impl Debug for TreeNameIteratorProxy
impl Debug for TreeNameIteratorRequest
impl Debug for TreeNameIteratorSynchronousProxy
impl Debug for TreeNames
impl Debug for TreeOpenChildRequest
impl Debug for TreeProxy
impl Debug for TreeRequest
impl Debug for TreeSelector
impl Debug for TreeSynchronousProxy
impl Debug for TryFromSliceError
impl Debug for TryReadyError
impl Debug for TryRecvError
impl Debug for TryRecvError
impl Debug for TryReserveError
impl Debug for TrySelectError
impl Debug for Two
impl Debug for Two
impl Debug for Two
impl Debug for Txid
impl Debug for Type
impl Debug for UdpSocket
impl Debug for Uint
impl Debug for UintArrayProperty
impl Debug for UintExponentialHistogramProperty
impl Debug for UintLinearHistogramProperty
impl Debug for UintProperty
impl Debug for Unit
impl Debug for Unknown
impl Debug for UnlinkFlags
impl Debug for UnlinkOptions
impl Debug for Unparker
impl Debug for UnresolveError
impl Debug for UnresolvedPayload
impl Debug for UnspecifiedFifoElement
impl Debug for Url
impl Debug for UrlScheme
impl Debug for Use
impl Debug for UseConfiguration
impl Debug for UseConfigurationDecl
impl Debug for UseDecl
impl Debug for UseDictionary
impl Debug for UseDictionaryDecl
impl Debug for UseDirectory
impl Debug for UseDirectoryDecl
impl Debug for UseEventStream
impl Debug for UseEventStreamDecl
impl Debug for UseProtocol
impl Debug for UseProtocolDecl
impl Debug for UseRunner
impl Debug for UseRunnerDecl
impl Debug for UseService
impl Debug for UseServiceDecl
impl Debug for UseSource
impl Debug for UseStorage
impl Debug for UseStorageDecl
impl Debug for UserPacket
impl Debug for UtcInstant
impl Debug for UtcTimeline
impl Debug for ValidationError
impl Debug for ValueList
impl Debug for Vcpu
impl Debug for VcpuContents
impl Debug for VerboseErrorKind
impl Debug for VerificationOptions
impl Debug for VirtualInterruptKind
impl Debug for VirtualMemoryFeatureFlags
impl Debug for Vmar
impl Debug for VmarFlags
impl Debug for VmarFlagsExtended
impl Debug for VmarInfo
impl Debug for VmarOp
impl Debug for Vmo
impl Debug for VmoChildOptions
impl Debug for VmoFlags
impl Debug for VmoInfo
impl Debug for VmoInfoFlags
impl Debug for VmoOp
impl Debug for VmoOptions
impl Debug for VoidRef
impl Debug for WaitAsyncOpts
impl Debug for WaitGroup
impl Debug for WaitResult
impl Debug for WaitTimeoutResult
impl Debug for WatchEvent
impl Debug for WatchMask
impl Debug for WireFormatVersion
impl Debug for WireMetadata
impl Debug for WrappedCapabilityId
impl Debug for WritableControlHandle
impl Debug for WritableEvent
impl Debug for WritableMarker
impl Debug for WritableProxy
impl Debug for WritableRequest
impl Debug for WritableState
impl Debug for WritableSynchronousProxy
impl Debug for WritableWriteRequest
impl Debug for WritableWriteResponder
impl Debug for WritableWriteResponse
impl Debug for addrinfo
impl Debug for aiocb
impl Debug for cmsghdr
impl Debug for cpu_set_t
impl Debug for dirent
impl Debug for dirent64
impl Debug for dl_phdr_info
impl Debug for dqblk
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Sync + Send
impl Debug for epoll_event
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 flock
impl Debug for fpos64_t
impl Debug for fpos_t
impl Debug for fsid_t
impl Debug for glob_t
impl Debug for group
impl Debug for hostent
impl Debug for if_nameindex
impl Debug for ifaddrs
impl Debug for in6_addr
impl Debug for in6_pktinfo
impl Debug for in_addr
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 iovec
impl Debug for ip_mreq
impl Debug for ip_mreqn
impl Debug for ipc_perm
impl Debug for ipv6_mreq
impl Debug for itimerspec
impl Debug for itimerval
impl Debug for lconv
impl Debug for linger
impl Debug for mcontext_t
impl Debug for mmsghdr
impl Debug for mq_attr
impl Debug for msghdr
impl Debug for msginfo
impl Debug for msqid_ds
impl Debug for passwd
impl Debug for pollfd
impl Debug for protoent
impl Debug for pthread_attr_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 rlimit
impl Debug for rlimit64
impl Debug for rusage
impl Debug for sched_param
impl Debug for sem_t
impl Debug for sembuf
impl Debug for servent
impl Debug for shmid_ds
impl Debug for sigaction
impl Debug for sigevent
impl Debug for siginfo_t
impl Debug for signalfd_siginfo
impl Debug for sigset_t
impl Debug for sigval
impl Debug for sockaddr
impl Debug for sockaddr_in
impl Debug for sockaddr_in6
impl Debug for sockaddr_ll
impl Debug for sockaddr_nl
impl Debug for sockaddr_storage
impl Debug for sockaddr_un
impl Debug for sockaddr_vm
impl Debug for spwd
impl Debug for stack_t
impl Debug for stat
impl Debug for stat64
impl Debug for statfs
impl Debug for statfs64
impl Debug for statvfs
impl Debug for statvfs64
impl Debug for sysinfo
impl Debug for termios
impl Debug for termios2
impl Debug for timespec
impl Debug for timeval
impl Debug for timezone
impl Debug for tm
impl Debug for tms
impl Debug for ucontext_t
impl Debug for ucred
impl Debug for utimbuf
impl Debug for utsname
impl Debug for winsize
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for std::path::Component<'a>
impl<'a> Debug for Prefix<'a>
impl<'a> Debug for Item<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for Request<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for starnix_uapi::arch32::__static_assertions::_core::ffi::c_str::Bytes<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for starnix_uapi::arch32::__static_assertions::_core::str::Bytes<'a>
impl<'a> Debug for starnix_uapi::arch32::__static_assertions::_core::str::CharIndices<'a>
impl<'a> Debug for starnix_uapi::arch32::__static_assertions::_core::str::EscapeDebug<'a>
impl<'a> Debug for starnix_uapi::arch32::__static_assertions::_core::str::EscapeDefault<'a>
impl<'a> Debug for starnix_uapi::arch32::__static_assertions::_core::str::EscapeUnicode<'a>
impl<'a> Debug for starnix_uapi::arch32::__static_assertions::_core::str::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for StrftimeItems<'a>
impl<'a> Debug for log::Metadata<'a>
impl<'a> Debug for MetadataBuilder<'a>
impl<'a> Debug for Record<'a>
impl<'a> Debug for RecordBuilder<'a>
impl<'a> Debug for serde_json::map::Iter<'a>
impl<'a> Debug for serde_json::map::IterMut<'a>
impl<'a> Debug for serde_json::map::Keys<'a>
impl<'a> Debug for serde_json::map::Values<'a>
impl<'a> Debug for serde_json::map::ValuesMut<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for PathSegmentsMut<'a>
impl<'a> Debug for UrlQuery<'a>
impl<'a> Debug for EscapeBytes<'a>
impl<'a> Debug for bstr::ext_slice::Bytes<'a>
impl<'a> Debug for bstr::ext_slice::Finder<'a>
impl<'a> Debug for FinderReverse<'a>
impl<'a> Debug for bstr::ext_slice::Lines<'a>
impl<'a> Debug for LinesWithTerminator<'a>
impl<'a> Debug for DrainBytes<'a>
impl<'a> Debug for bstr::utf8::CharIndices<'a>
impl<'a> Debug for bstr::utf8::Chars<'a>
impl<'a> Debug for bstr::utf8::Utf8Chunks<'a>
impl<'a> Debug for BorrowedSeparatedPath<'a>
impl<'a> Debug for ByteSerialize<'a>
impl<'a> Debug for ChannelIoSlice<'a>
impl<'a> Debug for HandleDisposition<'a>
impl<'a> Debug for HandleOp<'a>
impl<'a> Debug for IobIoSlice<'a>
impl<'a> Debug for MapDetails<'a>
impl<'a> Debug for MaybeUninitSlice<'a>
impl<'a> Debug for PercentDecode<'a>
impl<'a> Debug for WaitItem<'a>
impl<'a> Debug for WakerRef<'a>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'h> Debug for OneIter<'a, 'h>
impl<'a, 'h> Debug for OneIter<'a, 'h>
impl<'a, 'h> Debug for OneIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for TwoIter<'a, 'h>
impl<'a, 'h> Debug for TwoIter<'a, 'h>
impl<'a, 'h> Debug for TwoIter<'a, 'h>
impl<'a, 'text> Debug for Paragraph<'a, 'text>
impl<'a, 'text> Debug for Paragraph<'a, 'text>
impl<'a, A> Debug for starnix_uapi::arch32::__static_assertions::_core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for starnix_uapi::arch32::__static_assertions::_core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, D> Debug for Decoder<'a, D>
impl<'a, D> Debug for Encoder<'a, D>
impl<'a, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
std or alloc only.impl<'a, E> Debug for StrDeserializer<'a, E>
impl<'a, F> Debug for FieldsWith<'a, F>where
F: Debug,
impl<'a, Fut> Debug for Iter<'a, Fut>
impl<'a, Fut> Debug for IterMut<'a, Fut>
impl<'a, Fut> Debug for IterPinMut<'a, Fut>where
Fut: Debug,
impl<'a, Fut> Debug for IterPinRef<'a, Fut>where
Fut: Debug,
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I> Debug for Format<'a, I>
impl<'a, I, A> Debug for Splice<'a, I, A>
impl<'a, I, E> Debug for ProcessResults<'a, I, E>
impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F>
impl<'a, K, V> Debug for range_map::Iter<'a, K, V>
impl<'a, Key> Debug for SelectResult<'a, Key>
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 starnix_uapi::arch32::__static_assertions::_core::str::RSplit<'a, P>
impl<'a, P> Debug for starnix_uapi::arch32::__static_assertions::_core::str::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for starnix_uapi::arch32::__static_assertions::_core::str::Split<'a, P>
impl<'a, P> Debug for starnix_uapi::arch32::__static_assertions::_core::str::SplitInclusive<'a, P>
impl<'a, P> Debug for starnix_uapi::arch32::__static_assertions::_core::str::SplitN<'a, P>
impl<'a, P> Debug for SplitTerminator<'a, P>
impl<'a, R> Debug for FillBuf<'a, R>
impl<'a, R> Debug for Read<'a, R>
impl<'a, R> Debug for ReadExact<'a, R>
impl<'a, R> Debug for ReadLine<'a, R>
impl<'a, R> Debug for ReadToEnd<'a, R>
impl<'a, R> Debug for ReadToString<'a, R>
impl<'a, R> Debug for ReadUntil<'a, R>
impl<'a, R> Debug for ReadVectored<'a, R>
impl<'a, R> Debug for SeeKRelative<'a, R>where
R: Debug,
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 MappedMutexGuard<'a, R, T>
impl<'a, R, T> Debug for MappedRwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for MappedRwLockWriteGuard<'a, R, T>
impl<'a, R, T> Debug for MutexGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockUpgradableReadGuard<'a, R, T>
impl<'a, R, T> Debug for RwLockWriteGuard<'a, R, T>
impl<'a, R, W> Debug for Copy<'a, R, W>
impl<'a, R, W> Debug for CopyBuf<'a, R, W>
impl<'a, R, W> Debug for CopyBufAbortable<'a, R, W>
impl<'a, S> Debug for Seek<'a, S>
impl<'a, Si, Item> Debug for Close<'a, Si, Item>
impl<'a, Si, Item> Debug for Feed<'a, Si, Item>
impl<'a, Si, Item> Debug for Flush<'a, Si, Item>
impl<'a, Si, Item> Debug for Send<'a, Si, Item>
impl<'a, St> Debug for Iter<'a, St>
impl<'a, St> Debug for IterMut<'a, St>
impl<'a, St> Debug for Next<'a, St>
impl<'a, St> Debug for SelectNextSome<'a, St>
impl<'a, St> Debug for TryNext<'a, St>
impl<'a, T> Debug for starnix_uapi::arch32::__static_assertions::_core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for starnix_uapi::arch32::__static_assertions::_core::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for starnix_uapi::arch32::__static_assertions::_core::slice::Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for alloc::collections::btree::set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Cancellation<'a, T>where
T: Debug,
impl<'a, T> Debug for Drain<'a, T>where
T: 'a + Array,
<T as Array>::Item: Debug,
impl<'a, T> Debug for Error<'a, T>
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for Unowned<'a, T>
impl<'a, T> Debug for VacantEntry<'a, T>where
T: Debug,
impl<'a, T, A> Debug for alloc::collections::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, I> Debug for Ptr<'a, T, I>where
T: 'a + ?Sized,
I: Invariants,
impl<'a, T, P> Debug for ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, W> Debug for Close<'a, W>
impl<'a, W> Debug for Flush<'a, W>
impl<'a, W> Debug for Write<'a, W>
impl<'a, W> Debug for WriteAll<'a, W>
impl<'a, W> Debug for WriteVectored<'a, W>
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>
impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>
impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
impl<'e, E, R> Debug for DecoderReader<'e, E, R>where
E: Engine,
R: Read,
impl<'e, E, W> Debug for EncoderWriter<'e, E, W>where
E: Engine,
W: Write,
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'h, 'n> Debug for Find<'h, 'n>
impl<'h, 'n> Debug for FindReverse<'h, 'n>
impl<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'h, 's> Debug for bstr::ext_slice::Split<'h, 's>
impl<'h, 's> Debug for bstr::ext_slice::SplitN<'h, 's>
impl<'h, 's> Debug for SplitNReverse<'h, 's>
impl<'h, 's> Debug for SplitReverse<'h, 's>
impl<'k> Debug for Key<'k>
impl<'n> Debug for Finder<'n>
impl<'n> Debug for FinderRev<'n>
impl<'name, 'bufs, 'control> Debug for MsgHdr<'name, 'bufs, 'control>
impl<'name, 'bufs, 'control> Debug for MsgHdrMut<'name, 'bufs, 'control>
impl<'s, T> Debug for SliceVec<'s, T>where
T: Debug,
impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env>
impl<'scope, T> Debug for std::thread::scoped::ScopedJoinHandle<'scope, T>
impl<'text> Debug for BidiInfo<'text>
impl<'text> Debug for BidiInfo<'text>
impl<'text> Debug for InitialInfo<'text>
impl<'text> Debug for InitialInfo<'text>
impl<'text> Debug for ParagraphBidiInfo<'text>
impl<'text> Debug for ParagraphBidiInfo<'text>
impl<'text> Debug for Utf8IndexLenIter<'text>
impl<'text> Debug for Utf16CharIndexIter<'text>
impl<'text> Debug for Utf16CharIter<'text>
impl<'text> Debug for Utf16IndexLenIter<'text>
impl<'v> Debug for log::kv::value::Value<'v>
impl<A> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Repeat<A>where
A: Debug,
impl<A> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::RepeatN<A>where
A: Debug,
impl<A> Debug for starnix_uapi::arch32::__static_assertions::_core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for OptionFlatten<A>where
A: Debug,
impl<A> Debug for RangeFromIter<A>where
A: Debug,
impl<A> Debug for RangeInclusiveIter<A>where
A: Debug,
impl<A> Debug for RangeIter<A>where
A: Debug,
impl<A> Debug for EnumAccessDeserializer<A>where
A: Debug,
impl<A> Debug for MapAccessDeserializer<A>where
A: Debug,
impl<A> Debug for SeqAccessDeserializer<A>where
A: Debug,
impl<A> Debug for ArrayVec<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A> Debug for ArrayVecIterator<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A> Debug for IntoIter<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A> Debug for RepeatN<A>where
A: Debug,
impl<A> Debug for SmallVec<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A> Debug for TinyVec<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A> Debug for TinyVecIterator<A>where
A: Array,
<A as Array>::Item: Debug,
impl<A, B> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Chain<A, B>
impl<A, B> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Zip<A, B>
impl<A, B> Debug for Either<A, B>
impl<A, B> Debug for EitherOrBoth<A, B>
impl<A, B> Debug for Select<A, B>
impl<A, B> Debug for TrySelect<A, B>
impl<A, S, V> Debug for ConvertError<A, S, V>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for std::io::Lines<B>where
B: Debug,
impl<B> Debug for std::io::Split<B>where
B: Debug,
impl<B> Debug for Flag<B>where
B: Debug,
impl<B> Debug for ByteLines<B>where
B: Debug,
impl<B> Debug for ByteRecords<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>
impl<D> Debug for Client<D>where
D: Debug + ResourceDialect,
impl<D> Debug for EventReceiver<D>where
D: Debug + ResourceDialect,
impl<D> Debug for MessageResponse<D>where
D: Debug + ResourceDialect,
impl<D> Debug for ServeInner<D>
impl<Dyn> Debug for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<E> Debug for Report<E>
impl<E> Debug for BoolDeserializer<E>
impl<E> Debug for CharDeserializer<E>
impl<E> Debug for F32Deserializer<E>
impl<E> Debug for F64Deserializer<E>
impl<E> Debug for I8Deserializer<E>
impl<E> Debug for I16Deserializer<E>
impl<E> Debug for I32Deserializer<E>
impl<E> Debug for I64Deserializer<E>
impl<E> Debug for I128Deserializer<E>
impl<E> Debug for IsizeDeserializer<E>
impl<E> Debug for StringDeserializer<E>
std or alloc only.impl<E> Debug for U8Deserializer<E>
impl<E> Debug for U16Deserializer<E>
impl<E> Debug for U32Deserializer<E>
impl<E> Debug for U64Deserializer<E>
impl<E> Debug for U128Deserializer<E>
impl<E> Debug for UnitDeserializer<E>
impl<E> Debug for UsizeDeserializer<E>
impl<F> Debug for starnix_uapi::arch32::__static_assertions::_core::future::PollFn<F>
impl<F> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::FromFn<F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::RepeatWith<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for starnix_uapi::arch32::__static_assertions::_core::fmt::FromFn<F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<F> Debug for Flatten<F>
impl<F> Debug for FlattenStream<F>
impl<F> Debug for IntoStream<F>where
Once<F>: Debug,
impl<F> Debug for JoinAll<F>
impl<F> Debug for Lazy<F>where
F: Debug,
impl<F> Debug for OptionFuture<F>where
F: Debug,
impl<F> Debug for PollFn<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for RepeatWith<F>where
F: Debug,
impl<F> Debug for TryJoinAll<F>
impl<F, OS> Debug for OnStalled<F, OS>
impl<F, OT> Debug for OnTimeout<F, OT>
impl<Failure, Error> Debug for Err<Failure, Error>
impl<Fut1, Fut2> Debug for Join<Fut1, Fut2>
impl<Fut1, Fut2> Debug for TryFlatten<Fut1, Fut2>where
TryFlatten<Fut1, Fut2>: Debug,
impl<Fut1, Fut2> Debug for TryJoin<Fut1, Fut2>
impl<Fut1, Fut2, F> Debug for AndThen<Fut1, Fut2, F>where
TryFlatten<MapOk<Fut1, F>, Fut2>: Debug,
impl<Fut1, Fut2, F> Debug for OrElse<Fut1, Fut2, F>where
TryFlattenErr<MapErr<Fut1, F>, Fut2>: Debug,
impl<Fut1, Fut2, F> Debug for Then<Fut1, Fut2, F>where
Flatten<Map<Fut1, F>, Fut2>: Debug,
impl<Fut1, Fut2, Fut3> Debug for Join3<Fut1, Fut2, Fut3>
impl<Fut1, Fut2, Fut3> Debug for TryJoin3<Fut1, Fut2, Fut3>
impl<Fut1, Fut2, Fut3, Fut4> Debug for Join4<Fut1, Fut2, Fut3, Fut4>
impl<Fut1, Fut2, Fut3, Fut4> Debug for TryJoin4<Fut1, Fut2, Fut3, Fut4>where
Fut1: TryFuture + Debug,
<Fut1 as TryFuture>::Ok: Debug,
<Fut1 as TryFuture>::Error: Debug,
Fut2: TryFuture + Debug,
<Fut2 as TryFuture>::Ok: Debug,
<Fut2 as TryFuture>::Error: Debug,
Fut3: TryFuture + Debug,
<Fut3 as TryFuture>::Ok: Debug,
<Fut3 as TryFuture>::Error: Debug,
Fut4: TryFuture + Debug,
<Fut4 as TryFuture>::Ok: Debug,
<Fut4 as TryFuture>::Error: Debug,
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Debug for Join5<Fut1, Fut2, Fut3, Fut4, Fut5>
impl<Fut1, Fut2, Fut3, Fut4, Fut5> Debug for TryJoin5<Fut1, Fut2, Fut3, Fut4, Fut5>where
Fut1: TryFuture + Debug,
<Fut1 as TryFuture>::Ok: Debug,
<Fut1 as TryFuture>::Error: Debug,
Fut2: TryFuture + Debug,
<Fut2 as TryFuture>::Ok: Debug,
<Fut2 as TryFuture>::Error: Debug,
Fut3: TryFuture + Debug,
<Fut3 as TryFuture>::Ok: Debug,
<Fut3 as TryFuture>::Error: Debug,
Fut4: TryFuture + Debug,
<Fut4 as TryFuture>::Ok: Debug,
<Fut4 as TryFuture>::Error: Debug,
Fut5: TryFuture + Debug,
<Fut5 as TryFuture>::Ok: Debug,
<Fut5 as TryFuture>::Error: Debug,
impl<Fut> Debug for CatchUnwind<Fut>where
Fut: Debug,
impl<Fut> Debug for Fuse<Fut>where
Fut: Debug,
impl<Fut> Debug for FuturesOrdered<Fut>where
Fut: Future,
impl<Fut> Debug for FuturesUnordered<Fut>
impl<Fut> Debug for IntoFuture<Fut>where
Fut: Debug,
impl<Fut> Debug for IntoIter<Fut>
impl<Fut> Debug for MaybeDone<Fut>
impl<Fut> Debug for NeverError<Fut>where
Map<Fut, OkFn<Infallible>>: Debug,
impl<Fut> Debug for Once<Fut>where
Fut: Debug,
impl<Fut> Debug for Remote<Fut>
impl<Fut> Debug for SelectAll<Fut>where
Fut: Debug,
impl<Fut> Debug for SelectOk<Fut>where
Fut: Debug,
impl<Fut> Debug for TryFlattenStream<Fut>where
TryFlatten<Fut, <Fut as TryFuture>::Ok>: Debug,
Fut: TryFuture,
impl<Fut> Debug for TryMaybeDone<Fut>
impl<Fut> Debug for UnitError<Fut>
impl<Fut, E> Debug for ErrInto<Fut, E>where
MapErr<Fut, IntoFn<E>>: Debug,
impl<Fut, E> Debug for OkInto<Fut, E>where
MapOk<Fut, IntoFn<E>>: Debug,
impl<Fut, F> Debug for Inspect<Fut, F>where
Map<Fut, InspectFn<F>>: Debug,
impl<Fut, F> Debug for InspectErr<Fut, F>where
Inspect<IntoFuture<Fut>, InspectErrFn<F>>: Debug,
impl<Fut, F> Debug for InspectOk<Fut, F>where
Inspect<IntoFuture<Fut>, InspectOkFn<F>>: Debug,
impl<Fut, F> Debug for Map<Fut, F>where
Map<Fut, F>: Debug,
impl<Fut, F> Debug for MapErr<Fut, F>where
Map<IntoFuture<Fut>, MapErrFn<F>>: Debug,
impl<Fut, F> Debug for MapOk<Fut, F>where
Map<IntoFuture<Fut>, MapOkFn<F>>: Debug,
impl<Fut, F> Debug for UnwrapOrElse<Fut, F>where
Map<IntoFuture<Fut>, UnwrapOrElseFn<F>>: Debug,
impl<Fut, F, G> Debug for MapOkOrElse<Fut, F, G>where
Map<IntoFuture<Fut>, ChainFn<MapOkFn<F>, ChainFn<MapErrFn<G>, MergeResultFn>>>: Debug,
impl<Fut, Si> Debug for FlattenSink<Fut, Si>where
TryFlatten<Fut, Si>: Debug,
impl<Fut, T> Debug for MapInto<Fut, T>where
Map<Fut, IntoFn<T>>: Debug,
impl<G> Debug for FromCoroutine<G>
impl<H> Debug for BuildHasherDefault<H>
impl<H> Debug for OnSignals<'_, H>where
H: AsHandleRef,
impl<H> Debug for OnSignalsFuture<'_, H>where
H: AsHandleRef,
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for Cloned<I>where
I: Debug,
impl<I> Debug for Copied<I>where
I: Debug,
impl<I> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Cycle<I>where
I: Debug,
impl<I> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Enumerate<I>where
I: Debug,
impl<I> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Fuse<I>where
I: Debug,
impl<I> Debug for Intersperse<I>
impl<I> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Peekable<I>
impl<I> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Skip<I>where
I: Debug,
impl<I> Debug for StepBy<I>where
I: Debug,
impl<I> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Take<I>where
I: Debug,
impl<I> Debug for DelayedFormat<I>where
I: Debug,
impl<I> Debug for CombinationsWithReplacement<I>
impl<I> Debug for Error<I>where
I: Debug,
impl<I> Debug for ExactlyOneError<I>
impl<I> Debug for GroupingMap<I>where
I: Debug,
impl<I> Debug for Iter<I>where
I: Debug,
impl<I> Debug for MultiPeek<I>
impl<I> Debug for MultiProduct<I>
impl<I> Debug for PeekNth<I>
impl<I> Debug for Permutations<I>
impl<I> Debug for Powerset<I>
impl<I> Debug for PutBack<I>
impl<I> Debug for PutBackN<I>
impl<I> Debug for RcIter<I>where
I: Debug,
impl<I> Debug for Tee<I>
impl<I> Debug for Unique<I>
impl<I> Debug for VerboseError<I>where
I: Debug,
impl<I> Debug for WhileSome<I>where
I: Debug,
impl<I> Debug for WithPosition<I>
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, ElemF> Debug for IntersperseWith<I, ElemF>
impl<I, F> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Inspect<I, F>where
I: Debug,
impl<I, F> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Map<I, F>where
I: Debug,
impl<I, F> Debug for Batching<I, F>where
I: Debug,
impl<I, F> Debug for FilterMapOk<I, F>where
I: Debug,
impl<I, F> Debug for FilterOk<I, F>where
I: Debug,
impl<I, F> Debug for FormatWith<'_, I, F>
impl<I, F> Debug for KMergeBy<I, F>
impl<I, F> Debug for PadUsing<I, F>where
I: Debug,
impl<I, F> Debug for Positions<I, F>where
I: Debug,
impl<I, F> Debug for TakeWhileInclusive<I, F>
impl<I, F> Debug for TakeWhileRef<'_, I, F>
impl<I, F> Debug for Update<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::IntersperseWith<I, G>
impl<I, J> Debug for Diff<I, J>
impl<I, J> Debug for Interleave<I, J>
impl<I, J> Debug for InterleaveShortest<I, J>
impl<I, J> Debug for Product<I, J>
impl<I, J> Debug for ZipEq<I, J>
impl<I, J, F> Debug for MergeBy<I, J, F>
impl<I, P> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Filter<I, P>where
I: Debug,
impl<I, P> Debug for MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::TakeWhile<I, P>where
I: Debug,
impl<I, St, F> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Scan<I, St, F>
impl<I, T> Debug for CircularTupleWindows<I, T>
impl<I, T> Debug for TupleCombinations<I, T>
impl<I, T> Debug for TupleWindows<I, T>
impl<I, T> Debug for Tuples<I, T>
impl<I, T, E> Debug for FlattenOk<I, T, E>where
I: Iterator<Item = Result<T, E>> + Debug,
T: IntoIterator,
<T as IntoIterator>::IntoIter: Debug,
impl<I, U> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Flatten<I>
impl<I, U, F> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::FlatMap<I, U, F>
impl<I, V, F> Debug for UniqueBy<I, V, F>
impl<I, const N: usize> Debug for ArrayChunks<I, N>
impl<Idx> Debug for Clamp<Idx>where
Idx: Debug,
impl<Idx> Debug for starnix_uapi::arch32::__static_assertions::_core::ops::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for starnix_uapi::arch32::__static_assertions::_core::ops::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for starnix_uapi::arch32::__static_assertions::_core::ops::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for starnix_uapi::arch32::__static_assertions::_core::ops::RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for starnix_uapi::arch32::__static_assertions::_core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for starnix_uapi::arch32::__static_assertions::_core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for starnix_uapi::arch32::__static_assertions::_core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for starnix_uapi::arch32::__static_assertions::_core::range::RangeToInclusive<Idx>where
Idx: Debug,
impl<K> Debug for alloc::collections::btree::set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Drain<'_, K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::IntoIter<K>where
K: Debug,
impl<K> Debug for std::collections::hash::set::Iter<'_, K>where
K: Debug,
impl<K> Debug for Iter<'_, K>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for alloc::collections::btree::set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, A> Debug for Drain<'_, K, A>
impl<K, A> Debug for IntoIter<K, A>
impl<K, F> Debug for std::collections::hash::set::ExtractIf<'_, K, F>where
K: Debug,
impl<K, Q, V, S, A> Debug for EntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for OccupiedEntryRef<'_, '_, K, Q, V, S, A>
impl<K, Q, V, S, A> Debug for VacantEntryRef<'_, '_, K, Q, V, S, A>
impl<K, T> Debug for Interrupt<K, T>
impl<K, V> Debug for std::collections::hash::map::Entry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::Entry<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Cursor<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Iter<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::IterMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for alloc::collections::btree::map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for alloc::collections::btree::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for alloc::collections::btree::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Drain<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IntoIter<K, V>
impl<K, V> Debug for std::collections::hash::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::Iter<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::IterMut<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::OccupiedError<'_, K, V>
impl<K, V> Debug for std::collections::hash::map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for std::collections::hash::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for std::collections::hash::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::core::raw::OccupiedEntry<'_, K, V>
impl<K, V> Debug for indexmap::map::core::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::Drain<'_, K, V>
impl<K, V> Debug for indexmap::map::IntoIter<K, V>
impl<K, V> Debug for indexmap::map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::Iter<'_, K, V>
impl<K, V> Debug for indexmap::map::IterMut<'_, K, V>
impl<K, V> Debug for indexmap::map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for indexmap::map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for indexmap::map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for RangeMap<K, V>
impl<K, V> Debug for Iter<'_, K, V>
impl<K, V> Debug for IterMut<'_, K, V>
impl<K, V> Debug for Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for ValuesMut<'_, K, V>where
V: Debug,
impl<K, V, A> Debug for alloc::collections::btree::map::entry::Entry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::entry::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoIter<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoKeys<K, V, A>
impl<K, V, A> Debug for alloc::collections::btree::map::IntoValues<K, V, A>
impl<K, V, A> Debug for Drain<'_, K, V, A>
impl<K, V, A> Debug for IntoIter<K, V, A>
impl<K, V, A> Debug for IntoKeys<K, V, A>
impl<K, V, A> Debug for IntoValues<K, V, A>
impl<K, V, F> Debug for std::collections::hash::map::ExtractIf<'_, K, V, F>
impl<K, V, R, F, A> Debug for alloc::collections::btree::map::ExtractIf<'_, K, V, R, F, A>
impl<K, V, S> Debug for std::collections::hash::map::HashMap<K, V, S>
impl<K, V, S> Debug for IndexMap<K, V, S>
impl<K, V, S> Debug for AHashMap<K, V, S>
impl<K, V, S, A> Debug for Entry<'_, K, V, S, A>
impl<K, V, S, A> Debug for HashMap<K, V, S, A>
impl<K, V, S, A> Debug for OccupiedEntry<'_, K, V, S, A>
impl<K, V, S, A> Debug for OccupiedError<'_, K, V, S, A>
impl<K, V, S, A> Debug for RawEntryBuilder<'_, K, V, S, A>where
A: Allocator + Clone,
impl<K, V, S, A> Debug for RawEntryBuilderMut<'_, K, V, S, A>where
A: Allocator + Clone,
impl<K, V, S, A> Debug for RawEntryMut<'_, K, V, S, A>
impl<K, V, S, A> Debug for RawOccupiedEntryMut<'_, K, V, S, A>
impl<K, V, S, A> Debug for RawVacantEntryMut<'_, K, V, S, A>where
A: Allocator + Clone,
impl<K, V, S, A> Debug for VacantEntry<'_, K, V, S, A>
impl<Key> Debug for DiagnosticsHierarchy<Key>where
Key: Debug,
impl<Key> Debug for Property<Key>where
Key: Debug,
impl<L, R> Debug for either::Either<L, R>
impl<L, R> Debug for IterEither<L, R>
impl<O> Debug for F32<O>where
O: ByteOrder,
impl<O> Debug for F64<O>where
O: ByteOrder,
impl<O> Debug for I16<O>where
O: ByteOrder,
impl<O> Debug for I32<O>where
O: ByteOrder,
impl<O> Debug for I64<O>where
O: ByteOrder,
impl<O> Debug for I128<O>where
O: ByteOrder,
impl<O> Debug for Isize<O>where
O: ByteOrder,
impl<O> Debug for U16<O>where
O: ByteOrder,
impl<O> Debug for U32<O>where
O: ByteOrder,
impl<O> Debug for U64<O>where
O: ByteOrder,
impl<O> Debug for U128<O>where
O: ByteOrder,
impl<O> Debug for Usize<O>where
O: ByteOrder,
impl<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<R> Debug for std::io::buffered::bufreader::BufReader<R>
impl<R> Debug for std::io::Bytes<R>where
R: Debug,
impl<R> Debug for BufReader<R>where
R: Debug,
impl<R> Debug for Lines<R>where
R: Debug,
impl<R> Debug for Take<R>where
R: Debug,
impl<R, G, T> Debug for ReentrantMutex<R, G, T>
impl<R, T> Debug for Mutex<R, T>
impl<R, T> Debug for RwLock<R, T>
impl<R, W> Debug for Fifo<R, W>
impl<R, W> Debug for Fifo<R, W>
impl<Reference, Output> Debug for Clock<Reference, Output>
impl<Reference, Output> Debug for ClockDetails<Reference, Output>
impl<Reference, Output> Debug for ClockTransformation<Reference, Output>
impl<Reference, Output> Debug for ClockUpdate<Reference, Output>
impl<S> Debug for Host<S>where
S: Debug,
impl<S> Debug for BlockingStream<S>
impl<S> Debug for PollImmediate<S>where
S: Debug,
impl<S> Debug for SplitStream<S>where
S: Debug,
impl<S, Item> Debug for SplitSink<S, Item>
impl<Si1, Si2> Debug for Fanout<Si1, Si2>
impl<Si, F> Debug for SinkMapErr<Si, F>
impl<Si, Item> Debug for Buffer<Si, Item>
impl<Si, Item, E> Debug for SinkErrInto<Si, Item, E>
impl<Si, Item, U, Fut, F> Debug for With<Si, Item, U, Fut, F>
impl<Si, Item, U, St, F> Debug for WithFlatMap<Si, Item, U, St, F>
impl<Si, St> Debug for SendAll<'_, Si, St>
impl<Src, Dst> Debug for AlignmentError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for SizeError<Src, Dst>where
Dst: ?Sized,
impl<Src, Dst> Debug for ValidityError<Src, Dst>where
Dst: TryFromBytes + ?Sized,
impl<St1, St2> Debug for Chain<St1, St2>
impl<St1, St2> Debug for Select<St1, St2>
impl<St1, St2> Debug for Zip<St1, St2>
impl<St1, St2, Clos, State> Debug for SelectWithStrategy<St1, St2, Clos, State>
impl<St> Debug for BufferUnordered<St>where
St: Stream + Debug,
impl<St> Debug for Buffered<St>
impl<St> Debug for CatchUnwind<St>where
St: Debug,
impl<St> Debug for Chunks<St>
impl<St> Debug for Concat<St>
impl<St> Debug for Count<St>where
St: Debug,
impl<St> Debug for Cycle<St>where
St: Debug,
impl<St> Debug for Enumerate<St>where
St: Debug,
impl<St> Debug for Flatten<St>where
Flatten<St, <St as Stream>::Item>: Debug,
St: Stream,
impl<St> Debug for Fuse<St>where
St: Debug,
impl<St> Debug for IntoAsyncRead<St>
impl<St> Debug for IntoIter<St>
impl<St> Debug for IntoStream<St>where
St: Debug,
impl<St> Debug for Peek<'_, St>
impl<St> Debug for PeekMut<'_, St>
impl<St> Debug for Peekable<St>
impl<St> Debug for ReadyChunks<St>where
St: Debug + Stream,
impl<St> Debug for SelectAll<St>where
St: Debug,
impl<St> Debug for Skip<St>where
St: Debug,
impl<St> Debug for StreamFuture<St>where
St: Debug,
impl<St> Debug for Take<St>where
St: Debug,
impl<St> Debug for TryBufferUnordered<St>
impl<St> Debug for TryBuffered<St>
impl<St> Debug for TryChunks<St>
impl<St> Debug for TryConcat<St>
impl<St> Debug for TryFlatten<St>
impl<St> Debug for TryFlattenUnordered<St>
impl<St> Debug for TryReadyChunks<St>where
St: Debug + TryStream,
impl<St, C> Debug for Collect<St, C>
impl<St, C> Debug for TryCollect<St, C>
impl<St, E> Debug for ErrInto<St, E>where
MapErr<St, IntoFn<E>>: Debug,
impl<St, F> Debug for Inspect<St, F>where
Map<St, InspectFn<F>>: Debug,
impl<St, F> Debug for InspectErr<St, F>where
Inspect<IntoStream<St>, InspectErrFn<F>>: Debug,
impl<St, F> Debug for InspectOk<St, F>where
Inspect<IntoStream<St>, InspectOkFn<F>>: Debug,
impl<St, F> Debug for Iterate<St, F>where
St: Debug,
impl<St, F> Debug for Map<St, F>where
St: Debug,
impl<St, F> Debug for MapErr<St, F>where
Map<IntoStream<St>, MapErrFn<F>>: Debug,
impl<St, F> Debug for MapOk<St, F>where
Map<IntoStream<St>, MapOkFn<F>>: Debug,
impl<St, F> Debug for NextIf<'_, St, F>
impl<St, F> Debug for Unfold<St, F>where
St: Debug,
impl<St, FromA, FromB> Debug for Unzip<St, FromA, FromB>
impl<St, Fut> Debug for TakeUntil<St, Fut>
impl<St, Fut, F> Debug for All<St, Fut, F>
impl<St, Fut, F> Debug for AndThen<St, Fut, F>
impl<St, Fut, F> Debug for Any<St, Fut, F>
impl<St, Fut, F> Debug for Filter<St, Fut, F>
impl<St, Fut, F> Debug for FilterMap<St, Fut, F>
impl<St, Fut, F> Debug for ForEach<St, Fut, F>
impl<St, Fut, F> Debug for ForEachConcurrent<St, Fut, F>
impl<St, Fut, F> Debug for OrElse<St, Fut, F>
impl<St, Fut, F> Debug for SkipWhile<St, Fut, F>
impl<St, Fut, F> Debug for TakeWhile<St, Fut, F>
impl<St, Fut, F> Debug for Then<St, Fut, F>
impl<St, Fut, F> Debug for TryAll<St, Fut, F>
impl<St, Fut, F> Debug for TryAny<St, Fut, F>
impl<St, Fut, F> Debug for TryFilter<St, Fut, F>
impl<St, Fut, F> Debug for TryFilterMap<St, Fut, F>
impl<St, Fut, F> Debug for TryForEach<St, Fut, F>
impl<St, Fut, F> Debug for TryForEachConcurrent<St, Fut, F>
impl<St, Fut, F> Debug for TrySkipWhile<St, Fut, F>
impl<St, Fut, F> Debug for TryTakeWhile<St, Fut, F>
impl<St, Fut, T, F> Debug for Fold<St, Fut, T, F>
impl<St, Fut, T, F> Debug for TryFold<St, Fut, T, F>
impl<St, S, Fut, F> Debug for Scan<St, S, Fut, F>
impl<St, Si> Debug for Forward<St, Si>where
Forward<St, Si, <St as TryStream>::Ok>: Debug,
St: TryStream,
impl<St, T> Debug for NextIfEq<'_, St, T>
impl<St, U, F> Debug for FlatMap<St, U, F>where
Flatten<Map<St, F>, U>: Debug,
impl<St, U, F> Debug for FlatMapUnordered<St, U, F>
impl<Storage> Debug for __BindgenBitfieldUnit<Storage>where
Storage: Debug,
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for std::sync::mpmc::error::SendTimeoutError<T>
impl<T> Debug for std::sync::mpsc::TrySendError<T>
impl<T> Debug for std::sync::poison::TryLockError<T>
impl<T> Debug for LocalResult<T>where
T: Debug,
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)where
T: Debug,
This trait is implemented for tuples up to twelve items long.
impl<T> Debug for __BindgenOpaqueArray8<T>where
T: Debug,
impl<T> Debug for __BindgenUnionField<T>
impl<T> Debug for __IncompleteArrayField<T>
impl<T> Debug for uref32<T>where
T: Debug,
impl<T> Debug for uref<T>where
T: Debug,
impl<T> Debug for UserRef<T>
impl<T> Debug for Cell<T>
impl<T> Debug for starnix_uapi::arch32::__static_assertions::_core::cell::OnceCell<T>where
T: Debug,
impl<T> Debug for starnix_uapi::arch32::__static_assertions::_core::cell::Ref<'_, T>
impl<T> Debug for RefCell<T>
impl<T> Debug for RefMut<'_, T>
impl<T> Debug for SyncUnsafeCell<T>where
T: ?Sized,
impl<T> Debug for UnsafeCell<T>where
T: ?Sized,
impl<T> Debug for Reverse<T>where
T: Debug,
impl<T> Debug for starnix_uapi::arch32::__static_assertions::_core::future::Pending<T>
impl<T> Debug for starnix_uapi::arch32::__static_assertions::_core::future::Ready<T>where
T: Debug,
impl<T> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Empty<T>
impl<T> Debug for starnix_uapi::arch32::__static_assertions::_core::iter::Once<T>where
T: Debug,
impl<T> Debug for Rev<T>where
T: Debug,
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 Discriminant<T>
impl<T> Debug for ManuallyDrop<T>
impl<T> Debug for NonZero<T>where
T: ZeroablePrimitive + Debug,
impl<T> Debug for Saturating<T>where
T: Debug,
impl<T> Debug for Wrapping<T>where
T: Debug,
impl<T> Debug for Yeet<T>where
T: Debug,
impl<T> Debug for AssertUnwindSafe<T>where
T: Debug,
impl<T> Debug for UnsafePinned<T>where
T: ?Sized,
impl<T> Debug for NonNull<T>where
T: ?Sized,
impl<T> Debug for starnix_uapi::arch32::__static_assertions::_core::result::IntoIter<T>where
T: Debug,
impl<T> Debug for starnix_uapi::arch32::__static_assertions::_core::slice::Iter<'_, T>where
T: Debug,
impl<T> Debug for starnix_uapi::arch32::__static_assertions::_core::slice::IterMut<'_, T>where
T: Debug,
impl<T> Debug for AtomicPtr<T>
target_has_atomic_load_store=ptr only.