Expand description
?
formatting.
Debug
should format the output in a programmer-facing, debugging context.
Generally speaking, you should just derive
a Debug
implementation.
When used with the alternate format specifier #?
, the output is pretty-printed.
For more information on formatters, see the module-level documentation.
This trait can be used with #[derive]
if all fields implement Debug
. When
derive
d for structs, it will use the name of the struct
, then {
, then a
comma-separated list of each field’s name and Debug
value, then }
. For
enum
s, it will use the name of the variant and, if applicable, (
, then the
Debug
values of the fields, then )
.
Stability
Derived Debug
formats are not stable, and so may change with future Rust
versions. Additionally, Debug
implementations of types provided by the
standard library (libstd
, libcore
, liballoc
, 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 }");
RunManually 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 }");
RunThere 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)
}
}
RunDebug
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 };
assert_eq!(format!("The origin is: {origin:#?}"),
"The origin is: Point {
x: 0,
y: 0,
}");
RunRequired Methods
Formats the value using the given formatter.
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,
)");
RunImplementors
impl Debug for core::cmp::Ordering
impl Debug for Infallible
impl Debug for c_void
impl Debug for FpCategory
impl Debug for IntErrorKind
impl Debug for Which
impl Debug for SearchStep
impl Debug for core::sync::atomic::Ordering
impl Debug for Alignment
impl Debug for bool
impl Debug for char
impl Debug for f32
impl Debug for f64
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 AllocError
impl Debug for Layout
impl Debug for LayoutError
impl Debug for TypeId
impl Debug for float64x1_t
impl Debug for float64x1x2_t
impl Debug for float64x1x3_t
impl Debug for float64x1x4_t
impl Debug for float64x2_t
impl Debug for float64x2x2_t
impl Debug for float64x2x3_t
impl Debug for float64x2x4_t
impl Debug for int16x2_t
impl Debug for uint16x2_t
impl Debug for float32x2_t
impl Debug for float32x2x2_t
impl Debug for float32x2x3_t
impl Debug for float32x2x4_t
impl Debug for float32x4_t
impl Debug for float32x4x2_t
impl Debug for float32x4x3_t
impl Debug for float32x4x4_t
impl Debug for int8x4_t
impl Debug for int8x8_t
impl Debug for int8x8x2_t
impl Debug for int8x8x3_t
impl Debug for int8x8x4_t
impl Debug for int8x16_t
impl Debug for int8x16x2_t
impl Debug for int8x16x3_t
impl Debug for int8x16x4_t
impl Debug for int16x4_t
impl Debug for int16x4x2_t
impl Debug for int16x4x3_t
impl Debug for int16x4x4_t
impl Debug for int16x8_t
impl Debug for int16x8x2_t
impl Debug for int16x8x3_t
impl Debug for int16x8x4_t
impl Debug for int32x2_t
impl Debug for int32x2x2_t
impl Debug for int32x2x3_t
impl Debug for int32x2x4_t
impl Debug for int32x4_t
impl Debug for int32x4x2_t
impl Debug for int32x4x3_t
impl Debug for int32x4x4_t
impl Debug for int64x1_t
impl Debug for int64x1x2_t
impl Debug for int64x1x3_t
impl Debug for int64x1x4_t
impl Debug for int64x2_t
impl Debug for int64x2x2_t
impl Debug for int64x2x3_t
impl Debug for int64x2x4_t
impl Debug for poly8x8_t
impl Debug for poly8x8x2_t
impl Debug for poly8x8x3_t
impl Debug for poly8x8x4_t
impl Debug for poly8x16_t
impl Debug for poly8x16x2_t
impl Debug for poly8x16x3_t
impl Debug for poly8x16x4_t
impl Debug for poly16x4_t
impl Debug for poly16x4x2_t
impl Debug for poly16x4x3_t
impl Debug for poly16x4x4_t
impl Debug for poly16x8_t
impl Debug for poly16x8x2_t
impl Debug for poly16x8x3_t
impl Debug for poly16x8x4_t
impl Debug for poly64x1_t
impl Debug for poly64x1x2_t
impl Debug for poly64x1x3_t
impl Debug for poly64x1x4_t
impl Debug for poly64x2_t
impl Debug for poly64x2x2_t
impl Debug for poly64x2x3_t
impl Debug for poly64x2x4_t
impl Debug for uint8x4_t
impl Debug for uint8x8_t
impl Debug for uint8x8x2_t
impl Debug for uint8x8x3_t
impl Debug for uint8x8x4_t
impl Debug for uint8x16_t
impl Debug for uint8x16x2_t
impl Debug for uint8x16x3_t
impl Debug for uint8x16x4_t
impl Debug for uint16x4_t
impl Debug for uint16x4x2_t
impl Debug for uint16x4x3_t
impl Debug for uint16x4x4_t
impl Debug for uint16x8_t
impl Debug for uint16x8x2_t
impl Debug for uint16x8x3_t
impl Debug for uint16x8x4_t
impl Debug for uint32x2_t
impl Debug for uint32x2x2_t
impl Debug for uint32x2x3_t
impl Debug for uint32x2x4_t
impl Debug for uint32x4_t
impl Debug for uint32x4x2_t
impl Debug for uint32x4x3_t
impl Debug for uint32x4x4_t
impl Debug for uint64x1_t
impl Debug for uint64x1x2_t
impl Debug for uint64x1x3_t
impl Debug for uint64x1x4_t
impl Debug for uint64x2_t
impl Debug for uint64x2x2_t
impl Debug for uint64x2x3_t
impl Debug for uint64x2x4_t
impl Debug for vector_bool_long
impl Debug for vector_double
impl Debug for vector_signed_long
impl Debug for vector_unsigned_long
impl Debug for v128
target_family="wasm"
only.impl Debug for CpuidResult
impl Debug for __m128
impl Debug for __m128bh
impl Debug for __m128d
impl Debug for __m128i
impl Debug for __m256
impl Debug for __m256bh
impl Debug for __m256d
impl Debug for __m256i
impl Debug for __m512
impl Debug for __m512bh
impl Debug for __m512d
impl Debug for __m512i
impl Debug for TryFromSliceError
impl Debug for core::ascii::EscapeDefault
impl Debug for BorrowError
impl Debug for BorrowMutError
impl Debug for CharTryFromError
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 ParseCharError
impl Debug for ToLowercase
impl Debug for ToUppercase
impl Debug for TryFromCharError
impl Debug for CStr
impl Debug for FromBytesUntilNulError
impl Debug for FromBytesWithNulError
impl Debug for SipHasher
impl Debug for PhantomPinned
impl Debug for NonZeroI8
impl Debug for NonZeroI16
impl Debug for NonZeroI32
impl Debug for NonZeroI64
impl Debug for NonZeroI128
impl Debug for NonZeroIsize
impl Debug for NonZeroU8
impl Debug for NonZeroU16
impl Debug for NonZeroU32
impl Debug for NonZeroU64
impl Debug for NonZeroU128
impl Debug for NonZeroUsize
impl Debug for ParseFloatError
impl Debug for ParseIntError
impl Debug for TryFromIntError
impl Debug for RangeFull
impl Debug for Utf8Lossy
impl Debug for Chars<'_>
impl Debug for EncodeUtf16<'_>
impl Debug for ParseBoolError
impl Debug for Utf8Error
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 RawWaker
impl Debug for RawWakerVTable
impl Debug for Waker
impl Debug for Duration
impl Debug for FromFloatSecsError
impl Debug for Arguments<'_>
impl Debug for Error
impl Debug for dyn Any
impl Debug for dyn Any + Send
impl Debug for dyn Any + Send + Sync
impl<'a> Debug for Demand<'a>
impl<'a> Debug for Location<'a>
impl<'a> Debug for PanicInfo<'a>
impl<'a> Debug for EscapeAscii<'a>
impl<'a> Debug for Utf8LossyChunk<'a>
impl<'a> Debug for CharSearcher<'a>
impl<'a> Debug for Bytes<'a>
impl<'a> Debug for CharIndices<'a>
impl<'a> Debug for core::str::EscapeDebug<'a>
impl<'a> Debug for core::str::EscapeDefault<'a>
impl<'a> Debug for core::str::EscapeUnicode<'a>
impl<'a> Debug for Lines<'a>
impl<'a> Debug for LinesAny<'a>
impl<'a> Debug for SplitAsciiWhitespace<'a>
impl<'a> Debug for SplitWhitespace<'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: 'a> Debug for VaList<'a, 'f>
impl<'a, A: Debug + 'a> Debug for core::option::Iter<'a, A>
impl<'a, A: Debug + 'a> Debug for core::option::IterMut<'a, A>
impl<'a, I: Debug> Debug for ByRefSized<'a, I>
impl<'a, P> Debug for MatchIndices<'a, P> where
P: Pattern<'a, Searcher: Debug>,
impl<'a, P> Debug for Matches<'a, P> where
P: Pattern<'a, Searcher: Debug>,
impl<'a, P> Debug for RMatchIndices<'a, P> where
P: Pattern<'a, Searcher: Debug>,
impl<'a, P> Debug for RMatches<'a, P> where
P: Pattern<'a, Searcher: Debug>,
impl<'a, P> Debug for core::str::RSplit<'a, P> where
P: Pattern<'a, Searcher: Debug>,
impl<'a, P> Debug for core::str::RSplitN<'a, P> where
P: Pattern<'a, Searcher: Debug>,
impl<'a, P> Debug for RSplitTerminator<'a, P> where
P: Pattern<'a, Searcher: Debug>,
impl<'a, P> Debug for core::str::Split<'a, P> where
P: Pattern<'a, Searcher: Debug>,
impl<'a, P> Debug for core::str::SplitN<'a, P> where
P: Pattern<'a, Searcher: Debug>,
impl<'a, P> Debug for SplitTerminator<'a, P> where
P: Pattern<'a, Searcher: Debug>,
impl<'a, P: Pattern<'a, Searcher: Debug>> Debug for core::str::SplitInclusive<'a, P>
impl<'a, T: 'a + Debug, P> Debug for GroupBy<'a, T, P>
impl<'a, T: 'a + Debug, P> Debug for GroupByMut<'a, T, P>
impl<'a, T: Debug + 'a> Debug for core::result::Iter<'a, T>
impl<'a, T: Debug + 'a> Debug for core::result::IterMut<'a, T>
impl<'a, T: Debug + 'a> Debug for Chunks<'a, T>
impl<'a, T: Debug + 'a> Debug for ChunksExact<'a, T>
impl<'a, T: Debug + 'a> Debug for ChunksExactMut<'a, T>
impl<'a, T: Debug + 'a> Debug for ChunksMut<'a, T>
impl<'a, T: Debug + 'a> Debug for RChunks<'a, T>
impl<'a, T: Debug + 'a> Debug for RChunksExact<'a, T>
impl<'a, T: Debug + 'a> Debug for RChunksExactMut<'a, T>
impl<'a, T: Debug + 'a> Debug for RChunksMut<'a, T>
impl<'a, T: Debug + 'a> Debug for Windows<'a, T>
impl<'a, T: Debug + 'a, const N: usize> Debug for ArrayChunks<'a, T, N>
impl<'a, T: Debug + 'a, const N: usize> Debug for ArrayChunksMut<'a, T, N>
impl<'a, T: Debug + 'a, const N: usize> Debug for ArrayWindows<'a, T, N>
impl<'a, const N: usize> Debug for CharArraySearcher<'a, N>
impl<'f> Debug for VaListImpl<'f>
impl<A: Debug> Debug for Repeat<A>
impl<A: Debug> Debug for core::option::IntoIter<A>
impl<A: Debug, B: Debug> Debug for Chain<A, B>
impl<A: Debug, B: Debug> Debug for Zip<A, B>
impl<B: Debug, C: Debug> Debug for ControlFlow<B, C>
impl<Dyn: ?Sized> Debug for DynMetadata<Dyn>
impl<F> Debug for PollFn<F>
impl<F> Debug for FromFn<F>
impl<F> Debug for CharPredicateSearcher<'_, F> where
F: FnMut(char) -> bool,
impl<F: Debug> Debug for OnceWith<F>
impl<F: Debug> Debug for RepeatWith<F>
impl<H> Debug for BuildHasherDefault<H>
impl<I, G> Debug for IntersperseWith<I, G> where
I: Iterator + Debug,
I::Item: Debug,
G: Debug,
impl<I, U> Debug for Flatten<I> where
I: Debug + Iterator<Item: IntoIterator<IntoIter = U, Item = U::Item>>,
U: Debug + Iterator,
impl<I: Debug + Iterator> Debug for Intersperse<I> where
I::Item: Clone,
I::Item: Debug,
impl<I: Debug + Iterator> Debug for Peekable<I> where
I::Item: Debug,
impl<I: Debug> Debug for FromIter<I>
impl<I: Debug> Debug for DecodeUtf16<I> where
I: Iterator<Item = u16>,
impl<I: Debug> Debug for Cloned<I>
impl<I: Debug> Debug for Copied<I>
impl<I: Debug> Debug for Cycle<I>
impl<I: Debug> Debug for Enumerate<I>
impl<I: Debug> Debug for Fuse<I>
impl<I: Debug> Debug for Skip<I>
impl<I: Debug> Debug for StepBy<I>
impl<I: Debug> Debug for Take<I>
impl<I: Debug, F> Debug for FilterMap<I, F>
impl<I: Debug, F> Debug for Inspect<I, F>
impl<I: Debug, F> Debug for Map<I, F>
impl<I: Debug, P> Debug for Filter<I, P>
impl<I: Debug, P> Debug for MapWhile<I, P>
impl<I: Debug, P> Debug for SkipWhile<I, P>
impl<I: Debug, P> Debug for TakeWhile<I, P>
impl<I: Debug, St: Debug, F> Debug for Scan<I, St, F>
impl<I: Debug, U, F> Debug for FlatMap<I, U, F> where
U: IntoIterator<IntoIter: Debug>,
impl<Idx: Debug> Debug for Range<Idx>
impl<Idx: Debug> Debug for RangeFrom<Idx>
impl<Idx: Debug> Debug for RangeInclusive<Idx>
impl<Idx: Debug> Debug for RangeTo<Idx>
impl<Idx: Debug> Debug for RangeToInclusive<Idx>
impl<P: Debug> Debug for Pin<P>
impl<Ret, T> Debug for fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for extern "C" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C" fn (T₁, T₂, …, Tₙ) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<Ret, T> Debug for unsafe extern "C" fn (T₁, T₂, …, Tₙ, ...) -> Ret
This trait is implemented for function pointers with up to twelve arguments.
impl<T> Debug for Pending<T>
impl<T> Debug for Empty<T>
impl<T> Debug for Discriminant<T>
impl<T> Debug for AtomicPtr<T>
impl<T> Debug for core::task::Ready<T>
impl<T> Debug for MaybeUninit<T>
impl<T, const LANES: usize> Debug for Mask<T, LANES> where
T: MaskElement + Debug,
LaneCount<LANES>: SupportedLaneCount,
impl<T, const LANES: usize> Debug for Simd<T, LANES> where
LaneCount<LANES>: SupportedLaneCount,
T: SimdElement + Debug,
impl<T: Copy + Debug> Debug for Cell<T>
impl<T: Debug + ?Sized> Debug for ManuallyDrop<T>
impl<T: Debug> Debug for Bound<T>
impl<T: Debug> Debug for Option<T>
impl<T: Debug> Debug for Poll<T>
impl<T: Debug> Debug for [T]
impl<T: Debug> Debug for (T₁, T₂, …, Tₙ) where
T: ?Sized,
This trait is implemented for tuples up to twelve items long.