Skip to content

Commit 8fad66b

Browse files
committed
Implement Debug for MaybeUninit
Precedent: UnsafeCell implements Debug even though it can't actually display the value.
1 parent 87cbf0a commit 8fad66b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/libcore/mem/maybe_uninit.rs

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
use crate::any::type_name;
2+
use crate::fmt;
13
use crate::intrinsics;
24
use crate::mem::ManuallyDrop;
35

@@ -230,6 +232,13 @@ impl<T: Copy> Clone for MaybeUninit<T> {
230232
}
231233
}
232234

235+
#[stable(feature = "maybe_uninit_debug", since = "1.41.0")]
236+
impl<T> fmt::Debug for MaybeUninit<T> {
237+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
238+
f.pad(type_name::<Self>())
239+
}
240+
}
241+
233242
impl<T> MaybeUninit<T> {
234243
/// Creates a new `MaybeUninit<T>` initialized with the given value.
235244
/// It is safe to call [`assume_init`] on the return value of this function.

0 commit comments

Comments
 (0)