We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87cbf0a commit 8fad66bCopy full SHA for 8fad66b
src/libcore/mem/maybe_uninit.rs
@@ -1,3 +1,5 @@
1
+use crate::any::type_name;
2
+use crate::fmt;
3
use crate::intrinsics;
4
use crate::mem::ManuallyDrop;
5
@@ -230,6 +232,13 @@ impl<T: Copy> Clone for MaybeUninit<T> {
230
232
}
231
233
234
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
+
242
impl<T> MaybeUninit<T> {
243
/// Creates a new `MaybeUninit<T>` initialized with the given value.
244
/// It is safe to call [`assume_init`] on the return value of this function.
0 commit comments