]> git.lizzy.rs Git - rust.git/blob - src/libcore/mem.rs
Improve type size assertions
[rust.git] / src / libcore / mem.rs
1 //! Basic functions for dealing with memory.
2 //!
3 //! This module contains functions for querying the size and alignment of
4 //! types, initializing and manipulating memory.
5
6 #![stable(feature = "rust1", since = "1.0.0")]
7
8 use crate::clone;
9 use crate::cmp;
10 use crate::fmt;
11 use crate::hash;
12 use crate::intrinsics;
13 use crate::marker::{Copy, PhantomData, Sized};
14 use crate::ptr;
15 use crate::ops::{Deref, DerefMut};
16
17 #[stable(feature = "rust1", since = "1.0.0")]
18 #[doc(inline)]
19 pub use crate::intrinsics::transmute;
20
21 /// Takes ownership and "forgets" about the value **without running its destructor**.
22 ///
23 /// Any resources the value manages, such as heap memory or a file handle, will linger
24 /// forever in an unreachable state. However, it does not guarantee that pointers
25 /// to this memory will remain valid.
26 ///
27 /// * If you want to leak memory, see [`Box::leak`][leak].
28 /// * If you want to obtain a raw pointer to the memory, see [`Box::into_raw`][into_raw].
29 /// * If you want to dispose of a value properly, running its destructor, see
30 /// [`mem::drop`][drop].
31 ///
32 /// # Safety
33 ///
34 /// `forget` is not marked as `unsafe`, because Rust's safety guarantees
35 /// do not include a guarantee that destructors will always run. For example,
36 /// a program can create a reference cycle using [`Rc`][rc], or call
37 /// [`process::exit`][exit] to exit without running destructors. Thus, allowing
38 /// `mem::forget` from safe code does not fundamentally change Rust's safety
39 /// guarantees.
40 ///
41 /// That said, leaking resources such as memory or I/O objects is usually undesirable,
42 /// so `forget` is only recommended for specialized use cases like those shown below.
43 ///
44 /// Because forgetting a value is allowed, any `unsafe` code you write must
45 /// allow for this possibility. You cannot return a value and expect that the
46 /// caller will necessarily run the value's destructor.
47 ///
48 /// [rc]: ../../std/rc/struct.Rc.html
49 /// [exit]: ../../std/process/fn.exit.html
50 ///
51 /// # Examples
52 ///
53 /// Leak an I/O object, never closing the file:
54 ///
55 /// ```no_run
56 /// use std::mem;
57 /// use std::fs::File;
58 ///
59 /// let file = File::open("foo.txt").unwrap();
60 /// mem::forget(file);
61 /// ```
62 ///
63 /// The practical use cases for `forget` are rather specialized and mainly come
64 /// up in unsafe or FFI code.
65 ///
66 /// ## Use case 1
67 ///
68 /// You have created an uninitialized value using [`mem::uninitialized`][uninit].
69 /// You must either initialize or `forget` it on every computation path before
70 /// Rust drops it automatically, like at the end of a scope or after a panic.
71 /// Running the destructor on an uninitialized value would be [undefined behavior][ub].
72 ///
73 /// ```
74 /// use std::mem;
75 /// use std::ptr;
76 ///
77 /// # let some_condition = false;
78 /// unsafe {
79 ///     let mut uninit_vec: Vec<u32> = mem::uninitialized();
80 ///
81 ///     if some_condition {
82 ///         // Initialize the variable.
83 ///         ptr::write(&mut uninit_vec, Vec::new());
84 ///     } else {
85 ///         // Forget the uninitialized value so its destructor doesn't run.
86 ///         mem::forget(uninit_vec);
87 ///     }
88 /// }
89 /// ```
90 ///
91 /// ## Use case 2
92 ///
93 /// You have duplicated the bytes making up a value, without doing a proper
94 /// [`Clone`][clone]. You need the value's destructor to run only once,
95 /// because a double `free` is undefined behavior.
96 ///
97 /// An example is a possible implementation of [`mem::swap`][swap]:
98 ///
99 /// ```
100 /// use std::mem;
101 /// use std::ptr;
102 ///
103 /// # #[allow(dead_code)]
104 /// fn swap<T>(x: &mut T, y: &mut T) {
105 ///     unsafe {
106 ///         // Give ourselves some scratch space to work with
107 ///         let mut t: T = mem::uninitialized();
108 ///
109 ///         // Perform the swap, `&mut` pointers never alias
110 ///         ptr::copy_nonoverlapping(&*x, &mut t, 1);
111 ///         ptr::copy_nonoverlapping(&*y, x, 1);
112 ///         ptr::copy_nonoverlapping(&t, y, 1);
113 ///
114 ///         // y and t now point to the same thing, but we need to completely
115 ///         // forget `t` because we do not want to run the destructor for `T`
116 ///         // on its value, which is still owned somewhere outside this function.
117 ///         mem::forget(t);
118 ///     }
119 /// }
120 /// ```
121 ///
122 /// [drop]: fn.drop.html
123 /// [uninit]: fn.uninitialized.html
124 /// [clone]: ../clone/trait.Clone.html
125 /// [swap]: fn.swap.html
126 /// [box]: ../../std/boxed/struct.Box.html
127 /// [leak]: ../../std/boxed/struct.Box.html#method.leak
128 /// [into_raw]: ../../std/boxed/struct.Box.html#method.into_raw
129 /// [ub]: ../../reference/behavior-considered-undefined.html
130 #[inline]
131 #[stable(feature = "rust1", since = "1.0.0")]
132 pub fn forget<T>(t: T) {
133     ManuallyDrop::new(t);
134 }
135
136 /// Like [`forget`], but also accepts unsized values.
137 ///
138 /// This function is just a shim intended to be removed when the `unsized_locals` feature gets
139 /// stabilized.
140 ///
141 /// [`forget`]: fn.forget.html
142 #[inline]
143 #[unstable(feature = "forget_unsized", issue = "0")]
144 pub fn forget_unsized<T: ?Sized>(t: T) {
145     unsafe { intrinsics::forget(t) }
146 }
147
148 /// Returns the size of a type in bytes.
149 ///
150 /// More specifically, this is the offset in bytes between successive elements
151 /// in an array with that item type including alignment padding. Thus, for any
152 /// type `T` and length `n`, `[T; n]` has a size of `n * size_of::<T>()`.
153 ///
154 /// In general, the size of a type is not stable across compilations, but
155 /// specific types such as primitives are.
156 ///
157 /// The following table gives the size for primitives.
158 ///
159 /// Type | size_of::\<Type>()
160 /// ---- | ---------------
161 /// () | 0
162 /// bool | 1
163 /// u8 | 1
164 /// u16 | 2
165 /// u32 | 4
166 /// u64 | 8
167 /// u128 | 16
168 /// i8 | 1
169 /// i16 | 2
170 /// i32 | 4
171 /// i64 | 8
172 /// i128 | 16
173 /// f32 | 4
174 /// f64 | 8
175 /// char | 4
176 ///
177 /// Furthermore, `usize` and `isize` have the same size.
178 ///
179 /// The types `*const T`, `&T`, `Box<T>`, `Option<&T>`, and `Option<Box<T>>` all have
180 /// the same size. If `T` is Sized, all of those types have the same size as `usize`.
181 ///
182 /// The mutability of a pointer does not change its size. As such, `&T` and `&mut T`
183 /// have the same size. Likewise for `*const T` and `*mut T`.
184 ///
185 /// # Size of `#[repr(C)]` items
186 ///
187 /// The `C` representation for items has a defined layout. With this layout,
188 /// the size of items is also stable as long as all fields have a stable size.
189 ///
190 /// ## Size of Structs
191 ///
192 /// For `structs`, the size is determined by the following algorithm.
193 ///
194 /// For each field in the struct ordered by declaration order:
195 ///
196 /// 1. Add the size of the field.
197 /// 2. Round up the current size to the nearest multiple of the next field's [alignment].
198 ///
199 /// Finally, round the size of the struct to the nearest multiple of its [alignment].
200 /// The alignment of the struct is usually the largest alignment of all its
201 /// fields; this can be changed with the use of `repr(align(N))`.
202 ///
203 /// Unlike `C`, zero sized structs are not rounded up to one byte in size.
204 ///
205 /// ## Size of Enums
206 ///
207 /// Enums that carry no data other than the discriminant have the same size as C enums
208 /// on the platform they are compiled for.
209 ///
210 /// ## Size of Unions
211 ///
212 /// The size of a union is the size of its largest field.
213 ///
214 /// Unlike `C`, zero sized unions are not rounded up to one byte in size.
215 ///
216 /// # Examples
217 ///
218 /// ```
219 /// use std::mem;
220 ///
221 /// // Some primitives
222 /// assert_eq!(4, mem::size_of::<i32>());
223 /// assert_eq!(8, mem::size_of::<f64>());
224 /// assert_eq!(0, mem::size_of::<()>());
225 ///
226 /// // Some arrays
227 /// assert_eq!(8, mem::size_of::<[i32; 2]>());
228 /// assert_eq!(12, mem::size_of::<[i32; 3]>());
229 /// assert_eq!(0, mem::size_of::<[i32; 0]>());
230 ///
231 ///
232 /// // Pointer size equality
233 /// assert_eq!(mem::size_of::<&i32>(), mem::size_of::<*const i32>());
234 /// assert_eq!(mem::size_of::<&i32>(), mem::size_of::<Box<i32>>());
235 /// assert_eq!(mem::size_of::<&i32>(), mem::size_of::<Option<&i32>>());
236 /// assert_eq!(mem::size_of::<Box<i32>>(), mem::size_of::<Option<Box<i32>>>());
237 /// ```
238 ///
239 /// Using `#[repr(C)]`.
240 ///
241 /// ```
242 /// use std::mem;
243 ///
244 /// #[repr(C)]
245 /// struct FieldStruct {
246 ///     first: u8,
247 ///     second: u16,
248 ///     third: u8
249 /// }
250 ///
251 /// // The size of the first field is 1, so add 1 to the size. Size is 1.
252 /// // The alignment of the second field is 2, so add 1 to the size for padding. Size is 2.
253 /// // The size of the second field is 2, so add 2 to the size. Size is 4.
254 /// // The alignment of the third field is 1, so add 0 to the size for padding. Size is 4.
255 /// // The size of the third field is 1, so add 1 to the size. Size is 5.
256 /// // Finally, the alignment of the struct is 2 (because the largest alignment amongst its
257 /// // fields is 2), so add 1 to the size for padding. Size is 6.
258 /// assert_eq!(6, mem::size_of::<FieldStruct>());
259 ///
260 /// #[repr(C)]
261 /// struct TupleStruct(u8, u16, u8);
262 ///
263 /// // Tuple structs follow the same rules.
264 /// assert_eq!(6, mem::size_of::<TupleStruct>());
265 ///
266 /// // Note that reordering the fields can lower the size. We can remove both padding bytes
267 /// // by putting `third` before `second`.
268 /// #[repr(C)]
269 /// struct FieldStructOptimized {
270 ///     first: u8,
271 ///     third: u8,
272 ///     second: u16
273 /// }
274 ///
275 /// assert_eq!(4, mem::size_of::<FieldStructOptimized>());
276 ///
277 /// // Union size is the size of the largest field.
278 /// #[repr(C)]
279 /// union ExampleUnion {
280 ///     smaller: u8,
281 ///     larger: u16
282 /// }
283 ///
284 /// assert_eq!(2, mem::size_of::<ExampleUnion>());
285 /// ```
286 ///
287 /// [alignment]: ./fn.align_of.html
288 #[inline]
289 #[stable(feature = "rust1", since = "1.0.0")]
290 #[rustc_promotable]
291 pub const fn size_of<T>() -> usize {
292     intrinsics::size_of::<T>()
293 }
294
295 /// Returns the size of the pointed-to value in bytes.
296 ///
297 /// This is usually the same as `size_of::<T>()`. However, when `T` *has* no
298 /// statically-known size, e.g., a slice [`[T]`][slice] or a [trait object],
299 /// then `size_of_val` can be used to get the dynamically-known size.
300 ///
301 /// [slice]: ../../std/primitive.slice.html
302 /// [trait object]: ../../book/ch17-02-trait-objects.html
303 ///
304 /// # Examples
305 ///
306 /// ```
307 /// use std::mem;
308 ///
309 /// assert_eq!(4, mem::size_of_val(&5i32));
310 ///
311 /// let x: [u8; 13] = [0; 13];
312 /// let y: &[u8] = &x;
313 /// assert_eq!(13, mem::size_of_val(y));
314 /// ```
315 #[inline]
316 #[stable(feature = "rust1", since = "1.0.0")]
317 pub fn size_of_val<T: ?Sized>(val: &T) -> usize {
318     unsafe { intrinsics::size_of_val(val) }
319 }
320
321 /// Returns the [ABI]-required minimum alignment of a type.
322 ///
323 /// Every reference to a value of the type `T` must be a multiple of this number.
324 ///
325 /// This is the alignment used for struct fields. It may be smaller than the preferred alignment.
326 ///
327 /// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
328 ///
329 /// # Examples
330 ///
331 /// ```
332 /// # #![allow(deprecated)]
333 /// use std::mem;
334 ///
335 /// assert_eq!(4, mem::min_align_of::<i32>());
336 /// ```
337 #[inline]
338 #[stable(feature = "rust1", since = "1.0.0")]
339 #[rustc_deprecated(reason = "use `align_of` instead", since = "1.2.0")]
340 pub fn min_align_of<T>() -> usize {
341     intrinsics::min_align_of::<T>()
342 }
343
344 /// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to.
345 ///
346 /// Every reference to a value of the type `T` must be a multiple of this number.
347 ///
348 /// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
349 ///
350 /// # Examples
351 ///
352 /// ```
353 /// # #![allow(deprecated)]
354 /// use std::mem;
355 ///
356 /// assert_eq!(4, mem::min_align_of_val(&5i32));
357 /// ```
358 #[inline]
359 #[stable(feature = "rust1", since = "1.0.0")]
360 #[rustc_deprecated(reason = "use `align_of_val` instead", since = "1.2.0")]
361 pub fn min_align_of_val<T: ?Sized>(val: &T) -> usize {
362     unsafe { intrinsics::min_align_of_val(val) }
363 }
364
365 /// Returns the [ABI]-required minimum alignment of a type.
366 ///
367 /// Every reference to a value of the type `T` must be a multiple of this number.
368 ///
369 /// This is the alignment used for struct fields. It may be smaller than the preferred alignment.
370 ///
371 /// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
372 ///
373 /// # Examples
374 ///
375 /// ```
376 /// use std::mem;
377 ///
378 /// assert_eq!(4, mem::align_of::<i32>());
379 /// ```
380 #[inline]
381 #[stable(feature = "rust1", since = "1.0.0")]
382 #[rustc_promotable]
383 pub const fn align_of<T>() -> usize {
384     intrinsics::min_align_of::<T>()
385 }
386
387 /// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to.
388 ///
389 /// Every reference to a value of the type `T` must be a multiple of this number.
390 ///
391 /// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
392 ///
393 /// # Examples
394 ///
395 /// ```
396 /// use std::mem;
397 ///
398 /// assert_eq!(4, mem::align_of_val(&5i32));
399 /// ```
400 #[inline]
401 #[stable(feature = "rust1", since = "1.0.0")]
402 pub fn align_of_val<T: ?Sized>(val: &T) -> usize {
403     unsafe { intrinsics::min_align_of_val(val) }
404 }
405
406 /// Returns `true` if dropping values of type `T` matters.
407 ///
408 /// This is purely an optimization hint, and may be implemented conservatively:
409 /// it may return `true` for types that don't actually need to be dropped.
410 /// As such always returning `true` would be a valid implementation of
411 /// this function. However if this function actually returns `false`, then you
412 /// can be certain dropping `T` has no side effect.
413 ///
414 /// Low level implementations of things like collections, which need to manually
415 /// drop their data, should use this function to avoid unnecessarily
416 /// trying to drop all their contents when they are destroyed. This might not
417 /// make a difference in release builds (where a loop that has no side-effects
418 /// is easily detected and eliminated), but is often a big win for debug builds.
419 ///
420 /// Note that `ptr::drop_in_place` already performs this check, so if your workload
421 /// can be reduced to some small number of drop_in_place calls, using this is
422 /// unnecessary. In particular note that you can drop_in_place a slice, and that
423 /// will do a single needs_drop check for all the values.
424 ///
425 /// Types like Vec therefore just `drop_in_place(&mut self[..])` without using
426 /// needs_drop explicitly. Types like HashMap, on the other hand, have to drop
427 /// values one at a time and should use this API.
428 ///
429 ///
430 /// # Examples
431 ///
432 /// Here's an example of how a collection might make use of needs_drop:
433 ///
434 /// ```
435 /// use std::{mem, ptr};
436 ///
437 /// pub struct MyCollection<T> {
438 /// #   data: [T; 1],
439 ///     /* ... */
440 /// }
441 /// # impl<T> MyCollection<T> {
442 /// #   fn iter_mut(&mut self) -> &mut [T] { &mut self.data }
443 /// #   fn free_buffer(&mut self) {}
444 /// # }
445 ///
446 /// impl<T> Drop for MyCollection<T> {
447 ///     fn drop(&mut self) {
448 ///         unsafe {
449 ///             // drop the data
450 ///             if mem::needs_drop::<T>() {
451 ///                 for x in self.iter_mut() {
452 ///                     ptr::drop_in_place(x);
453 ///                 }
454 ///             }
455 ///             self.free_buffer();
456 ///         }
457 ///     }
458 /// }
459 /// ```
460 #[inline]
461 #[stable(feature = "needs_drop", since = "1.21.0")]
462 pub const fn needs_drop<T>() -> bool {
463     intrinsics::needs_drop::<T>()
464 }
465
466 /// Creates a value whose bytes are all zero.
467 ///
468 /// This has the same effect as allocating space with
469 /// [`mem::uninitialized`][uninit] and then zeroing it out. It is useful for
470 /// FFI sometimes, but should generally be avoided.
471 ///
472 /// There is no guarantee that an all-zero byte-pattern represents a valid value of
473 /// some type `T`. If `T` has a destructor and the value is destroyed (due to
474 /// a panic or the end of a scope) before being initialized, then the destructor
475 /// will run on zeroed data, likely leading to [undefined behavior][ub].
476 ///
477 /// See also the documentation for [`mem::uninitialized`][uninit], which has
478 /// many of the same caveats.
479 ///
480 /// [uninit]: fn.uninitialized.html
481 /// [ub]: ../../reference/behavior-considered-undefined.html
482 ///
483 /// # Examples
484 ///
485 /// ```
486 /// use std::mem;
487 ///
488 /// let x: i32 = unsafe { mem::zeroed() };
489 /// assert_eq!(0, x);
490 /// ```
491 #[inline]
492 #[stable(feature = "rust1", since = "1.0.0")]
493 pub unsafe fn zeroed<T>() -> T {
494     intrinsics::panic_if_uninhabited::<T>();
495     intrinsics::init()
496 }
497
498 /// Bypasses Rust's normal memory-initialization checks by pretending to
499 /// produce a value of type `T`, while doing nothing at all.
500 ///
501 /// **This is incredibly dangerous and should not be done lightly. Deeply
502 /// consider initializing your memory with a default value instead.**
503 ///
504 /// This is useful for FFI functions and initializing arrays sometimes,
505 /// but should generally be avoided.
506 ///
507 /// # Undefined behavior
508 ///
509 /// It is [undefined behavior][ub] to read uninitialized memory, even just an
510 /// uninitialized boolean. For instance, if you branch on the value of such
511 /// a boolean, your program may take one, both, or neither of the branches.
512 ///
513 /// Writing to the uninitialized value is similarly dangerous. Rust believes the
514 /// value is initialized, and will therefore try to [`Drop`] the uninitialized
515 /// value and its fields if you try to overwrite it in a normal manner. The only way
516 /// to safely initialize an uninitialized value is with [`ptr::write`][write],
517 /// [`ptr::copy`][copy], or [`ptr::copy_nonoverlapping`][copy_no].
518 ///
519 /// If the value does implement [`Drop`], it must be initialized before
520 /// it goes out of scope (and therefore would be dropped). Note that this
521 /// includes a `panic` occurring and unwinding the stack suddenly.
522 ///
523 /// If you partially initialize an array, you may need to use
524 /// [`ptr::drop_in_place`][drop_in_place] to remove the elements you have fully
525 /// initialized followed by [`mem::forget`][mem_forget] to prevent drop running
526 /// on the array. If a partially allocated array is dropped this will lead to
527 /// undefined behaviour.
528 ///
529 /// # Examples
530 ///
531 /// Here's how to safely initialize an array of [`Vec`]s.
532 ///
533 /// ```
534 /// use std::mem;
535 /// use std::ptr;
536 ///
537 /// // Only declare the array. This safely leaves it
538 /// // uninitialized in a way that Rust will track for us.
539 /// // However we can't initialize it element-by-element
540 /// // safely, and we can't use the `[value; 1000]`
541 /// // constructor because it only works with `Copy` data.
542 /// let mut data: [Vec<u32>; 1000];
543 ///
544 /// unsafe {
545 ///     // So we need to do this to initialize it.
546 ///     data = mem::uninitialized();
547 ///
548 ///     // DANGER ZONE: if anything panics or otherwise
549 ///     // incorrectly reads the array here, we will have
550 ///     // Undefined Behavior.
551 ///
552 ///     // It's ok to mutably iterate the data, since this
553 ///     // doesn't involve reading it at all.
554 ///     // (ptr and len are statically known for arrays)
555 ///     for elem in &mut data[..] {
556 ///         // *elem = Vec::new() would try to drop the
557 ///         // uninitialized memory at `elem` -- bad!
558 ///         //
559 ///         // Vec::new doesn't allocate or do really
560 ///         // anything. It's only safe to call here
561 ///         // because we know it won't panic.
562 ///         ptr::write(elem, Vec::new());
563 ///     }
564 ///
565 ///     // SAFE ZONE: everything is initialized.
566 /// }
567 ///
568 /// println!("{:?}", &data[0]);
569 /// ```
570 ///
571 /// This example emphasizes exactly how delicate and dangerous using `mem::uninitialized`
572 /// can be. Note that the [`vec!`] macro *does* let you initialize every element with a
573 /// value that is only [`Clone`], so the following is semantically equivalent and
574 /// vastly less dangerous, as long as you can live with an extra heap
575 /// allocation:
576 ///
577 /// ```
578 /// let data: Vec<Vec<u32>> = vec![Vec::new(); 1000];
579 /// println!("{:?}", &data[0]);
580 /// ```
581 ///
582 /// This example shows how to handle partially initialized arrays, which could
583 /// be found in low-level datastructures.
584 ///
585 /// ```
586 /// use std::mem;
587 /// use std::ptr;
588 ///
589 /// // Count the number of elements we have assigned.
590 /// let mut data_len: usize = 0;
591 /// let mut data: [String; 1000];
592 ///
593 /// unsafe {
594 ///     data = mem::uninitialized();
595 ///
596 ///     for elem in &mut data[0..500] {
597 ///         ptr::write(elem, String::from("hello"));
598 ///         data_len += 1;
599 ///     }
600 ///
601 ///     // For each item in the array, drop if we allocated it.
602 ///     for i in &mut data[0..data_len] {
603 ///         ptr::drop_in_place(i);
604 ///     }
605 /// }
606 /// // Forget the data. If this is allowed to drop, you may see a crash such as:
607 /// // 'mem_uninit_test(2457,0x7fffb55dd380) malloc: *** error for object
608 /// // 0x7ff3b8402920: pointer being freed was not allocated'
609 /// mem::forget(data);
610 /// ```
611 ///
612 /// [`Vec`]: ../../std/vec/struct.Vec.html
613 /// [`vec!`]: ../../std/macro.vec.html
614 /// [`Clone`]: ../../std/clone/trait.Clone.html
615 /// [ub]: ../../reference/behavior-considered-undefined.html
616 /// [write]: ../ptr/fn.write.html
617 /// [drop_in_place]: ../ptr/fn.drop_in_place.html
618 /// [mem_zeroed]: fn.zeroed.html
619 /// [mem_forget]: fn.forget.html
620 /// [copy]: ../intrinsics/fn.copy.html
621 /// [copy_no]: ../intrinsics/fn.copy_nonoverlapping.html
622 /// [`Drop`]: ../ops/trait.Drop.html
623 #[inline]
624 #[rustc_deprecated(since = "2.0.0", reason = "use `mem::MaybeUninit::uninit` instead")]
625 #[stable(feature = "rust1", since = "1.0.0")]
626 pub unsafe fn uninitialized<T>() -> T {
627     intrinsics::panic_if_uninhabited::<T>();
628     intrinsics::uninit()
629 }
630
631 /// Swaps the values at two mutable locations, without deinitializing either one.
632 ///
633 /// # Examples
634 ///
635 /// ```
636 /// use std::mem;
637 ///
638 /// let mut x = 5;
639 /// let mut y = 42;
640 ///
641 /// mem::swap(&mut x, &mut y);
642 ///
643 /// assert_eq!(42, x);
644 /// assert_eq!(5, y);
645 /// ```
646 #[inline]
647 #[stable(feature = "rust1", since = "1.0.0")]
648 pub fn swap<T>(x: &mut T, y: &mut T) {
649     unsafe {
650         ptr::swap_nonoverlapping_one(x, y);
651     }
652 }
653
654 /// Moves `src` into the referenced `dest`, returning the previous `dest` value.
655 ///
656 /// Neither value is dropped.
657 ///
658 /// # Examples
659 ///
660 /// A simple example:
661 ///
662 /// ```
663 /// use std::mem;
664 ///
665 /// let mut v: Vec<i32> = vec![1, 2];
666 ///
667 /// let old_v = mem::replace(&mut v, vec![3, 4, 5]);
668 /// assert_eq!(vec![1, 2], old_v);
669 /// assert_eq!(vec![3, 4, 5], v);
670 /// ```
671 ///
672 /// `replace` allows consumption of a struct field by replacing it with another value.
673 /// Without `replace` you can run into issues like these:
674 ///
675 /// ```compile_fail,E0507
676 /// struct Buffer<T> { buf: Vec<T> }
677 ///
678 /// impl<T> Buffer<T> {
679 ///     fn get_and_reset(&mut self) -> Vec<T> {
680 ///         // error: cannot move out of dereference of `&mut`-pointer
681 ///         let buf = self.buf;
682 ///         self.buf = Vec::new();
683 ///         buf
684 ///     }
685 /// }
686 /// ```
687 ///
688 /// Note that `T` does not necessarily implement [`Clone`], so it can't even clone and reset
689 /// `self.buf`. But `replace` can be used to disassociate the original value of `self.buf` from
690 /// `self`, allowing it to be returned:
691 ///
692 /// ```
693 /// # #![allow(dead_code)]
694 /// use std::mem;
695 ///
696 /// # struct Buffer<T> { buf: Vec<T> }
697 /// impl<T> Buffer<T> {
698 ///     fn get_and_reset(&mut self) -> Vec<T> {
699 ///         mem::replace(&mut self.buf, Vec::new())
700 ///     }
701 /// }
702 /// ```
703 ///
704 /// [`Clone`]: ../../std/clone/trait.Clone.html
705 #[inline]
706 #[stable(feature = "rust1", since = "1.0.0")]
707 pub fn replace<T>(dest: &mut T, mut src: T) -> T {
708     swap(dest, &mut src);
709     src
710 }
711
712 /// Disposes of a value.
713 ///
714 /// This does call the argument's implementation of [`Drop`][drop].
715 ///
716 /// This effectively does nothing for types which implement `Copy`, e.g.
717 /// integers. Such values are copied and _then_ moved into the function, so the
718 /// value persists after this function call.
719 ///
720 /// This function is not magic; it is literally defined as
721 ///
722 /// ```
723 /// pub fn drop<T>(_x: T) { }
724 /// ```
725 ///
726 /// Because `_x` is moved into the function, it is automatically dropped before
727 /// the function returns.
728 ///
729 /// [drop]: ../ops/trait.Drop.html
730 ///
731 /// # Examples
732 ///
733 /// Basic usage:
734 ///
735 /// ```
736 /// let v = vec![1, 2, 3];
737 ///
738 /// drop(v); // explicitly drop the vector
739 /// ```
740 ///
741 /// Since [`RefCell`] enforces the borrow rules at runtime, `drop` can
742 /// release a [`RefCell`] borrow:
743 ///
744 /// ```
745 /// use std::cell::RefCell;
746 ///
747 /// let x = RefCell::new(1);
748 ///
749 /// let mut mutable_borrow = x.borrow_mut();
750 /// *mutable_borrow = 1;
751 ///
752 /// drop(mutable_borrow); // relinquish the mutable borrow on this slot
753 ///
754 /// let borrow = x.borrow();
755 /// println!("{}", *borrow);
756 /// ```
757 ///
758 /// Integers and other types implementing [`Copy`] are unaffected by `drop`.
759 ///
760 /// ```
761 /// #[derive(Copy, Clone)]
762 /// struct Foo(u8);
763 ///
764 /// let x = 1;
765 /// let y = Foo(2);
766 /// drop(x); // a copy of `x` is moved and dropped
767 /// drop(y); // a copy of `y` is moved and dropped
768 ///
769 /// println!("x: {}, y: {}", x, y.0); // still available
770 /// ```
771 ///
772 /// [`RefCell`]: ../../std/cell/struct.RefCell.html
773 /// [`Copy`]: ../../std/marker/trait.Copy.html
774 #[inline]
775 #[stable(feature = "rust1", since = "1.0.0")]
776 pub fn drop<T>(_x: T) { }
777
778 /// Interprets `src` as having type `&U`, and then reads `src` without moving
779 /// the contained value.
780 ///
781 /// This function will unsafely assume the pointer `src` is valid for
782 /// [`size_of::<U>`][size_of] bytes by transmuting `&T` to `&U` and then reading
783 /// the `&U`. It will also unsafely create a copy of the contained value instead of
784 /// moving out of `src`.
785 ///
786 /// It is not a compile-time error if `T` and `U` have different sizes, but it
787 /// is highly encouraged to only invoke this function where `T` and `U` have the
788 /// same size. This function triggers [undefined behavior][ub] if `U` is larger than
789 /// `T`.
790 ///
791 /// [ub]: ../../reference/behavior-considered-undefined.html
792 /// [size_of]: fn.size_of.html
793 ///
794 /// # Examples
795 ///
796 /// ```
797 /// use std::mem;
798 ///
799 /// #[repr(packed)]
800 /// struct Foo {
801 ///     bar: u8,
802 /// }
803 ///
804 /// let foo_slice = [10u8];
805 ///
806 /// unsafe {
807 ///     // Copy the data from 'foo_slice' and treat it as a 'Foo'
808 ///     let mut foo_struct: Foo = mem::transmute_copy(&foo_slice);
809 ///     assert_eq!(foo_struct.bar, 10);
810 ///
811 ///     // Modify the copied data
812 ///     foo_struct.bar = 20;
813 ///     assert_eq!(foo_struct.bar, 20);
814 /// }
815 ///
816 /// // The contents of 'foo_slice' should not have changed
817 /// assert_eq!(foo_slice, [10]);
818 /// ```
819 #[inline]
820 #[stable(feature = "rust1", since = "1.0.0")]
821 pub unsafe fn transmute_copy<T, U>(src: &T) -> U {
822     ptr::read_unaligned(src as *const T as *const U)
823 }
824
825 /// Opaque type representing the discriminant of an enum.
826 ///
827 /// See the [`discriminant`] function in this module for more information.
828 ///
829 /// [`discriminant`]: fn.discriminant.html
830 #[stable(feature = "discriminant_value", since = "1.21.0")]
831 pub struct Discriminant<T>(u64, PhantomData<fn() -> T>);
832
833 // N.B. These trait implementations cannot be derived because we don't want any bounds on T.
834
835 #[stable(feature = "discriminant_value", since = "1.21.0")]
836 impl<T> Copy for Discriminant<T> {}
837
838 #[stable(feature = "discriminant_value", since = "1.21.0")]
839 impl<T> clone::Clone for Discriminant<T> {
840     fn clone(&self) -> Self {
841         *self
842     }
843 }
844
845 #[stable(feature = "discriminant_value", since = "1.21.0")]
846 impl<T> cmp::PartialEq for Discriminant<T> {
847     fn eq(&self, rhs: &Self) -> bool {
848         self.0 == rhs.0
849     }
850 }
851
852 #[stable(feature = "discriminant_value", since = "1.21.0")]
853 impl<T> cmp::Eq for Discriminant<T> {}
854
855 #[stable(feature = "discriminant_value", since = "1.21.0")]
856 impl<T> hash::Hash for Discriminant<T> {
857     fn hash<H: hash::Hasher>(&self, state: &mut H) {
858         self.0.hash(state);
859     }
860 }
861
862 #[stable(feature = "discriminant_value", since = "1.21.0")]
863 impl<T> fmt::Debug for Discriminant<T> {
864     fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
865         fmt.debug_tuple("Discriminant")
866            .field(&self.0)
867            .finish()
868     }
869 }
870
871 /// Returns a value uniquely identifying the enum variant in `v`.
872 ///
873 /// If `T` is not an enum, calling this function will not result in undefined behavior, but the
874 /// return value is unspecified.
875 ///
876 /// # Stability
877 ///
878 /// The discriminant of an enum variant may change if the enum definition changes. A discriminant
879 /// of some variant will not change between compilations with the same compiler.
880 ///
881 /// # Examples
882 ///
883 /// This can be used to compare enums that carry data, while disregarding
884 /// the actual data:
885 ///
886 /// ```
887 /// use std::mem;
888 ///
889 /// enum Foo { A(&'static str), B(i32), C(i32) }
890 ///
891 /// assert!(mem::discriminant(&Foo::A("bar")) == mem::discriminant(&Foo::A("baz")));
892 /// assert!(mem::discriminant(&Foo::B(1))     == mem::discriminant(&Foo::B(2)));
893 /// assert!(mem::discriminant(&Foo::B(3))     != mem::discriminant(&Foo::C(3)));
894 /// ```
895 #[stable(feature = "discriminant_value", since = "1.21.0")]
896 pub fn discriminant<T>(v: &T) -> Discriminant<T> {
897     unsafe {
898         Discriminant(intrinsics::discriminant_value(v), PhantomData)
899     }
900 }
901
902 // FIXME: Reference `MaybeUninit` from these docs, once that is stable.
903 /// A wrapper to inhibit compiler from automatically calling `T`’s destructor.
904 ///
905 /// This wrapper is 0-cost.
906 ///
907 /// `ManuallyDrop<T>` is subject to the same layout optimizations as `T`.
908 /// As a consequence, it has *no effect* on the assumptions that the compiler makes
909 /// about all values being initialized at their type.  In particular, initializing
910 /// a `ManuallyDrop<&mut T>` with [`mem::zeroed`] is undefined behavior.
911 ///
912 /// # Examples
913 ///
914 /// This wrapper helps with explicitly documenting the drop order dependencies between fields of
915 /// the type:
916 ///
917 /// ```rust
918 /// use std::mem::ManuallyDrop;
919 /// struct Peach;
920 /// struct Banana;
921 /// struct Melon;
922 /// struct FruitBox {
923 ///     // Immediately clear there’s something non-trivial going on with these fields.
924 ///     peach: ManuallyDrop<Peach>,
925 ///     melon: Melon, // Field that’s independent of the other two.
926 ///     banana: ManuallyDrop<Banana>,
927 /// }
928 ///
929 /// impl Drop for FruitBox {
930 ///     fn drop(&mut self) {
931 ///         unsafe {
932 ///             // Explicit ordering in which field destructors are run specified in the intuitive
933 ///             // location â€“ the destructor of the structure containing the fields.
934 ///             // Moreover, one can now reorder fields within the struct however much they want.
935 ///             ManuallyDrop::drop(&mut self.peach);
936 ///             ManuallyDrop::drop(&mut self.banana);
937 ///         }
938 ///         // After destructor for `FruitBox` runs (this function), the destructor for Melon gets
939 ///         // invoked in the usual manner, as it is not wrapped in `ManuallyDrop`.
940 ///     }
941 /// }
942 /// ```
943 ///
944 /// [`mem::zeroed`]: fn.zeroed.html
945 #[stable(feature = "manually_drop", since = "1.20.0")]
946 #[lang = "manually_drop"]
947 #[derive(Copy, Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
948 #[repr(transparent)]
949 pub struct ManuallyDrop<T: ?Sized> {
950     value: T,
951 }
952
953 impl<T> ManuallyDrop<T> {
954     /// Wrap a value to be manually dropped.
955     ///
956     /// # Examples
957     ///
958     /// ```rust
959     /// use std::mem::ManuallyDrop;
960     /// ManuallyDrop::new(Box::new(()));
961     /// ```
962     #[stable(feature = "manually_drop", since = "1.20.0")]
963     #[inline(always)]
964     pub const fn new(value: T) -> ManuallyDrop<T> {
965         ManuallyDrop { value }
966     }
967
968     /// Extracts the value from the `ManuallyDrop` container.
969     ///
970     /// This allows the value to be dropped again.
971     ///
972     /// # Examples
973     ///
974     /// ```rust
975     /// use std::mem::ManuallyDrop;
976     /// let x = ManuallyDrop::new(Box::new(()));
977     /// let _: Box<()> = ManuallyDrop::into_inner(x); // This drops the `Box`.
978     /// ```
979     #[stable(feature = "manually_drop", since = "1.20.0")]
980     #[inline(always)]
981     pub const fn into_inner(slot: ManuallyDrop<T>) -> T {
982         slot.value
983     }
984
985     /// Takes the contained value out.
986     ///
987     /// This method is primarily intended for moving out values in drop.
988     /// Instead of using [`ManuallyDrop::drop`] to manually drop the value,
989     /// you can use this method to take the value and use it however desired.
990     /// `Drop` will be invoked on the returned value following normal end-of-scope rules.
991     ///
992     /// If you have ownership of the container, you can use [`ManuallyDrop::into_inner`] instead.
993     ///
994     /// # Safety
995     ///
996     /// This function semantically moves out the contained value without preventing further usage.
997     /// It is up to the user of this method to ensure that this container is not used again.
998     ///
999     /// [`ManuallyDrop::drop`]: #method.drop
1000     /// [`ManuallyDrop::into_inner`]: #method.into_inner
1001     #[must_use = "if you don't need the value, you can use `ManuallyDrop::drop` instead"]
1002     #[unstable(feature = "manually_drop_take", issue = "55422")]
1003     #[inline]
1004     pub unsafe fn take(slot: &mut ManuallyDrop<T>) -> T {
1005         ManuallyDrop::into_inner(ptr::read(slot))
1006     }
1007 }
1008
1009 impl<T: ?Sized> ManuallyDrop<T> {
1010     /// Manually drops the contained value.
1011     ///
1012     /// If you have ownership of the value, you can use [`ManuallyDrop::into_inner`] instead.
1013     ///
1014     /// # Safety
1015     ///
1016     /// This function runs the destructor of the contained value and thus the wrapped value
1017     /// now represents uninitialized data. It is up to the user of this method to ensure the
1018     /// uninitialized data is not actually used.
1019     ///
1020     /// [`ManuallyDrop::into_inner`]: #method.into_inner
1021     #[stable(feature = "manually_drop", since = "1.20.0")]
1022     #[inline]
1023     pub unsafe fn drop(slot: &mut ManuallyDrop<T>) {
1024         ptr::drop_in_place(&mut slot.value)
1025     }
1026 }
1027
1028 #[stable(feature = "manually_drop", since = "1.20.0")]
1029 impl<T: ?Sized> Deref for ManuallyDrop<T> {
1030     type Target = T;
1031     #[inline(always)]
1032     fn deref(&self) -> &T {
1033         &self.value
1034     }
1035 }
1036
1037 #[stable(feature = "manually_drop", since = "1.20.0")]
1038 impl<T: ?Sized> DerefMut for ManuallyDrop<T> {
1039     #[inline(always)]
1040     fn deref_mut(&mut self) -> &mut T {
1041         &mut self.value
1042     }
1043 }
1044
1045 /// A wrapper to construct uninitialized instances of `T`.
1046 ///
1047 /// The compiler, in general, assumes that variables are properly initialized
1048 /// at their respective type. For example, a variable of reference type must
1049 /// be aligned and non-NULL. This is an invariant that must *always* be upheld,
1050 /// even in unsafe code. As a consequence, zero-initializing a variable of reference
1051 /// type causes instantaneous undefined behavior, no matter whether that reference
1052 /// ever gets used to access memory:
1053 ///
1054 /// ```rust,no_run
1055 /// #![feature(maybe_uninit)]
1056 /// use std::mem::{self, MaybeUninit};
1057 ///
1058 /// let x: &i32 = unsafe { mem::zeroed() }; // undefined behavior!
1059 /// // The equivalent code with `MaybeUninit<&i32>`:
1060 /// let x: &i32 = unsafe { MaybeUninit::zeroed().assume_init() }; // undefined behavior!
1061 /// ```
1062 ///
1063 /// This is exploited by the compiler for various optimizations, such as eliding
1064 /// run-time checks and optimizing `enum` layout.
1065 ///
1066 /// Similarly, entirely uninitialized memory may have any content, while a `bool` must
1067 /// always be `true` or `false`. Hence, creating an uninitialized `bool` is undefined behavior:
1068 ///
1069 /// ```rust,no_run
1070 /// #![feature(maybe_uninit)]
1071 /// use std::mem::{self, MaybeUninit};
1072 ///
1073 /// let b: bool = unsafe { mem::uninitialized() }; // undefined behavior!
1074 /// // The equivalent code with `MaybeUninit<bool>`:
1075 /// let b: bool = unsafe { MaybeUninit::uninit().assume_init() }; // undefined behavior!
1076 /// ```
1077 ///
1078 /// Moreover, uninitialized memory is special in that the compiler knows that
1079 /// it does not have a fixed value. This makes it undefined behavior to have
1080 /// uninitialized data in a variable even if that variable has an integer type,
1081 /// which otherwise can hold any bit pattern:
1082 ///
1083 /// ```rust,no_run
1084 /// #![feature(maybe_uninit)]
1085 /// use std::mem::{self, MaybeUninit};
1086 ///
1087 /// let x: i32 = unsafe { mem::uninitialized() }; // undefined behavior!
1088 /// // The equivalent code with `MaybeUninit<i32>`:
1089 /// let x: i32 = unsafe { MaybeUninit::uninit().assume_init() }; // undefined behavior!
1090 /// ```
1091 /// (Notice that the rules around uninitialized integers are not finalized yet, but
1092 /// until they are, it is advisable to avoid them.)
1093 ///
1094 /// `MaybeUninit<T>` serves to enable unsafe code to deal with uninitialized data.
1095 /// It is a signal to the compiler indicating that the data here might *not*
1096 /// be initialized:
1097 ///
1098 /// ```rust
1099 /// #![feature(maybe_uninit)]
1100 /// use std::mem::MaybeUninit;
1101 ///
1102 /// // Create an explicitly uninitialized reference. The compiler knows that data inside
1103 /// // a `MaybeUninit<T>` may be invalid, and hence this is not UB:
1104 /// let mut x = MaybeUninit::<&i32>::uninit();
1105 /// // Set it to a valid value.
1106 /// x.write(&0);
1107 /// // Extract the initialized data -- this is only allowed *after* properly
1108 /// // initializing `x`!
1109 /// let x = unsafe { x.assume_init() };
1110 /// ```
1111 ///
1112 /// The compiler then knows to not make any incorrect assumptions or optimizations on this code.
1113 //
1114 // FIXME before stabilizing, explain how to initialize a struct field-by-field.
1115 #[allow(missing_debug_implementations)]
1116 #[unstable(feature = "maybe_uninit", issue = "53491")]
1117 #[derive(Copy)]
1118 // NOTE: after stabilizing `MaybeUninit`, proceed to deprecate `mem::uninitialized`.
1119 pub union MaybeUninit<T> {
1120     uninit: (),
1121     value: ManuallyDrop<T>,
1122 }
1123
1124 #[unstable(feature = "maybe_uninit", issue = "53491")]
1125 impl<T: Copy> Clone for MaybeUninit<T> {
1126     #[inline(always)]
1127     fn clone(&self) -> Self {
1128         // Not calling `T::clone()`, we cannot know if we are initialized enough for that.
1129         *self
1130     }
1131 }
1132
1133 impl<T> MaybeUninit<T> {
1134     /// Creates a new `MaybeUninit<T>` initialized with the given value.
1135     ///
1136     /// Note that dropping a `MaybeUninit<T>` will never call `T`'s drop code.
1137     /// It is your responsibility to make sure `T` gets dropped if it got initialized.
1138     #[unstable(feature = "maybe_uninit", issue = "53491")]
1139     #[inline(always)]
1140     pub const fn new(val: T) -> MaybeUninit<T> {
1141         MaybeUninit { value: ManuallyDrop::new(val) }
1142     }
1143
1144     /// Creates a new `MaybeUninit<T>` in an uninitialized state.
1145     ///
1146     /// Note that dropping a `MaybeUninit<T>` will never call `T`'s drop code.
1147     /// It is your responsibility to make sure `T` gets dropped if it got initialized.
1148     #[unstable(feature = "maybe_uninit", issue = "53491")]
1149     #[inline(always)]
1150     pub const fn uninit() -> MaybeUninit<T> {
1151         MaybeUninit { uninit: () }
1152     }
1153
1154     /// Creates a new `MaybeUninit<T>` in an uninitialized state, with the memory being
1155     /// filled with `0` bytes. It depends on `T` whether that already makes for
1156     /// proper initialization. For example, `MaybeUninit<usize>::zeroed()` is initialized,
1157     /// but `MaybeUninit<&'static i32>::zeroed()` is not because references must not
1158     /// be null.
1159     ///
1160     /// Note that dropping a `MaybeUninit<T>` will never call `T`'s drop code.
1161     /// It is your responsibility to make sure `T` gets dropped if it got initialized.
1162     ///
1163     /// # Example
1164     ///
1165     /// Correct usage of this function: initializing a struct with zero, where all
1166     /// fields of the struct can hold the bit-pattern 0 as a valid value.
1167     ///
1168     /// ```rust
1169     /// #![feature(maybe_uninit)]
1170     /// use std::mem::MaybeUninit;
1171     ///
1172     /// let x = MaybeUninit::<(u8, bool)>::zeroed();
1173     /// let x = unsafe { x.assume_init() };
1174     /// assert_eq!(x, (0, false));
1175     /// ```
1176     ///
1177     /// *Incorrect* usage of this function: initializing a struct with zero, where some fields
1178     /// cannot hold 0 as a valid value.
1179     ///
1180     /// ```rust,no_run
1181     /// #![feature(maybe_uninit)]
1182     /// use std::mem::MaybeUninit;
1183     ///
1184     /// enum NotZero { One = 1, Two = 2 };
1185     ///
1186     /// let x = MaybeUninit::<(u8, NotZero)>::zeroed();
1187     /// let x = unsafe { x.assume_init() };
1188     /// // Inside a pair, we create a `NotZero` that does not have a valid discriminant.
1189     /// // This is undefined behavior.
1190     /// ```
1191     #[unstable(feature = "maybe_uninit", issue = "53491")]
1192     #[inline]
1193     pub fn zeroed() -> MaybeUninit<T> {
1194         let mut u = MaybeUninit::<T>::uninit();
1195         unsafe {
1196             u.as_mut_ptr().write_bytes(0u8, 1);
1197         }
1198         u
1199     }
1200
1201     /// Sets the value of the `MaybeUninit<T>`. This overwrites any previous value
1202     /// without dropping it, so be careful not to use this twice unless you want to
1203     /// skip running the destructor. For your convenience, this also returns a mutable
1204     /// reference to the (now safely initialized) contents of `self`.
1205     #[unstable(feature = "maybe_uninit", issue = "53491")]
1206     #[inline(always)]
1207     pub fn write(&mut self, val: T) -> &mut T {
1208         unsafe {
1209             self.value = ManuallyDrop::new(val);
1210             self.get_mut()
1211         }
1212     }
1213
1214     /// Gets a pointer to the contained value. Reading from this pointer or turning it
1215     /// into a reference is undefined behavior unless the `MaybeUninit<T>` is initialized.
1216     ///
1217     /// # Examples
1218     ///
1219     /// Correct usage of this method:
1220     ///
1221     /// ```rust
1222     /// #![feature(maybe_uninit)]
1223     /// use std::mem::MaybeUninit;
1224     ///
1225     /// let mut x = MaybeUninit::<Vec<u32>>::uninit();
1226     /// unsafe { x.as_mut_ptr().write(vec![0,1,2]); }
1227     /// // Create a reference into the `MaybeUninit<T>`. This is okay because we initialized it.
1228     /// let x_vec = unsafe { &*x.as_ptr() };
1229     /// assert_eq!(x_vec.len(), 3);
1230     /// ```
1231     ///
1232     /// *Incorrect* usage of this method:
1233     ///
1234     /// ```rust,no_run
1235     /// #![feature(maybe_uninit)]
1236     /// use std::mem::MaybeUninit;
1237     ///
1238     /// let x = MaybeUninit::<Vec<u32>>::uninit();
1239     /// let x_vec = unsafe { &*x.as_ptr() };
1240     /// // We have created a reference to an uninitialized vector! This is undefined behavior.
1241     /// ```
1242     ///
1243     /// (Notice that the rules around references to uninitialized data are not finalized yet, but
1244     /// until they are, it is advisable to avoid them.)
1245     #[unstable(feature = "maybe_uninit", issue = "53491")]
1246     #[inline(always)]
1247     pub fn as_ptr(&self) -> *const T {
1248         unsafe { &*self.value as *const T }
1249     }
1250
1251     /// Gets a mutable pointer to the contained value. Reading from this pointer or turning it
1252     /// into a reference is undefined behavior unless the `MaybeUninit<T>` is initialized.
1253     ///
1254     /// # Examples
1255     ///
1256     /// Correct usage of this method:
1257     ///
1258     /// ```rust
1259     /// #![feature(maybe_uninit)]
1260     /// use std::mem::MaybeUninit;
1261     ///
1262     /// let mut x = MaybeUninit::<Vec<u32>>::uninit();
1263     /// unsafe { x.as_mut_ptr().write(vec![0,1,2]); }
1264     /// // Create a reference into the `MaybeUninit<Vec<u32>>`.
1265     /// // This is okay because we initialized it.
1266     /// let x_vec = unsafe { &mut *x.as_mut_ptr() };
1267     /// x_vec.push(3);
1268     /// assert_eq!(x_vec.len(), 4);
1269     /// ```
1270     ///
1271     /// *Incorrect* usage of this method:
1272     ///
1273     /// ```rust,no_run
1274     /// #![feature(maybe_uninit)]
1275     /// use std::mem::MaybeUninit;
1276     ///
1277     /// let mut x = MaybeUninit::<Vec<u32>>::uninit();
1278     /// let x_vec = unsafe { &mut *x.as_mut_ptr() };
1279     /// // We have created a reference to an uninitialized vector! This is undefined behavior.
1280     /// ```
1281     ///
1282     /// (Notice that the rules around references to uninitialized data are not finalized yet, but
1283     /// until they are, it is advisable to avoid them.)
1284     #[unstable(feature = "maybe_uninit", issue = "53491")]
1285     #[inline(always)]
1286     pub fn as_mut_ptr(&mut self) -> *mut T {
1287         unsafe { &mut *self.value as *mut T }
1288     }
1289
1290     /// Extracts the value from the `MaybeUninit<T>` container. This is a great way
1291     /// to ensure that the data will get dropped, because the resulting `T` is
1292     /// subject to the usual drop handling.
1293     ///
1294     /// # Safety
1295     ///
1296     /// It is up to the caller to guarantee that the `MaybeUninit<T>` really is in an initialized
1297     /// state. Calling this when the content is not yet fully initialized causes undefined
1298     /// behavior.
1299     ///
1300     /// # Examples
1301     ///
1302     /// Correct usage of this method:
1303     ///
1304     /// ```rust
1305     /// #![feature(maybe_uninit)]
1306     /// use std::mem::MaybeUninit;
1307     ///
1308     /// let mut x = MaybeUninit::<bool>::uninit();
1309     /// unsafe { x.as_mut_ptr().write(true); }
1310     /// let x_init = unsafe { x.assume_init() };
1311     /// assert_eq!(x_init, true);
1312     /// ```
1313     ///
1314     /// *Incorrect* usage of this method:
1315     ///
1316     /// ```rust,no_run
1317     /// #![feature(maybe_uninit)]
1318     /// use std::mem::MaybeUninit;
1319     ///
1320     /// let x = MaybeUninit::<Vec<u32>>::uninit();
1321     /// let x_init = unsafe { x.assume_init() };
1322     /// // `x` had not been initialized yet, so this last line caused undefined behavior.
1323     /// ```
1324     #[unstable(feature = "maybe_uninit", issue = "53491")]
1325     #[inline(always)]
1326     pub unsafe fn assume_init(self) -> T {
1327         intrinsics::panic_if_uninhabited::<T>();
1328         ManuallyDrop::into_inner(self.value)
1329     }
1330
1331     /// Reads the value from the `MaybeUninit<T>` container. The resulting `T` is subject
1332     /// to the usual drop handling.
1333     ///
1334     /// Whenever possible, it is preferrable to use [`assume_init`] instead, which
1335     /// prevents duplicating the content of the `MaybeUninit<T>`.
1336     ///
1337     /// # Safety
1338     ///
1339     /// It is up to the caller to guarantee that the `MaybeUninit<T>` really is in an initialized
1340     /// state. Calling this when the content is not yet fully initialized causes undefined
1341     /// behavior.
1342     ///
1343     /// Moreover, this leaves a copy of the same data behind in the `MaybeUninit<T>`. When using
1344     /// multiple copies of the data (by calling `read` multiple times, or first
1345     /// calling `read` and then [`assume_init`]), it is your responsibility
1346     /// to ensure that that data may indeed be duplicated.
1347     ///
1348     /// [`assume_init`]: #method.assume_init
1349     ///
1350     /// # Examples
1351     ///
1352     /// Correct usage of this method:
1353     ///
1354     /// ```rust
1355     /// #![feature(maybe_uninit)]
1356     /// use std::mem::MaybeUninit;
1357     ///
1358     /// let mut x = MaybeUninit::<u32>::uninit();
1359     /// x.write(13);
1360     /// let x1 = unsafe { x.read() };
1361     /// // `u32` is `Copy`, so we may read multiple times.
1362     /// let x2 = unsafe { x.read() };
1363     /// assert_eq!(x1, x2);
1364     ///
1365     /// let mut x = MaybeUninit::<Option<Vec<u32>>>::uninit();
1366     /// x.write(None);
1367     /// let x1 = unsafe { x.read() };
1368     /// // Duplicating a `None` value is okay, so we may read multiple times.
1369     /// let x2 = unsafe { x.read() };
1370     /// assert_eq!(x1, x2);
1371     /// ```
1372     ///
1373     /// *Incorrect* usage of this method:
1374     ///
1375     /// ```rust,no_run
1376     /// #![feature(maybe_uninit)]
1377     /// use std::mem::MaybeUninit;
1378     ///
1379     /// let mut x = MaybeUninit::<Option<Vec<u32>>>::uninit();
1380     /// x.write(Some(vec![0,1,2]));
1381     /// let x1 = unsafe { x.read() };
1382     /// let x2 = unsafe { x.read() };
1383     /// // We now created two copies of the same vector, leading to a double-free when
1384     /// // they both get dropped!
1385     /// ```
1386     #[unstable(feature = "maybe_uninit", issue = "53491")]
1387     #[inline(always)]
1388     pub unsafe fn read(&self) -> T {
1389         intrinsics::panic_if_uninhabited::<T>();
1390         self.as_ptr().read()
1391     }
1392
1393     /// Gets a reference to the contained value.
1394     ///
1395     /// # Safety
1396     ///
1397     /// It is up to the caller to guarantee that the `MaybeUninit<T>` really is in an initialized
1398     /// state. Calling this when the content is not yet fully initialized causes undefined
1399     /// behavior.
1400     #[unstable(feature = "maybe_uninit_ref", issue = "53491")]
1401     #[inline(always)]
1402     pub unsafe fn get_ref(&self) -> &T {
1403         &*self.value
1404     }
1405
1406     /// Gets a mutable reference to the contained value.
1407     ///
1408     /// # Safety
1409     ///
1410     /// It is up to the caller to guarantee that the `MaybeUninit<T>` really is in an initialized
1411     /// state. Calling this when the content is not yet fully initialized causes undefined
1412     /// behavior.
1413     // FIXME(#53491): We currently rely on the above being incorrect, i.e., we have references
1414     // to uninitialized data (e.g., in `libcore/fmt/float.rs`).  We should make
1415     // a final decision about the rules before stabilization.
1416     #[unstable(feature = "maybe_uninit_ref", issue = "53491")]
1417     #[inline(always)]
1418     pub unsafe fn get_mut(&mut self) -> &mut T {
1419         &mut *self.value
1420     }
1421
1422     /// Gets a pointer to the first element of the array.
1423     #[unstable(feature = "maybe_uninit_slice", issue = "53491")]
1424     #[inline(always)]
1425     pub fn first_ptr(this: &[MaybeUninit<T>]) -> *const T {
1426         this as *const [MaybeUninit<T>] as *const T
1427     }
1428
1429     /// Gets a mutable pointer to the first element of the array.
1430     #[unstable(feature = "maybe_uninit_slice", issue = "53491")]
1431     #[inline(always)]
1432     pub fn first_ptr_mut(this: &mut [MaybeUninit<T>]) -> *mut T {
1433         this as *mut [MaybeUninit<T>] as *mut T
1434     }
1435 }