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 NamedColor
impl Debug for DisplayModeBar
impl Debug for DoubleClick
impl Debug for ImageButtonFormats
impl Debug for ModeBarButtonName
impl Debug for PlotGLPixelRatio
impl Debug for smo::Alignment
impl Debug for Anchor
impl Debug for AxisSide
impl Debug for Calendar
impl Debug for CellErrorType
impl Debug for ColorScale
impl Debug for ColorScalePalette
impl Debug for ConstrainText
impl Debug for DashType
impl Debug for DataType
impl Debug for DeError
impl Debug for DebugAsHex
impl Debug for Direction
impl Debug for ErrorType
impl Debug for Ex
impl Debug for ExponentFormat
impl Debug for smo::Fill
impl Debug for GradientType
impl Debug for HoverInfo
impl Debug for smo::HoverOn
impl Debug for ImageFormat
impl Debug for Infallible
impl Debug for LineShape
impl Debug for MarkerSymbol
impl Debug for Mode
impl Debug for Month
impl Debug for OdsError
impl Debug for Orientation
impl Debug for PlotType
impl Debug for smo::Position
impl Debug for smo::Reference
impl Debug for RoundingError
impl Debug for SecondsFormat
impl Debug for SheetType
impl Debug for SheetVisible
impl Debug for Show
impl Debug for Side
impl Debug for Sign
impl Debug for SizeMode
impl Debug for TextAnchor
impl Debug for TextPosition
impl Debug for ThicknessMode
impl Debug for TickMode
impl Debug for Ticks
impl Debug for TryReserveErrorKind
impl Debug for Value
impl Debug for Visible
impl Debug for Weekday
impl Debug for XlsError
impl Debug for XlsbError
impl Debug for XlsxError
impl Debug for Category
impl Debug for Colons
impl Debug for Fixed
impl Debug for Numeric
impl Debug for OffsetPrecision
impl Debug for smo::format::Pad
impl Debug for ParseErrorKind
impl Debug for AsciiChar
impl Debug for core::cmp::Ordering
impl Debug for FromBytesWithNulError
impl Debug for c_void
impl Debug for IpAddr
impl Debug for Ipv6MulticastScope
impl Debug for core::net::socket_addr::SocketAddr
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for GetManyMutError
impl Debug for SearchStep
impl Debug for core::sync::atomic::Ordering
impl Debug for BacktraceStatus
impl Debug for VarError
impl Debug for Shutdown
impl Debug for AncillaryError
impl Debug for BacktraceStyle
impl Debug for RecvTimeoutError
impl Debug for TryRecvError
impl Debug for _Unwind_Reason_Code
impl Debug for askama::error::Error
impl Debug for BigEndian
impl Debug for LittleEndian
impl Debug for calamine::errors::Error
impl Debug for CoderResult
impl Debug for DecoderResult
impl Debug for EncoderResult
impl Debug for Latin1Bidi
impl Debug for FlushCompress
impl Debug for FlushDecompress
impl Debug for Status
impl Debug for BaseUnit
impl Debug for FixedAt
impl Debug for Kilo
impl Debug for GetTimezoneError
impl Debug for Level
impl Debug for LevelFilter
impl Debug for PrefilterConfig
impl Debug for CompressionStrategy
impl Debug for TDEFLFlush
impl Debug for TDEFLStatus
impl Debug for CompressionLevel
impl Debug for DataFormat
impl Debug for MZError
impl Debug for MZFlush
impl Debug for MZStatus
impl Debug for TINFLStatus
impl Debug for FloatErrorKind
impl Debug for quick_xml::errors::Error
impl Debug for EscapeError
impl Debug for AttrError
impl Debug for BernoulliError
impl Debug for WeightedError
impl Debug for IndexVec
impl Debug for IndexVecIntoIter
impl Debug for CompressionMethod
impl Debug for ZipError
impl Debug for ErrorKind
impl Debug for SeekFrom
impl Debug for ArrayShow
impl Debug for ArrowSide
impl Debug for AxisConstrain
impl Debug for AxisType
impl Debug for BarMode
impl Debug for BarNorm
impl Debug for BoxMode
impl Debug for ClickMode
impl Debug for ClickToShow
impl Debug for ConstrainDirection
impl Debug for DragMode
impl Debug for DrawDirection
impl Debug for FillRule
impl Debug for GridPattern
impl Debug for GridXSide
impl Debug for GridYSide
impl Debug for GroupClick
impl Debug for HAlign
impl Debug for HoverMode
impl Debug for ItemClick
impl Debug for ItemSizing
impl Debug for MapboxStyle
impl Debug for RangeMode
impl Debug for RowOrder
impl Debug for SelectDirection
impl Debug for SelectorStep
impl Debug for ShapeLayer
impl Debug for ShapeSizeMode
impl Debug for ShapeType
impl Debug for SliderRangeMode
impl Debug for SpikeMode
impl Debug for SpikeSnap
impl Debug for StepMode
impl Debug for TicksDirection
impl Debug for TicksPosition
impl Debug for TraceOrder
impl Debug for UniformTextMode
impl Debug for VAlign
impl Debug for ViolinMode
impl Debug for WaterfallMode
impl Debug for ButtonMethod
impl Debug for UpdateMenuDirection
impl Debug for UpdateMenuType
impl Debug for BoxMean
impl Debug for BoxPoints
impl Debug for smo::traces::box_plot::HoverOn
impl Debug for QuartileMethod
impl Debug for Coloring
impl Debug for ContoursType
impl Debug for Operation
impl Debug for CurrentBin
impl Debug for HistDirection
impl Debug for HistFunc
impl Debug for HistNorm
impl Debug for ColorModel
impl Debug for PixelColor
impl Debug for ZSmooth
impl Debug for DelaunayAxis
impl Debug for IntensityMode
impl Debug for smo::traces::scatter_mapbox::Fill
impl Debug for VbaError
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 UnorderedKeyError
impl Debug for Rgb
impl Debug for Rgba
impl Debug for ToImageButtonOptions
impl Debug for smo::error::Error
impl Debug for InternalFixed
impl Debug for InternalNumeric
impl Debug for OffsetFormat
impl Debug for Parsed
impl Debug for Global
impl Debug for ByteString
impl Debug for CString
impl Debug for FromVecWithNulError
impl Debug for IntoStringError
impl Debug for NulError
impl Debug for alloc::string::Drain<'_>
impl Debug for FromUtf8Error
impl Debug for FromUtf16Error
impl Debug for IntoChars
impl Debug for String
impl Debug for core::alloc::layout::Layout
impl Debug for LayoutError
impl Debug for AllocError
impl Debug for TypeId
impl Debug for TryFromSliceError
impl Debug for core::ascii::EscapeDefault
impl Debug for ByteStr
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
impl Debug for ParseCharError
impl Debug for DecodeUtf16Error
impl Debug for core::char::EscapeDebug
impl Debug for core::char::EscapeDefault
impl Debug for core::char::EscapeUnicode
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for CpuidResult
impl Debug for __m128
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128h
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256h
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512h
impl Debug for __m512i
impl Debug for bf16
impl Debug for CStr
impl Debug for FromBytesUntilNulError
impl Debug for core::fmt::Error
impl Debug for PhantomPinned
impl Debug for Assume
impl Debug for Ipv4Addr
impl Debug for Ipv6Addr
impl Debug for AddrParseError
impl Debug for SocketAddrV4
impl Debug for SocketAddrV6
impl Debug for core::num::dec2flt::ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for PanicMessage<'_>
impl Debug for core::ptr::alignment::Alignment
impl Debug for ParseBoolError
impl Debug for Utf8Error
impl Debug for Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for Utf8Chunks<'_>
impl Debug for AtomicBool
impl Debug for AtomicI8
impl Debug for AtomicI16
impl Debug for AtomicI32
impl Debug for AtomicI64
impl Debug for AtomicIsize
impl Debug for AtomicU8
impl Debug for AtomicU16
impl Debug for AtomicU32
impl Debug for AtomicU64
impl Debug for AtomicUsize
impl Debug for Context<'_>
impl Debug for LocalWaker
impl Debug for RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for Duration
impl Debug for TryFromFloatSecsError
impl Debug for System
impl Debug for Backtrace
impl Debug for BacktraceFrame
impl Debug for Args
impl Debug for ArgsOs
impl Debug for JoinPathsError
impl Debug for SplitPaths<'_>
impl Debug for Vars
impl Debug for VarsOs
impl Debug for std::ffi::os_str::Display<'_>
impl Debug for OsStr
impl Debug for OsString
impl Debug for DirBuilder
impl Debug for DirEntry
impl Debug for File
impl Debug for FileTimes
impl Debug for FileType
impl Debug for std::fs::Metadata
impl Debug for OpenOptions
impl Debug for Permissions
impl Debug for ReadDir
impl Debug for IntoIncoming
impl Debug for TcpListener
impl Debug for TcpStream
impl Debug for UdpSocket
impl Debug for BorrowedFd<'_>
impl Debug for OwnedFd
impl Debug for PidFd
impl Debug for std::os::unix::net::addr::SocketAddr
impl Debug for UnixDatagram
impl Debug for UnixListener
impl Debug for UnixStream
impl Debug for UCred
impl Debug for Components<'_>
impl Debug for std::path::Display<'_>
impl Debug for std::path::Iter<'_>
impl Debug for Path
impl Debug for PathBuf
impl Debug for StripPrefixError
impl Debug for 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 RecvError
impl Debug for Condvar
impl Debug for WaitTimeoutResult
impl Debug for std::sync::poison::once::Once
impl Debug for OnceState
impl Debug for AccessError
impl Debug for Scope<'_, '_>
impl Debug for Builder
impl Debug for Thread
impl Debug for ThreadId
impl Debug for Instant
impl Debug for SystemTime
impl Debug for SystemTimeError
impl Debug for Adler32
impl Debug for JsonEscapeBuffer
impl Debug for Hasher
impl Debug for Encoding
impl Debug for erased_serde::error::Error
impl Debug for Crc
impl Debug for GzBuilder
impl Debug for GzHeader
impl Debug for Compress
impl Debug for CompressError
impl Debug for Decompress
impl Debug for flate2::mem::DecompressError
impl Debug for Compression
impl Debug for getrandom::error::Error
impl Debug for FormatSizeOptions
impl Debug for ParseLevelError
impl Debug for SetLoggerError
impl Debug for One
impl Debug for Three
impl Debug for Two
impl Debug for memchr::arch::all::packedpair::Finder
impl Debug for Pair
impl Debug for memchr::arch::all::rabinkarp::Finder
impl Debug for memchr::arch::all::rabinkarp::FinderRev
impl Debug for memchr::arch::all::shiftor::Finder
impl Debug for memchr::arch::all::twoway::Finder
impl Debug for memchr::arch::all::twoway::FinderRev
impl Debug for FinderBuilder
impl Debug for miniz_oxide::inflate::DecompressError
impl Debug for StreamResult
impl Debug for num_traits::ParseFloatError
impl Debug for OnceBool
impl Debug for OnceNonZeroUsize
impl Debug for u32x4_generic
impl Debug for u64x2_generic
impl Debug for u128x1_generic
impl Debug for Decoder
impl Debug for Bernoulli
impl Debug for Open01
impl Debug for OpenClosed01
impl Debug for Alphanumeric
impl Debug for Standard
impl Debug for UniformChar
impl Debug for UniformDuration
impl Debug for ReadError
impl Debug for StepRng
impl Debug for StdRng
impl Debug for ThreadRng
impl Debug for ChaCha8Core
impl Debug for ChaCha8Rng
impl Debug for ChaCha12Core
impl Debug for ChaCha12Rng
impl Debug for ChaCha20Core
impl Debug for ChaCha20Rng
impl Debug for rand_core::error::Error
impl Debug for OsRng
impl Debug for IgnoredAny
impl Debug for serde::de::value::Error
impl Debug for CompactFormatter
impl Debug for ZipStreamFileMetadata
impl Debug for DateTimeRangeError
impl Debug for InvalidPassword
impl Debug for zip::types::DateTime
impl Debug for BorrowedBuf<'_>
impl Debug for smo::io::Empty
impl Debug for smo::io::Error
impl Debug for PipeReader
impl Debug for PipeWriter
impl Debug for smo::io::Repeat
impl Debug for Sink
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 WriterPanicked
impl Debug for ActiveShape
impl Debug for Annotation
impl Debug for Axis
impl Debug for Center
impl Debug for ColorAxis
impl Debug for GridDomain
impl Debug for LayoutColorScale
impl Debug for LayoutGrid
impl Debug for LayoutTemplate
impl Debug for Legend
impl Debug for Mapbox
impl Debug for Margin
impl Debug for ModeBar
impl Debug for NewShape
impl Debug for RangeSelector
impl Debug for RangeSlider
impl Debug for RangeSliderYAxis
impl Debug for SelectorButton
impl Debug for Shape
impl Debug for ShapeLine
impl Debug for Template
impl Debug for UniformText
impl Debug for Button
impl Debug for UpdateMenu
impl Debug for smo::map::Map<String, Value>
impl Debug for NaiveDateDaysIterator
impl Debug for NaiveDateWeeksIterator
impl Debug for Arguments<'_>
impl Debug for ColorBar
impl Debug for ColorScaleElement
impl Debug for Configuration
impl Debug for Days
impl Debug for DefaultHasher
impl Debug for Domain
impl Debug for ErrorData
impl Debug for FixedOffset
impl Debug for Font
impl Debug for FormattingOptions
impl Debug for Gradient
impl Debug for Grid
impl Debug for Image
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 Label
impl Debug for smo::Layout
impl Debug for LegendGroupTitle
impl Debug for Line
impl Debug for Local
impl Debug for Marker
impl Debug for smo::Metadata
impl Debug for Months
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 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 NaiveTime
The Debug output of the naive time t is the same as
t.format("%H:%M:%S%.f").
The string printed can be readily parsed via the parse method on str.
It should be noted that, for leap seconds not on the minute boundary, it may print a representation not distinguishable from non-leap seconds. This doesn’t matter in practice, since such leap seconds never happened. (By the time of the first leap second on 1972-06-30, every time zone offset around the world has standardized to the 5-minute alignment.)
§Example
use chrono::NaiveTime;
assert_eq!(format!("{:?}", NaiveTime::from_hms_opt(23, 56, 4).unwrap()), "23:56:04");
assert_eq!(
format!("{:?}", NaiveTime::from_hms_milli_opt(23, 56, 4, 12).unwrap()),
"23:56:04.012"
);
assert_eq!(
format!("{:?}", NaiveTime::from_hms_micro_opt(23, 56, 4, 1234).unwrap()),
"23:56:04.001234"
);
assert_eq!(
format!("{:?}", NaiveTime::from_hms_nano_opt(23, 56, 4, 123456).unwrap()),
"23:56:04.000123456"
);Leap seconds may also be used.
assert_eq!(
format!("{:?}", NaiveTime::from_hms_milli_opt(6, 59, 59, 1_500).unwrap()),
"06:59:60.500"
);impl Debug for NaiveWeek
impl Debug for Number
impl Debug for OutOfRange
impl Debug for OutOfRangeError
impl Debug for smo::Pad
impl Debug for ParseError
impl Debug for ParseMonthError
impl Debug for ParseWeekdayError
impl Debug for RandomState
impl Debug for Sheet
impl Debug for SipHasher
impl Debug for TickFormatStop
impl Debug for TimeDelta
impl Debug for Title
impl Debug for TryReserveError
impl Debug for Utc
impl Debug for XlsOptions
impl Debug for Contours
impl Debug for Bins
impl Debug for Cumulative
impl Debug for smo::traces::mesh3d::Contour
impl Debug for LightPosition
impl Debug for smo::traces::mesh3d::Lighting
impl Debug for Selection
impl Debug for SelectionMarker
impl Debug for smo::traces::surface::Lighting
impl Debug for PlaneContours
impl Debug for PlaneProject
impl Debug for smo::traces::surface::Position
impl Debug for SurfaceContours
impl Debug for smo::vba::Reference
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl<'a> Debug for Item<'a>
impl<'a> Debug for Utf8Pattern<'a>
impl<'a> Debug for Component<'a>
impl<'a> Debug for std::path::Prefix<'a>
impl<'a> Debug for Event<'a>
impl<'a> Debug for PrefixDeclaration<'a>
impl<'a> Debug for IndexVecIter<'a>
impl<'a> Debug for Unexpected<'a>
impl<'a> Debug for StrftimeItems<'a>
impl<'a> Debug for Request<'a>
impl<'a> Debug for Source<'a>
impl<'a> Debug for core::ffi::c_str::Bytes<'a>
impl<'a> Debug for Location<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for core::str::iter::Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for core::str::iter::EscapeDebug<'a>
impl<'a> Debug for core::str::iter::EscapeDefault<'a>
impl<'a> Debug for core::str::iter::EscapeUnicode<'a>
impl<'a> Debug for core::str::iter::Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'a>
impl<'a> Debug for Utf8Chunk<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for ContextBuilder<'a>
impl<'a> Debug for std::net::tcp::Incoming<'a>
impl<'a> Debug for SocketAncillary<'a>
impl<'a> Debug for std::os::unix::net::listener::Incoming<'a>
impl<'a> Debug for PanicHookInfo<'a>
impl<'a> Debug for Ancestors<'a>
impl<'a> Debug for PrefixComponent<'a>
impl<'a> Debug for CommandArgs<'a>
impl<'a> Debug for CommandEnvs<'a>
impl<'a> Debug for 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 PercentDecode<'a>
impl<'a> Debug for Attribute<'a>
impl<'a> Debug for Attributes<'a>
impl<'a> Debug for BytesCData<'a>
impl<'a> Debug for BytesDecl<'a>
impl<'a> Debug for BytesEnd<'a>
impl<'a> Debug for BytesStart<'a>
impl<'a> Debug for BytesText<'a>
impl<'a> Debug for LocalName<'a>
impl<'a> Debug for Namespace<'a>
impl<'a> Debug for quick_xml::name::Prefix<'a>
impl<'a> Debug for QName<'a>
impl<'a> Debug for PrettyFormatter<'a>
impl<'a> Debug for BorrowedCursor<'a>
impl<'a> Debug for IoSlice<'a>
impl<'a> Debug for IoSliceMut<'a>
impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>
impl<'a, 'b> Debug for StrSearcher<'a, 'b>
impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>
impl<'a, 'f> Debug for VaList<'a, 'f>where
'f: 'a,
impl<'a, 'h> Debug for OneIter<'a, 'h>
impl<'a, 'h> Debug for ThreeIter<'a, 'h>
impl<'a, 'h> Debug for TwoIter<'a, 'h>
impl<'a, A> Debug for core::option::Iter<'a, A>where
A: Debug + 'a,
impl<'a, A> Debug for core::option::IterMut<'a, A>where
A: Debug + 'a,
impl<'a, E> Debug for Escaped<'a, E>
impl<'a, E> Debug for BytesDeserializer<'a, E>
impl<'a, E> Debug for CowStrDeserializer<'a, E>
impl<'a, E> Debug for StrDeserializer<'a, E>
impl<'a, E, W> Debug for EscapeWriter<'a, E, W>
impl<'a, I> Debug for ByRefSized<'a, I>where
I: Debug,
impl<'a, I, A> Debug for Splice<'a, I, A>
impl<'a, K, F> Debug for smo::hash_set::ExtractIf<'a, K, F>
impl<'a, K, V, F> Debug for smo::hash_map::ExtractIf<'a, K, V, F>
impl<'a, P> Debug for MatchIndices<'a, P>
impl<'a, P> Debug for Matches<'a, P>
impl<'a, P> Debug for RMatchIndices<'a, P>
impl<'a, P> Debug for RMatches<'a, P>
impl<'a, P> Debug for core::str::iter::RSplit<'a, P>
impl<'a, P> Debug for core::str::iter::RSplitN<'a, P>
impl<'a, P> Debug for RSplitTerminator<'a, P>
impl<'a, P> Debug for core::str::iter::Split<'a, P>
impl<'a, P> Debug for core::str::iter::SplitInclusive<'a, P>
impl<'a, P> Debug for core::str::iter::SplitN<'a, P>
impl<'a, P> Debug for SplitTerminator<'a, P>
impl<'a, S, T> Debug for SliceChooseIter<'a, S, T>
impl<'a, T> Debug for smo::btree_set::Range<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for core::result::IterMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Chunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for ChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunks<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExact<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksExactMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for RChunksMut<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for Windows<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpmc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::Iter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for std::sync::mpsc::TryIter<'a, T>where
T: Debug + 'a,
impl<'a, T> Debug for OnceRef<'a, T>
impl<'a, T> Debug for Slice<'a, T>where
T: Debug,
impl<'a, T> Debug for Ptr<'a, T>where
T: 'a + ?Sized,
impl<'a, T> Debug for Cells<'a, T>
impl<'a, T> Debug for Rows<'a, T>
impl<'a, T> Debug for UsedCells<'a, T>
impl<'a, T, A> Debug for smo::binary_heap::Drain<'a, T, A>
impl<'a, T, A> Debug for DrainSorted<'a, T, A>
impl<'a, T, F, A> Debug for alloc::vec::extract_if::ExtractIf<'a, T, F, A>
impl<'a, T, P> Debug for ChunkBy<'a, T, P>where
T: 'a + Debug,
impl<'a, T, P> Debug for ChunkByMut<'a, T, P>where
T: 'a + Debug,
impl<'a, T, const N: usize> Debug for core::slice::iter::ArrayChunks<'a, T, N>where
T: Debug + 'a,
impl<'a, T, const N: usize> Debug for ArrayChunksMut<'a, T, N>where
T: Debug + 'a,
impl<'a, T, const N: usize> Debug for ArrayWindows<'a, T, N>where
T: Debug + 'a,
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>
impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>
impl<'de, I, E> Debug for MapDeserializer<'de, I, E>
impl<'f> Debug for VaListImpl<'f>
impl<'h> Debug for Memchr2<'h>
impl<'h> Debug for Memchr3<'h>
impl<'h> Debug for Memchr<'h>
impl<'h, 'n> Debug for FindIter<'h, 'n>
impl<'h, 'n> Debug for FindRevIter<'h, 'n>
impl<'n> Debug for memchr::memmem::Finder<'n>
impl<'n> Debug for memchr::memmem::FinderRev<'n>
impl<'ns> Debug for ResolveResult<'ns>
impl<'scope, T> Debug for ScopedJoinHandle<'scope, T>
impl<A> Debug for core::option::IntoIter<A>where
A: Debug,
impl<A> Debug for IterRange<A>where
A: Debug,
impl<A> Debug for IterRangeFrom<A>where
A: Debug,
impl<A> Debug for IterRangeInclusive<A>where
A: Debug,
impl<A> Debug for EnumAccessDeserializer<A>where
A: Debug,
impl<A> Debug for MapAccessDeserializer<A>where
A: Debug,
impl<A> Debug for SeqAccessDeserializer<A>where
A: Debug,
impl<A> Debug for smo::Repeat<A>where
A: Debug,
impl<A> Debug for RepeatN<A>where
A: Debug,
impl<A, B> Debug for smo::Chain<A, B>
impl<A, B> Debug for Zip<A, B>
impl<B> Debug for Cow<'_, B>
impl<B> Debug for smo::io::Lines<B>where
B: Debug,
impl<B> Debug for smo::io::Split<B>where
B: Debug,
impl<B, C> Debug for ControlFlow<B, C>
impl<D, F, T, S> Debug for DistMap<D, F, T, S>
impl<D, R, T> Debug for DistIter<D, R, T>
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>
impl<E> Debug for U8Deserializer<E>
impl<E> Debug for U16Deserializer<E>
impl<E> Debug for U32Deserializer<E>
impl<E> Debug for U64Deserializer<E>
impl<E> Debug for U128Deserializer<E>
impl<E> Debug for UnitDeserializer<E>
impl<E> Debug for UsizeDeserializer<E>
impl<E, T> Debug for MarkupDisplay<E, T>
impl<F> Debug for core::fmt::builders::FromFn<F>
impl<F> Debug for PollFn<F>
impl<F> Debug for core::iter::sources::from_fn::FromFn<F>
impl<F> Debug for CharPredicateSearcher<'_, F>
impl<F> Debug for OnceWith<F>
impl<F> Debug for RepeatWith<F>
impl<F> Debug for Fwhere
F: FnPtr,
impl<H> Debug for BuildHasherDefault<H>
impl<H> Debug for Histogram<H>
impl<I> Debug for DelayedFormat<I>where
I: Debug,
impl<I> Debug for FromIter<I>where
I: Debug,
impl<I> Debug for DecodeUtf16<I>
impl<I> Debug for Cloned<I>where
I: Debug,
impl<I> Debug for Copied<I>where
I: Debug,
impl<I> Debug for Cycle<I>where
I: Debug,
impl<I> Debug for Enumerate<I>where
I: Debug,
impl<I> Debug for Fuse<I>where
I: Debug,
impl<I> Debug for Intersperse<I>
impl<I> Debug for Peekable<I>
impl<I> Debug for Skip<I>where
I: Debug,
impl<I> Debug for StepBy<I>where
I: Debug,
impl<I> Debug for smo::Take<I>where
I: Debug,
impl<I, E> Debug for SeqDeserializer<I, E>where
I: Debug,
impl<I, F> Debug for core::iter::adapters::map::Map<I, F>where
I: Debug,
impl<I, F> Debug for FilterMap<I, F>where
I: Debug,
impl<I, F> Debug for Inspect<I, F>where
I: Debug,
impl<I, F, const N: usize> Debug for MapWindows<I, F, N>
impl<I, G> Debug for IntersperseWith<I, G>
impl<I, P> Debug for Filter<I, P>where
I: Debug,
impl<I, P> Debug for MapWhile<I, P>where
I: Debug,
impl<I, P> Debug for SkipWhile<I, P>where
I: Debug,
impl<I, P> Debug for TakeWhile<I, P>where
I: Debug,
impl<I, St, F> Debug for Scan<I, St, F>
impl<I, U> Debug for Flatten<I>
impl<I, U, F> Debug for FlatMap<I, U, F>
impl<I, const N: usize> Debug for smo::ArrayChunks<I, N>
impl<Idx> Debug for core::ops::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::ops::range::RangeInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeTo<Idx>where
Idx: Debug,
impl<Idx> Debug for RangeToInclusive<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::Range<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeFrom<Idx>where
Idx: Debug,
impl<Idx> Debug for core::range::RangeInclusive<Idx>where
Idx: Debug,
impl<K> Debug for smo::btree_set::Cursor<'_, K>where
K: Debug,
impl<K> Debug for smo::hash_set::Drain<'_, K>where
K: Debug,
impl<K> Debug for smo::hash_set::IntoIter<K>where
K: Debug,
impl<K> Debug for smo::hash_set::Iter<'_, K>where
K: Debug,
impl<K, A> Debug for smo::btree_set::CursorMut<'_, K, A>where
K: Debug,
impl<K, A> Debug for smo::btree_set::CursorMutKey<'_, K, A>where
K: Debug,
impl<K, V> Debug for smo::hash_map::Entry<'_, K, V>
impl<K, V> Debug for smo::btree_map::Cursor<'_, K, V>
impl<K, V> Debug for smo::btree_map::Iter<'_, K, V>
impl<K, V> Debug for smo::btree_map::IterMut<'_, K, V>
impl<K, V> Debug for smo::btree_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for smo::btree_map::Range<'_, K, V>
impl<K, V> Debug for RangeMut<'_, K, V>
impl<K, V> Debug for smo::btree_map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for smo::btree_map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V> Debug for smo::hash_map::Drain<'_, K, V>
impl<K, V> Debug for smo::hash_map::IntoIter<K, V>
impl<K, V> Debug for smo::hash_map::IntoKeys<K, V>where
K: Debug,
impl<K, V> Debug for smo::hash_map::IntoValues<K, V>where
V: Debug,
impl<K, V> Debug for smo::hash_map::Iter<'_, K, V>
impl<K, V> Debug for smo::hash_map::IterMut<'_, K, V>
impl<K, V> Debug for smo::hash_map::Keys<'_, K, V>where
K: Debug,
impl<K, V> Debug for smo::hash_map::OccupiedEntry<'_, K, V>
impl<K, V> Debug for smo::hash_map::OccupiedError<'_, K, V>
impl<K, V> Debug for smo::hash_map::VacantEntry<'_, K, V>where
K: Debug,
impl<K, V> Debug for smo::hash_map::Values<'_, K, V>where
V: Debug,
impl<K, V> Debug for smo::hash_map::ValuesMut<'_, K, V>where
V: Debug,
impl<K, V, A> Debug for smo::btree_map::Entry<'_, K, V, A>
impl<K, V, A> Debug for smo::btree_map::CursorMut<'_, K, V, A>
impl<K, V, A> Debug for smo::btree_map::CursorMutKey<'_, K, V, A>
impl<K, V, A> Debug for smo::btree_map::IntoIter<K, V, A>
impl<K, V, A> Debug for smo::btree_map::IntoKeys<K, V, A>
impl<K, V, A> Debug for smo::btree_map::IntoValues<K, V, A>
impl<K, V, A> Debug for smo::btree_map::OccupiedEntry<'_, K, V, A>
impl<K, V, A> Debug for smo::btree_map::OccupiedError<'_, K, V, A>
impl<K, V, A> Debug for smo::btree_map::VacantEntry<'_, K, V, A>
impl<K, V, A> Debug for BTreeMap<K, V, A>
impl<K, V, F> Debug for smo::btree_map::ExtractIf<'_, K, V, F>
impl<K, V, S> Debug for RawEntryMut<'_, K, V, S>
impl<K, V, S> Debug for RawEntryBuilder<'_, K, V, S>
impl<K, V, S> Debug for RawEntryBuilderMut<'_, K, V, S>
impl<K, V, S> Debug for RawOccupiedEntryMut<'_, K, V, S>
impl<K, V, S> Debug for RawVacantEntryMut<'_, K, V, S>
impl<K, V, S> Debug for HashMap<K, V, S>
impl<Lat, Lon> Debug for ScatterMapbox<Lat, Lon>
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 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<Ptr> Debug for Pin<Ptr>where
Ptr: Debug,
impl<R> Debug for CrcReader<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::bufread::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateDecoder<R>where
R: Debug,
impl<R> Debug for flate2::deflate::read::DeflateEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::GzEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::bufread::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::GzEncoder<R>where
R: Debug,
impl<R> Debug for flate2::gz::read::MultiGzDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::bufread::ZlibEncoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibDecoder<R>where
R: Debug,
impl<R> Debug for flate2::zlib::read::ZlibEncoder<R>where
R: Debug,
impl<R> Debug for ReadRng<R>where
R: Debug,
impl<R> Debug for BlockRng64<R>where
R: BlockRngCore + Debug,
impl<R> Debug for BlockRng<R>where
R: BlockRngCore + Debug,
impl<R> Debug for ZipStreamReader<R>where
R: Debug,
impl<R> Debug for ZipArchive<R>where
R: Debug,
impl<R> Debug for BufReader<R>
impl<R> Debug for smo::io::Bytes<R>where
R: Debug,
impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>
impl<T> Debug for Bound<T>where
T: Debug,
impl<T> Debug for Dim<T>
impl<T> Debug for LocalResult<T>where
T: Debug,
impl<T> Debug for Option<T>where
T: Debug,
impl<T> Debug for Poll<T>where
T: Debug,
impl<T> Debug for SendTimeoutError<T>
impl<T> Debug for TrySendError<T>
impl<T> Debug for TryLockError<T>
impl<T> Debug for Attr<T>
impl<T> Debug for *const Twhere
T: ?Sized,
impl<T> Debug for *mut Twhere
T: ?Sized,
impl<T> Debug for &T
impl<T> Debug for &mut T
impl<T> Debug for [T]where
T: Debug,
impl<T> Debug for (T₁, T₂, …, Tₙ)
This trait is implemented for tuples up to twelve items long.