]> git.lizzy.rs Git - rust.git/blob - src/libcore/mem.rs
Auto merge of #54596 - mjbshaw:drop, r=RalfJung
[rust.git] / src / libcore / mem.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Basic functions for dealing with memory.
12 //!
13 //! This module contains functions for querying the size and alignment of
14 //! types, initializing and manipulating memory.
15
16 #![stable(feature = "rust1", since = "1.0.0")]
17
18 use clone;
19 use cmp;
20 use fmt;
21 use hash;
22 use intrinsics;
23 use marker::{Copy, PhantomData, Sized};
24 use ptr;
25 use ops::{Deref, DerefMut};
26
27 #[stable(feature = "rust1", since = "1.0.0")]
28 pub use intrinsics::transmute;
29
30 /// Takes ownership and "forgets" about the value **without running its destructor**.
31 ///
32 /// Any resources the value manages, such as heap memory or a file handle, will linger
33 /// forever in an unreachable state. However, it does not guarantee that pointers
34 /// to this memory will remain valid.
35 ///
36 /// * If you want to leak memory, see [`Box::leak`][leak].
37 /// * If you want to obtain a raw pointer to the memory, see [`Box::into_raw`][into_raw].
38 /// * If you want to dispose of a value properly, running its destructor, see
39 /// [`mem::drop`][drop].
40 ///
41 /// # Safety
42 ///
43 /// `forget` is not marked as `unsafe`, because Rust's safety guarantees
44 /// do not include a guarantee that destructors will always run. For example,
45 /// a program can create a reference cycle using [`Rc`][rc], or call
46 /// [`process::exit`][exit] to exit without running destructors. Thus, allowing
47 /// `mem::forget` from safe code does not fundamentally change Rust's safety
48 /// guarantees.
49 ///
50 /// That said, leaking resources such as memory or I/O objects is usually undesirable,
51 /// so `forget` is only recommended for specialized use cases like those shown below.
52 ///
53 /// Because forgetting a value is allowed, any `unsafe` code you write must
54 /// allow for this possibility. You cannot return a value and expect that the
55 /// caller will necessarily run the value's destructor.
56 ///
57 /// [rc]: ../../std/rc/struct.Rc.html
58 /// [exit]: ../../std/process/fn.exit.html
59 ///
60 /// # Examples
61 ///
62 /// Leak an I/O object, never closing the file:
63 ///
64 /// ```no_run
65 /// use std::mem;
66 /// use std::fs::File;
67 ///
68 /// let file = File::open("foo.txt").unwrap();
69 /// mem::forget(file);
70 /// ```
71 ///
72 /// The practical use cases for `forget` are rather specialized and mainly come
73 /// up in unsafe or FFI code.
74 ///
75 /// ## Use case 1
76 ///
77 /// You have created an uninitialized value using [`mem::uninitialized`][uninit].
78 /// You must either initialize or `forget` it on every computation path before
79 /// Rust drops it automatically, like at the end of a scope or after a panic.
80 /// Running the destructor on an uninitialized value would be [undefined behavior][ub].
81 ///
82 /// ```
83 /// use std::mem;
84 /// use std::ptr;
85 ///
86 /// # let some_condition = false;
87 /// unsafe {
88 ///     let mut uninit_vec: Vec<u32> = mem::uninitialized();
89 ///
90 ///     if some_condition {
91 ///         // Initialize the variable.
92 ///         ptr::write(&mut uninit_vec, Vec::new());
93 ///     } else {
94 ///         // Forget the uninitialized value so its destructor doesn't run.
95 ///         mem::forget(uninit_vec);
96 ///     }
97 /// }
98 /// ```
99 ///
100 /// ## Use case 2
101 ///
102 /// You have duplicated the bytes making up a value, without doing a proper
103 /// [`Clone`][clone]. You need the value's destructor to run only once,
104 /// because a double `free` is undefined behavior.
105 ///
106 /// An example is a possible implementation of [`mem::swap`][swap]:
107 ///
108 /// ```
109 /// use std::mem;
110 /// use std::ptr;
111 ///
112 /// # #[allow(dead_code)]
113 /// fn swap<T>(x: &mut T, y: &mut T) {
114 ///     unsafe {
115 ///         // Give ourselves some scratch space to work with
116 ///         let mut t: T = mem::uninitialized();
117 ///
118 ///         // Perform the swap, `&mut` pointers never alias
119 ///         ptr::copy_nonoverlapping(&*x, &mut t, 1);
120 ///         ptr::copy_nonoverlapping(&*y, x, 1);
121 ///         ptr::copy_nonoverlapping(&t, y, 1);
122 ///
123 ///         // y and t now point to the same thing, but we need to completely
124 ///         // forget `t` because we do not want to run the destructor for `T`
125 ///         // on its value, which is still owned somewhere outside this function.
126 ///         mem::forget(t);
127 ///     }
128 /// }
129 /// ```
130 ///
131 /// [drop]: fn.drop.html
132 /// [uninit]: fn.uninitialized.html
133 /// [clone]: ../clone/trait.Clone.html
134 /// [swap]: fn.swap.html
135 /// [FFI]: ../../book/first-edition/ffi.html
136 /// [box]: ../../std/boxed/struct.Box.html
137 /// [leak]: ../../std/boxed/struct.Box.html#method.leak
138 /// [into_raw]: ../../std/boxed/struct.Box.html#method.into_raw
139 /// [ub]: ../../reference/behavior-considered-undefined.html
140 #[inline]
141 #[stable(feature = "rust1", since = "1.0.0")]
142 pub fn forget<T>(t: T) {
143     ManuallyDrop::new(t);
144 }
145
146 /// Returns the size of a type in bytes.
147 ///
148 /// More specifically, this is the offset in bytes between successive elements
149 /// in an array with that item type including alignment padding. Thus, for any
150 /// type `T` and length `n`, `[T; n]` has a size of `n * size_of::<T>()`.
151 ///
152 /// In general, the size of a type is not stable across compilations, but
153 /// specific types such as primitives are.
154 ///
155 /// The following table gives the size for primitives.
156 ///
157 /// Type | size_of::\<Type>()
158 /// ---- | ---------------
159 /// () | 0
160 /// bool | 1
161 /// u8 | 1
162 /// u16 | 2
163 /// u32 | 4
164 /// u64 | 8
165 /// u128 | 16
166 /// i8 | 1
167 /// i16 | 2
168 /// i32 | 4
169 /// i64 | 8
170 /// i128 | 16
171 /// f32 | 4
172 /// f64 | 8
173 /// char | 4
174 ///
175 /// Furthermore, `usize` and `isize` have the same size.
176 ///
177 /// The types `*const T`, `&T`, `Box<T>`, `Option<&T>`, and `Option<Box<T>>` all have
178 /// the same size. If `T` is Sized, all of those types have the same size as `usize`.
179 ///
180 /// The mutability of a pointer does not change its size. As such, `&T` and `&mut T`
181 /// have the same size. Likewise for `*const T` and `*mut T`.
182 ///
183 /// # Size of `#[repr(C)]` items
184 ///
185 /// The `C` representation for items has a defined layout. With this layout,
186 /// the size of items is also stable as long as all fields have a stable size.
187 ///
188 /// ## Size of Structs
189 ///
190 /// For `structs`, the size is determined by the following algorithm.
191 ///
192 /// For each field in the struct ordered by declaration order:
193 ///
194 /// 1. Add the size of the field.
195 /// 2. Round up the current size to the nearest multiple of the next field's [alignment].
196 ///
197 /// Finally, round the size of the struct to the nearest multiple of its [alignment].
198 /// The alignment of the struct is usually the largest alignment of all its
199 /// fields; this can be changed with the use of `repr(align(N))`.
200 ///
201 /// Unlike `C`, zero sized structs are not rounded up to one byte in size.
202 ///
203 /// ## Size of Enums
204 ///
205 /// Enums that carry no data other than the descriminant have the same size as C enums
206 /// on the platform they are compiled for.
207 ///
208 /// ## Size of Unions
209 ///
210 /// The size of a union is the size of its largest field.
211 ///
212 /// Unlike `C`, zero sized unions are not rounded up to one byte in size.
213 ///
214 /// # Examples
215 ///
216 /// ```
217 /// use std::mem;
218 ///
219 /// // Some primitives
220 /// assert_eq!(4, mem::size_of::<i32>());
221 /// assert_eq!(8, mem::size_of::<f64>());
222 /// assert_eq!(0, mem::size_of::<()>());
223 ///
224 /// // Some arrays
225 /// assert_eq!(8, mem::size_of::<[i32; 2]>());
226 /// assert_eq!(12, mem::size_of::<[i32; 3]>());
227 /// assert_eq!(0, mem::size_of::<[i32; 0]>());
228 ///
229 ///
230 /// // Pointer size equality
231 /// assert_eq!(mem::size_of::<&i32>(), mem::size_of::<*const i32>());
232 /// assert_eq!(mem::size_of::<&i32>(), mem::size_of::<Box<i32>>());
233 /// assert_eq!(mem::size_of::<&i32>(), mem::size_of::<Option<&i32>>());
234 /// assert_eq!(mem::size_of::<Box<i32>>(), mem::size_of::<Option<Box<i32>>>());
235 /// ```
236 ///
237 /// Using `#[repr(C)]`.
238 ///
239 /// ```
240 /// use std::mem;
241 ///
242 /// #[repr(C)]
243 /// struct FieldStruct {
244 ///     first: u8,
245 ///     second: u16,
246 ///     third: u8
247 /// }
248 ///
249 /// // The size of the first field is 1, so add 1 to the size. Size is 1.
250 /// // The alignment of the second field is 2, so add 1 to the size for padding. Size is 2.
251 /// // The size of the second field is 2, so add 2 to the size. Size is 4.
252 /// // The alignment of the third field is 1, so add 0 to the size for padding. Size is 4.
253 /// // The size of the third field is 1, so add 1 to the size. Size is 5.
254 /// // Finally, the alignment of the struct is 2 (because the largest alignment amongst its
255 /// // fields is 2), so add 1 to the size for padding. Size is 6.
256 /// assert_eq!(6, mem::size_of::<FieldStruct>());
257 ///
258 /// #[repr(C)]
259 /// struct TupleStruct(u8, u16, u8);
260 ///
261 /// // Tuple structs follow the same rules.
262 /// assert_eq!(6, mem::size_of::<TupleStruct>());
263 ///
264 /// // Note that reordering the fields can lower the size. We can remove both padding bytes
265 /// // by putting `third` before `second`.
266 /// #[repr(C)]
267 /// struct FieldStructOptimized {
268 ///     first: u8,
269 ///     third: u8,
270 ///     second: u16
271 /// }
272 ///
273 /// assert_eq!(4, mem::size_of::<FieldStructOptimized>());
274 ///
275 /// // Union size is the size of the largest field.
276 /// #[repr(C)]
277 /// union ExampleUnion {
278 ///     smaller: u8,
279 ///     larger: u16
280 /// }
281 ///
282 /// assert_eq!(2, mem::size_of::<ExampleUnion>());
283 /// ```
284 ///
285 /// [alignment]: ./fn.align_of.html
286 #[inline]
287 #[stable(feature = "rust1", since = "1.0.0")]
288 pub const fn size_of<T>() -> usize {
289     intrinsics::size_of::<T>()
290 }
291
292 /// Returns the size of the pointed-to value in bytes.
293 ///
294 /// This is usually the same as `size_of::<T>()`. However, when `T` *has* no
295 /// statically known size, e.g. a slice [`[T]`][slice] or a [trait object],
296 /// then `size_of_val` can be used to get the dynamically-known size.
297 ///
298 /// [slice]: ../../std/primitive.slice.html
299 /// [trait object]: ../../book/first-edition/trait-objects.html
300 ///
301 /// # Examples
302 ///
303 /// ```
304 /// use std::mem;
305 ///
306 /// assert_eq!(4, mem::size_of_val(&5i32));
307 ///
308 /// let x: [u8; 13] = [0; 13];
309 /// let y: &[u8] = &x;
310 /// assert_eq!(13, mem::size_of_val(y));
311 /// ```
312 #[inline]
313 #[stable(feature = "rust1", since = "1.0.0")]
314 pub fn size_of_val<T: ?Sized>(val: &T) -> usize {
315     unsafe { intrinsics::size_of_val(val) }
316 }
317
318 /// Returns the [ABI]-required minimum alignment of a type.
319 ///
320 /// Every reference to a value of the type `T` must be a multiple of this number.
321 ///
322 /// This is the alignment used for struct fields. It may be smaller than the preferred alignment.
323 ///
324 /// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
325 ///
326 /// # Examples
327 ///
328 /// ```
329 /// # #![allow(deprecated)]
330 /// use std::mem;
331 ///
332 /// assert_eq!(4, mem::min_align_of::<i32>());
333 /// ```
334 #[inline]
335 #[stable(feature = "rust1", since = "1.0.0")]
336 #[rustc_deprecated(reason = "use `align_of` instead", since = "1.2.0")]
337 pub fn min_align_of<T>() -> usize {
338     intrinsics::min_align_of::<T>()
339 }
340
341 /// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to.
342 ///
343 /// Every reference to a value of the type `T` must be a multiple of this number.
344 ///
345 /// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
346 ///
347 /// # Examples
348 ///
349 /// ```
350 /// # #![allow(deprecated)]
351 /// use std::mem;
352 ///
353 /// assert_eq!(4, mem::min_align_of_val(&5i32));
354 /// ```
355 #[inline]
356 #[stable(feature = "rust1", since = "1.0.0")]
357 #[rustc_deprecated(reason = "use `align_of_val` instead", since = "1.2.0")]
358 pub fn min_align_of_val<T: ?Sized>(val: &T) -> usize {
359     unsafe { intrinsics::min_align_of_val(val) }
360 }
361
362 /// Returns the [ABI]-required minimum alignment of a type.
363 ///
364 /// Every reference to a value of the type `T` must be a multiple of this number.
365 ///
366 /// This is the alignment used for struct fields. It may be smaller than the preferred alignment.
367 ///
368 /// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
369 ///
370 /// # Examples
371 ///
372 /// ```
373 /// use std::mem;
374 ///
375 /// assert_eq!(4, mem::align_of::<i32>());
376 /// ```
377 #[inline]
378 #[stable(feature = "rust1", since = "1.0.0")]
379 pub const fn align_of<T>() -> usize {
380     intrinsics::min_align_of::<T>()
381 }
382
383 /// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to.
384 ///
385 /// Every reference to a value of the type `T` must be a multiple of this number.
386 ///
387 /// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
388 ///
389 /// # Examples
390 ///
391 /// ```
392 /// use std::mem;
393 ///
394 /// assert_eq!(4, mem::align_of_val(&5i32));
395 /// ```
396 #[inline]
397 #[stable(feature = "rust1", since = "1.0.0")]
398 pub fn align_of_val<T: ?Sized>(val: &T) -> usize {
399     unsafe { intrinsics::min_align_of_val(val) }
400 }
401
402 /// Returns whether dropping values of type `T` matters.
403 ///
404 /// This is purely an optimization hint, and may be implemented conservatively:
405 /// it may return `true` for types that don't actually need to be dropped.
406 /// As such always returning `true` would be a valid implementation of
407 /// this function. However if this function actually returns `false`, then you
408 /// can be certain dropping `T` has no side effect.
409 ///
410 /// Low level implementations of things like collections, which need to manually
411 /// drop their data, should use this function to avoid unnecessarily
412 /// trying to drop all their contents when they are destroyed. This might not
413 /// make a difference in release builds (where a loop that has no side-effects
414 /// is easily detected and eliminated), but is often a big win for debug builds.
415 ///
416 /// Note that `ptr::drop_in_place` already performs this check, so if your workload
417 /// can be reduced to some small number of drop_in_place calls, using this is
418 /// unnecessary. In particular note that you can drop_in_place a slice, and that
419 /// will do a single needs_drop check for all the values.
420 ///
421 /// Types like Vec therefore just `drop_in_place(&mut self[..])` without using
422 /// needs_drop explicitly. Types like HashMap, on the other hand, have to drop
423 /// values one at a time and should use this API.
424 ///
425 ///
426 /// # Examples
427 ///
428 /// Here's an example of how a collection might make use of needs_drop:
429 ///
430 /// ```
431 /// use std::{mem, ptr};
432 ///
433 /// pub struct MyCollection<T> {
434 /// #   data: [T; 1],
435 ///     /* ... */
436 /// }
437 /// # impl<T> MyCollection<T> {
438 /// #   fn iter_mut(&mut self) -> &mut [T] { &mut self.data }
439 /// #   fn free_buffer(&mut self) {}
440 /// # }
441 ///
442 /// impl<T> Drop for MyCollection<T> {
443 ///     fn drop(&mut self) {
444 ///         unsafe {
445 ///             // drop the data
446 ///             if mem::needs_drop::<T>() {
447 ///                 for x in self.iter_mut() {
448 ///                     ptr::drop_in_place(x);
449 ///                 }
450 ///             }
451 ///             self.free_buffer();
452 ///         }
453 ///     }
454 /// }
455 /// ```
456 #[inline]
457 #[stable(feature = "needs_drop", since = "1.21.0")]
458 #[rustc_const_unstable(feature = "const_needs_drop")]
459 #[cfg(not(stage0))]
460 pub const fn needs_drop<T>() -> bool {
461     intrinsics::needs_drop::<T>()
462 }
463
464 #[inline]
465 #[stable(feature = "needs_drop", since = "1.21.0")]
466 #[cfg(stage0)]
467 /// Ceci n'est pas la documentation
468 pub fn needs_drop<T>() -> bool {
469     unsafe { intrinsics::needs_drop::<T>() }
470 }
471
472 /// Creates a value whose bytes are all zero.
473 ///
474 /// This has the same effect as allocating space with
475 /// [`mem::uninitialized`][uninit] and then zeroing it out. It is useful for
476 /// [FFI] sometimes, but should generally be avoided.
477 ///
478 /// There is no guarantee that an all-zero byte-pattern represents a valid value of
479 /// some type `T`. If `T` has a destructor and the value is destroyed (due to
480 /// a panic or the end of a scope) before being initialized, then the destructor
481 /// will run on zeroed data, likely leading to [undefined behavior][ub].
482 ///
483 /// See also the documentation for [`mem::uninitialized`][uninit], which has
484 /// many of the same caveats.
485 ///
486 /// [uninit]: fn.uninitialized.html
487 /// [FFI]: ../../book/first-edition/ffi.html
488 /// [ub]: ../../reference/behavior-considered-undefined.html
489 ///
490 /// # Examples
491 ///
492 /// ```
493 /// use std::mem;
494 ///
495 /// let x: i32 = unsafe { mem::zeroed() };
496 /// assert_eq!(0, x);
497 /// ```
498 #[inline]
499 #[rustc_deprecated(since = "2.0.0", reason = "use `mem::MaybeUninit::zeroed` instead")]
500 #[stable(feature = "rust1", since = "1.0.0")]
501 pub unsafe fn zeroed<T>() -> T {
502     intrinsics::init()
503 }
504
505 /// Bypasses Rust's normal memory-initialization checks by pretending to
506 /// produce a value of type `T`, while doing nothing at all.
507 ///
508 /// **This is incredibly dangerous and should not be done lightly. Deeply
509 /// consider initializing your memory with a default value instead.**
510 ///
511 /// This is useful for [FFI] functions and initializing arrays sometimes,
512 /// but should generally be avoided.
513 ///
514 /// [FFI]: ../../book/first-edition/ffi.html
515 ///
516 /// # Undefined behavior
517 ///
518 /// It is [undefined behavior][ub] to read uninitialized memory, even just an
519 /// uninitialized boolean. For instance, if you branch on the value of such
520 /// a boolean, your program may take one, both, or neither of the branches.
521 ///
522 /// Writing to the uninitialized value is similarly dangerous. Rust believes the
523 /// value is initialized, and will therefore try to [`Drop`] the uninitialized
524 /// value and its fields if you try to overwrite it in a normal manner. The only way
525 /// to safely initialize an uninitialized value is with [`ptr::write`][write],
526 /// [`ptr::copy`][copy], or [`ptr::copy_nonoverlapping`][copy_no].
527 ///
528 /// If the value does implement [`Drop`], it must be initialized before
529 /// it goes out of scope (and therefore would be dropped). Note that this
530 /// includes a `panic` occurring and unwinding the stack suddenly.
531 ///
532 /// # Examples
533 ///
534 /// Here's how to safely initialize an array of [`Vec`]s.
535 ///
536 /// ```
537 /// use std::mem;
538 /// use std::ptr;
539 ///
540 /// // Only declare the array. This safely leaves it
541 /// // uninitialized in a way that Rust will track for us.
542 /// // However we can't initialize it element-by-element
543 /// // safely, and we can't use the `[value; 1000]`
544 /// // constructor because it only works with `Copy` data.
545 /// let mut data: [Vec<u32>; 1000];
546 ///
547 /// unsafe {
548 ///     // So we need to do this to initialize it.
549 ///     data = mem::uninitialized();
550 ///
551 ///     // DANGER ZONE: if anything panics or otherwise
552 ///     // incorrectly reads the array here, we will have
553 ///     // Undefined Behavior.
554 ///
555 ///     // It's ok to mutably iterate the data, since this
556 ///     // doesn't involve reading it at all.
557 ///     // (ptr and len are statically known for arrays)
558 ///     for elem in &mut data[..] {
559 ///         // *elem = Vec::new() would try to drop the
560 ///         // uninitialized memory at `elem` -- bad!
561 ///         //
562 ///         // Vec::new doesn't allocate or do really
563 ///         // anything. It's only safe to call here
564 ///         // because we know it won't panic.
565 ///         ptr::write(elem, Vec::new());
566 ///     }
567 ///
568 ///     // SAFE ZONE: everything is initialized.
569 /// }
570 ///
571 /// println!("{:?}", &data[0]);
572 /// ```
573 ///
574 /// This example emphasizes exactly how delicate and dangerous using `mem::uninitialized`
575 /// can be. Note that the [`vec!`] macro *does* let you initialize every element with a
576 /// value that is only [`Clone`], so the following is semantically equivalent and
577 /// vastly less dangerous, as long as you can live with an extra heap
578 /// allocation:
579 ///
580 /// ```
581 /// let data: Vec<Vec<u32>> = vec![Vec::new(); 1000];
582 /// println!("{:?}", &data[0]);
583 /// ```
584 ///
585 /// [`Vec`]: ../../std/vec/struct.Vec.html
586 /// [`vec!`]: ../../std/macro.vec.html
587 /// [`Clone`]: ../../std/clone/trait.Clone.html
588 /// [ub]: ../../reference/behavior-considered-undefined.html
589 /// [write]: ../ptr/fn.write.html
590 /// [copy]: ../intrinsics/fn.copy.html
591 /// [copy_no]: ../intrinsics/fn.copy_nonoverlapping.html
592 /// [`Drop`]: ../ops/trait.Drop.html
593 #[inline]
594 #[rustc_deprecated(since = "2.0.0", reason = "use `mem::MaybeUninit::uninitialized` instead")]
595 #[stable(feature = "rust1", since = "1.0.0")]
596 pub unsafe fn uninitialized<T>() -> T {
597     intrinsics::uninit()
598 }
599
600 /// Swaps the values at two mutable locations, without deinitializing either one.
601 ///
602 /// # Examples
603 ///
604 /// ```
605 /// use std::mem;
606 ///
607 /// let mut x = 5;
608 /// let mut y = 42;
609 ///
610 /// mem::swap(&mut x, &mut y);
611 ///
612 /// assert_eq!(42, x);
613 /// assert_eq!(5, y);
614 /// ```
615 #[inline]
616 #[stable(feature = "rust1", since = "1.0.0")]
617 pub fn swap<T>(x: &mut T, y: &mut T) {
618     unsafe {
619         ptr::swap_nonoverlapping_one(x, y);
620     }
621 }
622
623 /// Moves `src` into the referenced `dest`, returning the previous `dest` value.
624 ///
625 /// Neither value is dropped.
626 ///
627 /// # Examples
628 ///
629 /// A simple example:
630 ///
631 /// ```
632 /// use std::mem;
633 ///
634 /// let mut v: Vec<i32> = vec![1, 2];
635 ///
636 /// let old_v = mem::replace(&mut v, vec![3, 4, 5]);
637 /// assert_eq!(2, old_v.len());
638 /// assert_eq!(3, v.len());
639 /// ```
640 ///
641 /// `replace` allows consumption of a struct field by replacing it with another value.
642 /// Without `replace` you can run into issues like these:
643 ///
644 /// ```compile_fail,E0507
645 /// struct Buffer<T> { buf: Vec<T> }
646 ///
647 /// impl<T> Buffer<T> {
648 ///     fn get_and_reset(&mut self) -> Vec<T> {
649 ///         // error: cannot move out of dereference of `&mut`-pointer
650 ///         let buf = self.buf;
651 ///         self.buf = Vec::new();
652 ///         buf
653 ///     }
654 /// }
655 /// ```
656 ///
657 /// Note that `T` does not necessarily implement [`Clone`], so it can't even clone and reset
658 /// `self.buf`. But `replace` can be used to disassociate the original value of `self.buf` from
659 /// `self`, allowing it to be returned:
660 ///
661 /// ```
662 /// # #![allow(dead_code)]
663 /// use std::mem;
664 ///
665 /// # struct Buffer<T> { buf: Vec<T> }
666 /// impl<T> Buffer<T> {
667 ///     fn get_and_reset(&mut self) -> Vec<T> {
668 ///         mem::replace(&mut self.buf, Vec::new())
669 ///     }
670 /// }
671 /// ```
672 ///
673 /// [`Clone`]: ../../std/clone/trait.Clone.html
674 #[inline]
675 #[stable(feature = "rust1", since = "1.0.0")]
676 pub fn replace<T>(dest: &mut T, mut src: T) -> T {
677     swap(dest, &mut src);
678     src
679 }
680
681 /// Disposes of a value.
682 ///
683 /// While this does call the argument's implementation of [`Drop`][drop],
684 /// it will not release any borrows, as borrows are based on lexical scope.
685 ///
686 /// This effectively does nothing for
687 /// [types which implement `Copy`](../../book/first-edition/ownership.html#copy-types),
688 /// e.g. integers. Such values are copied and _then_ moved into the function,
689 /// so the value persists after this function call.
690 ///
691 /// This function is not magic; it is literally defined as
692 ///
693 /// ```
694 /// pub fn drop<T>(_x: T) { }
695 /// ```
696 ///
697 /// Because `_x` is moved into the function, it is automatically dropped before
698 /// the function returns.
699 ///
700 /// [drop]: ../ops/trait.Drop.html
701 ///
702 /// # Examples
703 ///
704 /// Basic usage:
705 ///
706 /// ```
707 /// let v = vec![1, 2, 3];
708 ///
709 /// drop(v); // explicitly drop the vector
710 /// ```
711 ///
712 /// Borrows are based on lexical scope, so this produces an error:
713 ///
714 /// ```compile_fail,E0502
715 /// let mut v = vec![1, 2, 3];
716 /// let x = &v[0];
717 ///
718 /// drop(x); // explicitly drop the reference, but the borrow still exists
719 ///
720 /// v.push(4); // error: cannot borrow `v` as mutable because it is also
721 ///            // borrowed as immutable
722 /// ```
723 ///
724 /// An inner scope is needed to fix this:
725 ///
726 /// ```
727 /// let mut v = vec![1, 2, 3];
728 ///
729 /// {
730 ///     let x = &v[0];
731 ///
732 ///     drop(x); // this is now redundant, as `x` is going out of scope anyway
733 /// }
734 ///
735 /// v.push(4); // no problems
736 /// ```
737 ///
738 /// Since [`RefCell`] enforces the borrow rules at runtime, `drop` can
739 /// release a [`RefCell`] borrow:
740 ///
741 /// ```
742 /// use std::cell::RefCell;
743 ///
744 /// let x = RefCell::new(1);
745 ///
746 /// let mut mutable_borrow = x.borrow_mut();
747 /// *mutable_borrow = 1;
748 ///
749 /// drop(mutable_borrow); // relinquish the mutable borrow on this slot
750 ///
751 /// let borrow = x.borrow();
752 /// println!("{}", *borrow);
753 /// ```
754 ///
755 /// Integers and other types implementing [`Copy`] are unaffected by `drop`.
756 ///
757 /// ```
758 /// #[derive(Copy, Clone)]
759 /// struct Foo(u8);
760 ///
761 /// let x = 1;
762 /// let y = Foo(2);
763 /// drop(x); // a copy of `x` is moved and dropped
764 /// drop(y); // a copy of `y` is moved and dropped
765 ///
766 /// println!("x: {}, y: {}", x, y.0); // still available
767 /// ```
768 ///
769 /// [`RefCell`]: ../../std/cell/struct.RefCell.html
770 /// [`Copy`]: ../../std/marker/trait.Copy.html
771 #[inline]
772 #[stable(feature = "rust1", since = "1.0.0")]
773 pub fn drop<T>(_x: T) { }
774
775 /// Interprets `src` as having type `&U`, and then reads `src` without moving
776 /// the contained value.
777 ///
778 /// This function will unsafely assume the pointer `src` is valid for
779 /// [`size_of::<U>`][size_of] bytes by transmuting `&T` to `&U` and then reading
780 /// the `&U`. It will also unsafely create a copy of the contained value instead of
781 /// moving out of `src`.
782 ///
783 /// It is not a compile-time error if `T` and `U` have different sizes, but it
784 /// is highly encouraged to only invoke this function where `T` and `U` have the
785 /// same size. This function triggers [undefined behavior][ub] if `U` is larger than
786 /// `T`.
787 ///
788 /// [ub]: ../../reference/behavior-considered-undefined.html
789 /// [size_of]: fn.size_of.html
790 ///
791 /// # Examples
792 ///
793 /// ```
794 /// use std::mem;
795 ///
796 /// #[repr(packed)]
797 /// struct Foo {
798 ///     bar: u8,
799 /// }
800 ///
801 /// let foo_slice = [10u8];
802 ///
803 /// unsafe {
804 ///     // Copy the data from 'foo_slice' and treat it as a 'Foo'
805 ///     let mut foo_struct: Foo = mem::transmute_copy(&foo_slice);
806 ///     assert_eq!(foo_struct.bar, 10);
807 ///
808 ///     // Modify the copied data
809 ///     foo_struct.bar = 20;
810 ///     assert_eq!(foo_struct.bar, 20);
811 /// }
812 ///
813 /// // The contents of 'foo_slice' should not have changed
814 /// assert_eq!(foo_slice, [10]);
815 /// ```
816 #[inline]
817 #[stable(feature = "rust1", since = "1.0.0")]
818 pub unsafe fn transmute_copy<T, U>(src: &T) -> U {
819     ptr::read(src as *const T as *const U)
820 }
821
822 /// Opaque type representing the discriminant of an enum.
823 ///
824 /// See the [`discriminant`] function in this module for more information.
825 ///
826 /// [`discriminant`]: fn.discriminant.html
827 #[stable(feature = "discriminant_value", since = "1.21.0")]
828 pub struct Discriminant<T>(u64, PhantomData<fn() -> T>);
829
830 // N.B. These trait implementations cannot be derived because we don't want any bounds on T.
831
832 #[stable(feature = "discriminant_value", since = "1.21.0")]
833 impl<T> Copy for Discriminant<T> {}
834
835 #[stable(feature = "discriminant_value", since = "1.21.0")]
836 impl<T> clone::Clone for Discriminant<T> {
837     fn clone(&self) -> Self {
838         *self
839     }
840 }
841
842 #[stable(feature = "discriminant_value", since = "1.21.0")]
843 impl<T> cmp::PartialEq for Discriminant<T> {
844     fn eq(&self, rhs: &Self) -> bool {
845         self.0 == rhs.0
846     }
847 }
848
849 #[stable(feature = "discriminant_value", since = "1.21.0")]
850 impl<T> cmp::Eq for Discriminant<T> {}
851
852 #[stable(feature = "discriminant_value", since = "1.21.0")]
853 impl<T> hash::Hash for Discriminant<T> {
854     fn hash<H: hash::Hasher>(&self, state: &mut H) {
855         self.0.hash(state);
856     }
857 }
858
859 #[stable(feature = "discriminant_value", since = "1.21.0")]
860 impl<T> fmt::Debug for Discriminant<T> {
861     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
862         fmt.debug_tuple("Discriminant")
863            .field(&self.0)
864            .finish()
865     }
866 }
867
868 /// Returns a value uniquely identifying the enum variant in `v`.
869 ///
870 /// If `T` is not an enum, calling this function will not result in undefined behavior, but the
871 /// return value is unspecified.
872 ///
873 /// # Stability
874 ///
875 /// The discriminant of an enum variant may change if the enum definition changes. A discriminant
876 /// of some variant will not change between compilations with the same compiler.
877 ///
878 /// # Examples
879 ///
880 /// This can be used to compare enums that carry data, while disregarding
881 /// the actual data:
882 ///
883 /// ```
884 /// use std::mem;
885 ///
886 /// enum Foo { A(&'static str), B(i32), C(i32) }
887 ///
888 /// assert!(mem::discriminant(&Foo::A("bar")) == mem::discriminant(&Foo::A("baz")));
889 /// assert!(mem::discriminant(&Foo::B(1))     == mem::discriminant(&Foo::B(2)));
890 /// assert!(mem::discriminant(&Foo::B(3))     != mem::discriminant(&Foo::C(3)));
891 /// ```
892 #[stable(feature = "discriminant_value", since = "1.21.0")]
893 pub fn discriminant<T>(v: &T) -> Discriminant<T> {
894     unsafe {
895         Discriminant(intrinsics::discriminant_value(v), PhantomData)
896     }
897 }
898
899 /// A wrapper to inhibit compiler from automatically calling `T`’s destructor.
900 ///
901 /// This wrapper is 0-cost.
902 ///
903 /// # Examples
904 ///
905 /// This wrapper helps with explicitly documenting the drop order dependencies between fields of
906 /// the type:
907 ///
908 /// ```rust
909 /// use std::mem::ManuallyDrop;
910 /// struct Peach;
911 /// struct Banana;
912 /// struct Melon;
913 /// struct FruitBox {
914 ///     // Immediately clear there’s something non-trivial going on with these fields.
915 ///     peach: ManuallyDrop<Peach>,
916 ///     melon: Melon, // Field that’s independent of the other two.
917 ///     banana: ManuallyDrop<Banana>,
918 /// }
919 ///
920 /// impl Drop for FruitBox {
921 ///     fn drop(&mut self) {
922 ///         unsafe {
923 ///             // Explicit ordering in which field destructors are run specified in the intuitive
924 ///             // location – the destructor of the structure containing the fields.
925 ///             // Moreover, one can now reorder fields within the struct however much they want.
926 ///             ManuallyDrop::drop(&mut self.peach);
927 ///             ManuallyDrop::drop(&mut self.banana);
928 ///         }
929 ///         // After destructor for `FruitBox` runs (this function), the destructor for Melon gets
930 ///         // invoked in the usual manner, as it is not wrapped in `ManuallyDrop`.
931 ///     }
932 /// }
933 /// ```
934 #[stable(feature = "manually_drop", since = "1.20.0")]
935 #[lang = "manually_drop"]
936 #[derive(Copy, Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
937 #[repr(transparent)]
938 pub struct ManuallyDrop<T: ?Sized> {
939     value: T,
940 }
941
942 impl<T> ManuallyDrop<T> {
943     /// Wrap a value to be manually dropped.
944     ///
945     /// # Examples
946     ///
947     /// ```rust
948     /// use std::mem::ManuallyDrop;
949     /// ManuallyDrop::new(Box::new(()));
950     /// ```
951     #[stable(feature = "manually_drop", since = "1.20.0")]
952     #[rustc_const_unstable(feature = "const_manually_drop_new")]
953     #[inline]
954     pub const fn new(value: T) -> ManuallyDrop<T> {
955         ManuallyDrop { value }
956     }
957
958     /// Extract the value from the `ManuallyDrop` container.
959     ///
960     /// This allows the value to be dropped again.
961     ///
962     /// # Examples
963     ///
964     /// ```rust
965     /// use std::mem::ManuallyDrop;
966     /// let x = ManuallyDrop::new(Box::new(()));
967     /// let _: Box<()> = ManuallyDrop::into_inner(x); // This drops the `Box`.
968     /// ```
969     #[stable(feature = "manually_drop", since = "1.20.0")]
970     #[inline]
971     pub fn into_inner(slot: ManuallyDrop<T>) -> T {
972         slot.value
973     }
974 }
975
976 impl<T: ?Sized> ManuallyDrop<T> {
977     /// Manually drops the contained value.
978     ///
979     /// If you have ownership of the value, you can use [`ManuallyDrop::into_inner`] instead.
980     ///
981     /// # Safety
982     ///
983     /// This function runs the destructor of the contained value and thus the wrapped value
984     /// now represents uninitialized data. It is up to the user of this method to ensure the
985     /// uninitialized data is not actually used.
986     ///
987     /// [`ManuallyDrop::into_inner`]: #method.into_inner
988     #[stable(feature = "manually_drop", since = "1.20.0")]
989     #[inline]
990     pub unsafe fn drop(slot: &mut ManuallyDrop<T>) {
991         ptr::drop_in_place(&mut slot.value)
992     }
993 }
994
995 #[stable(feature = "manually_drop", since = "1.20.0")]
996 impl<T: ?Sized> Deref for ManuallyDrop<T> {
997     type Target = T;
998     #[inline]
999     fn deref(&self) -> &Self::Target {
1000         &self.value
1001     }
1002 }
1003
1004 #[stable(feature = "manually_drop", since = "1.20.0")]
1005 impl<T: ?Sized> DerefMut for ManuallyDrop<T> {
1006     #[inline]
1007     fn deref_mut(&mut self) -> &mut Self::Target {
1008         &mut self.value
1009     }
1010 }
1011
1012 /// A newtype to construct uninitialized instances of `T`
1013 #[allow(missing_debug_implementations)]
1014 #[unstable(feature = "maybe_uninit", issue = "53491")]
1015 // NOTE after stabilizing `MaybeUninit` proceed to deprecate `mem::{uninitialized,zeroed}`
1016 pub union MaybeUninit<T> {
1017     uninit: (),
1018     value: ManuallyDrop<T>,
1019 }
1020
1021 impl<T> MaybeUninit<T> {
1022     /// Create a new `MaybeUninit` in an uninitialized state.
1023     ///
1024     /// Note that dropping a `MaybeUninit` will never call `T`'s drop code.
1025     /// It is your responsibility to make sure `T` gets dropped if it got initialized.
1026     #[unstable(feature = "maybe_uninit", issue = "53491")]
1027     pub const fn uninitialized() -> MaybeUninit<T> {
1028         MaybeUninit { uninit: () }
1029     }
1030
1031     /// Create a new `MaybeUninit` in an uninitialized state, with the memory being
1032     /// filled with `0` bytes.  It depends on `T` whether that already makes for
1033     /// proper initialization. For example, `MaybeUninit<usize>::zeroed()` is initialized,
1034     /// but `MaybeUninit<&'static i32>::zeroed()` is not because references must not
1035     /// be null.
1036     ///
1037     /// Note that dropping a `MaybeUninit` will never call `T`'s drop code.
1038     /// It is your responsibility to make sure `T` gets dropped if it got initialized.
1039     #[unstable(feature = "maybe_uninit", issue = "53491")]
1040     pub fn zeroed() -> MaybeUninit<T> {
1041         let mut u = MaybeUninit::<T>::uninitialized();
1042         unsafe {
1043             u.as_mut_ptr().write_bytes(0u8, 1);
1044         }
1045         u
1046     }
1047
1048     /// Set the value of the `MaybeUninit`. This overwrites any previous value without dropping it.
1049     #[unstable(feature = "maybe_uninit", issue = "53491")]
1050     pub fn set(&mut self, val: T) {
1051         unsafe {
1052             self.value = ManuallyDrop::new(val);
1053         }
1054     }
1055
1056     /// Extract the value from the `MaybeUninit` container.  This is a great way
1057     /// to ensure that the data will get dropped, because the resulting `T` is
1058     /// subject to the usual drop handling.
1059     ///
1060     /// # Unsafety
1061     ///
1062     /// It is up to the caller to guarantee that the the `MaybeUninit` really is in an initialized
1063     /// state, otherwise this will immediately cause undefined behavior.
1064     #[unstable(feature = "maybe_uninit", issue = "53491")]
1065     pub unsafe fn into_inner(self) -> T {
1066         ManuallyDrop::into_inner(self.value)
1067     }
1068
1069     /// Get a reference to the contained value.
1070     ///
1071     /// # Unsafety
1072     ///
1073     /// It is up to the caller to guarantee that the the `MaybeUninit` really is in an initialized
1074     /// state, otherwise this will immediately cause undefined behavior.
1075     #[unstable(feature = "maybe_uninit", issue = "53491")]
1076     pub unsafe fn get_ref(&self) -> &T {
1077         &*self.value
1078     }
1079
1080     /// Get a mutable reference to the contained value.
1081     ///
1082     /// # Unsafety
1083     ///
1084     /// It is up to the caller to guarantee that the the `MaybeUninit` really is in an initialized
1085     /// state, otherwise this will immediately cause undefined behavior.
1086     #[unstable(feature = "maybe_uninit", issue = "53491")]
1087     pub unsafe fn get_mut(&mut self) -> &mut T {
1088         &mut *self.value
1089     }
1090
1091     /// Get a pointer to the contained value. Reading from this pointer will be undefined
1092     /// behavior unless the `MaybeUninit` is initialized.
1093     #[unstable(feature = "maybe_uninit", issue = "53491")]
1094     pub fn as_ptr(&self) -> *const T {
1095         unsafe { &*self.value as *const T }
1096     }
1097
1098     /// Get a mutable pointer to the contained value. Reading from this pointer will be undefined
1099     /// behavior unless the `MaybeUninit` is initialized.
1100     #[unstable(feature = "maybe_uninit", issue = "53491")]
1101     pub fn as_mut_ptr(&mut self) -> *mut T {
1102         unsafe { &mut *self.value as *mut T }
1103     }
1104 }