2015-01-22 17:07:23 +00:00
|
|
|
//! A pointer type for heap allocation.
|
|
|
|
//!
|
2019-07-02 15:04:25 +00:00
|
|
|
//! [`Box<T>`], casually referred to as a 'box', provides the simplest form of
|
2015-06-09 18:18:03 +00:00
|
|
|
//! heap allocation in Rust. Boxes provide ownership for this allocation, and
|
|
|
|
//! drop their contents when they go out of scope.
|
2015-01-22 17:07:23 +00:00
|
|
|
//!
|
|
|
|
//! # Examples
|
|
|
|
//!
|
2018-09-25 01:55:54 +00:00
|
|
|
//! Move a value from the stack to the heap by creating a [`Box`]:
|
2015-01-22 17:07:23 +00:00
|
|
|
//!
|
|
|
|
//! ```
|
2018-09-25 01:55:54 +00:00
|
|
|
//! let val: u8 = 5;
|
|
|
|
//! let boxed: Box<u8> = Box::new(val);
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! Move a value from a [`Box`] back to the stack by [dereferencing]:
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! let boxed: Box<u8> = Box::new(5);
|
|
|
|
//! let val: u8 = *boxed;
|
2015-01-22 17:07:23 +00:00
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! Creating a recursive data structure:
|
|
|
|
//!
|
|
|
|
//! ```
|
2015-01-28 13:34:18 +00:00
|
|
|
//! #[derive(Debug)]
|
2015-01-22 17:07:23 +00:00
|
|
|
//! enum List<T> {
|
|
|
|
//! Cons(T, Box<List<T>>),
|
|
|
|
//! Nil,
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
|
|
|
//! let list: List<i32> = List::Cons(1, Box::new(List::Cons(2, Box::new(List::Nil))));
|
|
|
|
//! println!("{:?}", list);
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
2015-05-05 21:19:23 +00:00
|
|
|
//! This will print `Cons(1, Cons(2, Nil))`.
|
2015-04-20 14:05:57 +00:00
|
|
|
//!
|
2015-06-09 18:18:03 +00:00
|
|
|
//! Recursive structures must be boxed, because if the definition of `Cons`
|
|
|
|
//! looked like this:
|
2015-04-20 14:05:57 +00:00
|
|
|
//!
|
2017-06-20 07:15:16 +00:00
|
|
|
//! ```compile_fail,E0072
|
|
|
|
//! # enum List<T> {
|
2015-04-20 14:05:57 +00:00
|
|
|
//! Cons(T, List<T>),
|
2017-06-20 07:15:16 +00:00
|
|
|
//! # }
|
2015-04-20 14:05:57 +00:00
|
|
|
//! ```
|
|
|
|
//!
|
2015-06-09 18:18:03 +00:00
|
|
|
//! It wouldn't work. This is because the size of a `List` depends on how many
|
|
|
|
//! elements are in the list, and so we don't know how much memory to allocate
|
2019-07-02 15:04:25 +00:00
|
|
|
//! for a `Cons`. By introducing a [`Box<T>`], which has a defined size, we know how
|
2015-06-09 18:18:03 +00:00
|
|
|
//! big `Cons` needs to be.
|
2018-09-25 01:55:54 +00:00
|
|
|
//!
|
2019-05-21 03:03:40 +00:00
|
|
|
//! # Memory layout
|
|
|
|
//!
|
|
|
|
//! For non-zero-sized values, a [`Box`] will use the [`Global`] allocator for
|
|
|
|
//! its allocation. It is valid to convert both ways between a [`Box`] and a
|
|
|
|
//! raw pointer allocated with the [`Global`] allocator, given that the
|
|
|
|
//! [`Layout`] used with the allocator is correct for the type. More precisely,
|
|
|
|
//! a `value: *mut T` that has been allocated with the [`Global`] allocator
|
|
|
|
//! with `Layout::for_value(&*value)` may be converted into a box using
|
2019-07-02 15:04:25 +00:00
|
|
|
//! [`Box::<T>::from_raw(value)`]. Conversely, the memory backing a `value: *mut
|
|
|
|
//! T` obtained from [`Box::<T>::into_raw`] may be deallocated using the
|
|
|
|
//! [`Global`] allocator with [`Layout::for_value(&*value)`].
|
2019-05-21 03:03:40 +00:00
|
|
|
//!
|
|
|
|
//!
|
2018-09-25 01:55:54 +00:00
|
|
|
//! [dereferencing]: ../../std/ops/trait.Deref.html
|
|
|
|
//! [`Box`]: struct.Box.html
|
2019-07-02 15:04:25 +00:00
|
|
|
//! [`Box<T>`]: struct.Box.html
|
|
|
|
//! [`Box::<T>::from_raw(value)`]: struct.Box.html#method.from_raw
|
|
|
|
//! [`Box::<T>::into_raw`]: struct.Box.html#method.into_raw
|
2019-04-09 14:41:46 +00:00
|
|
|
//! [`Global`]: ../alloc/struct.Global.html
|
|
|
|
//! [`Layout`]: ../alloc/struct.Layout.html
|
2019-07-02 15:04:25 +00:00
|
|
|
//! [`Layout::for_value(&*value)`]: ../alloc/struct.Layout.html#method.for_value
|
2014-05-13 21:58:29 +00:00
|
|
|
|
2015-01-24 05:48:20 +00:00
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
2015-01-02 06:24:06 +00:00
|
|
|
|
2019-02-03 07:27:44 +00:00
|
|
|
use core::any::Any;
|
2019-06-04 12:15:47 +00:00
|
|
|
use core::array::LengthAtMost32;
|
2019-02-03 07:27:44 +00:00
|
|
|
use core::borrow;
|
|
|
|
use core::cmp::Ordering;
|
2019-06-04 12:15:47 +00:00
|
|
|
use core::convert::{From, TryFrom};
|
2019-02-03 07:27:44 +00:00
|
|
|
use core::fmt;
|
|
|
|
use core::future::Future;
|
|
|
|
use core::hash::{Hash, Hasher};
|
|
|
|
use core::iter::{Iterator, FromIterator, FusedIterator};
|
|
|
|
use core::marker::{Unpin, Unsize};
|
|
|
|
use core::mem;
|
|
|
|
use core::pin::Pin;
|
|
|
|
use core::ops::{
|
|
|
|
CoerceUnsized, DispatchFromDyn, Deref, DerefMut, Receiver, Generator, GeneratorState
|
Stabilize `Rc`, `Arc` and `Pin` as method receivers
This lets you write methods using `self: Rc<Self>`, `self: Arc<Self>`, `self: Pin<&mut Self>`, `self: Pin<Box<Self>`, and other combinations involving `Pin` and another stdlib receiver type, without needing the `arbitrary_self_types`. Other user-created receiver types can be used, but they still require the feature flag to use.
This is implemented by introducing a new trait, `Receiver`, which the method receiver's type must implement if the `arbitrary_self_types` feature is not enabled. To keep composed receiver types such as `&Arc<Self>` unstable, the receiver type is also required to implement `Deref<Target=Self>` when the feature flag is not enabled.
This lets you use `self: Rc<Self>` and `self: Arc<Self>` in stable Rust, which was not allowed previously. It was agreed that they would be stabilized in #55786. `self: Pin<&Self>` and other pinned receiver types do not require the `arbitrary_self_types` feature, but they cannot be used on stable because `Pin` still requires the `pin` feature.
2018-11-20 16:50:50 +00:00
|
|
|
};
|
2019-02-03 07:27:44 +00:00
|
|
|
use core::ptr::{self, NonNull, Unique};
|
2019-07-06 19:27:55 +00:00
|
|
|
use core::slice;
|
2019-03-11 23:56:00 +00:00
|
|
|
use core::task::{Context, Poll};
|
2018-04-13 23:13:28 +00:00
|
|
|
|
2019-07-16 07:02:36 +00:00
|
|
|
use crate::alloc::{self, Global, Alloc};
|
2019-02-03 07:27:44 +00:00
|
|
|
use crate::vec::Vec;
|
|
|
|
use crate::raw_vec::RawVec;
|
|
|
|
use crate::str::from_boxed_utf8_unchecked;
|
2014-05-13 21:58:29 +00:00
|
|
|
|
2015-01-22 17:07:23 +00:00
|
|
|
/// A pointer type for heap allocation.
|
|
|
|
///
|
|
|
|
/// See the [module-level documentation](../../std/boxed/index.html) for more.
|
2014-07-10 21:19:17 +00:00
|
|
|
#[lang = "owned_box"]
|
2017-01-21 14:40:31 +00:00
|
|
|
#[fundamental]
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-27 00:22:12 +00:00
|
|
|
pub struct Box<T: ?Sized>(Unique<T>);
|
|
|
|
|
2015-01-07 00:10:50 +00:00
|
|
|
impl<T> Box<T> {
|
2016-01-14 18:52:51 +00:00
|
|
|
/// Allocates memory on the heap and then places `x` into it.
|
2015-01-22 17:07:23 +00:00
|
|
|
///
|
2017-03-09 02:53:28 +00:00
|
|
|
/// This doesn't actually allocate if `T` is zero-sized.
|
|
|
|
///
|
2015-01-22 17:07:23 +00:00
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
2016-01-14 18:54:49 +00:00
|
|
|
/// let five = Box::new(5);
|
2015-01-22 17:07:23 +00:00
|
|
|
/// ```
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-16 10:53:29 +00:00
|
|
|
#[inline(always)]
|
2015-01-07 00:10:50 +00:00
|
|
|
pub fn new(x: T) -> Box<T> {
|
|
|
|
box x
|
|
|
|
}
|
2018-09-01 04:12:10 +00:00
|
|
|
|
2019-07-06 15:19:58 +00:00
|
|
|
/// Construct a new box with uninitialized contents.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// #![feature(new_uninit)]
|
|
|
|
///
|
|
|
|
/// let mut five = Box::<u32>::new_uninit();
|
|
|
|
///
|
|
|
|
/// let five = unsafe {
|
|
|
|
/// // Deferred initialization:
|
|
|
|
/// five.as_mut_ptr().write(5);
|
|
|
|
///
|
2019-07-06 19:27:55 +00:00
|
|
|
/// five.assume_init()
|
2019-07-06 15:19:58 +00:00
|
|
|
/// };
|
|
|
|
///
|
|
|
|
/// assert_eq!(*five, 5)
|
|
|
|
/// ```
|
2019-08-05 15:45:30 +00:00
|
|
|
#[unstable(feature = "new_uninit", issue = "63291")]
|
2019-07-06 15:19:58 +00:00
|
|
|
pub fn new_uninit() -> Box<mem::MaybeUninit<T>> {
|
|
|
|
let layout = alloc::Layout::new::<mem::MaybeUninit<T>>();
|
2019-07-16 07:02:36 +00:00
|
|
|
let ptr = unsafe {
|
|
|
|
Global.alloc(layout)
|
|
|
|
.unwrap_or_else(|_| alloc::handle_alloc_error(layout))
|
|
|
|
};
|
|
|
|
Box(ptr.cast().into())
|
2019-07-06 15:19:58 +00:00
|
|
|
}
|
|
|
|
|
2019-07-06 19:52:15 +00:00
|
|
|
/// Constructs a new `Pin<Box<T>>`. If `T` does not implement `Unpin`, then
|
|
|
|
/// `x` will be pinned in memory and unable to be moved.
|
|
|
|
#[stable(feature = "pin", since = "1.33.0")]
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn pin(x: T) -> Pin<Box<T>> {
|
|
|
|
(box x).into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Box<[T]> {
|
2019-07-06 19:27:55 +00:00
|
|
|
/// Construct a new boxed slice with uninitialized contents.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// #![feature(new_uninit)]
|
|
|
|
///
|
2019-07-06 19:52:15 +00:00
|
|
|
/// let mut values = Box::<[u32]>::new_uninit_slice(3);
|
2019-07-06 19:27:55 +00:00
|
|
|
///
|
|
|
|
/// let values = unsafe {
|
|
|
|
/// // Deferred initialization:
|
|
|
|
/// values[0].as_mut_ptr().write(1);
|
|
|
|
/// values[1].as_mut_ptr().write(2);
|
|
|
|
/// values[2].as_mut_ptr().write(3);
|
|
|
|
///
|
|
|
|
/// values.assume_init()
|
|
|
|
/// };
|
|
|
|
///
|
|
|
|
/// assert_eq!(*values, [1, 2, 3])
|
|
|
|
/// ```
|
2019-08-05 15:45:30 +00:00
|
|
|
#[unstable(feature = "new_uninit", issue = "63291")]
|
2019-07-06 19:27:55 +00:00
|
|
|
pub fn new_uninit_slice(len: usize) -> Box<[mem::MaybeUninit<T>]> {
|
|
|
|
let layout = alloc::Layout::array::<mem::MaybeUninit<T>>(len).unwrap();
|
|
|
|
let ptr = unsafe { alloc::alloc(layout) };
|
|
|
|
let unique = Unique::new(ptr).unwrap_or_else(|| alloc::handle_alloc_error(layout));
|
|
|
|
let slice = unsafe { slice::from_raw_parts_mut(unique.cast().as_ptr(), len) };
|
|
|
|
Box(Unique::from(slice))
|
|
|
|
}
|
2015-01-07 00:10:50 +00:00
|
|
|
}
|
|
|
|
|
2019-07-06 15:19:58 +00:00
|
|
|
impl<T> Box<mem::MaybeUninit<T>> {
|
|
|
|
/// Convert to `Box<T>`.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
///
|
|
|
|
/// As with [`MaybeUninit::assume_init`],
|
|
|
|
/// it is up to the caller to guarantee that the value
|
|
|
|
/// really is in an initialized state.
|
|
|
|
/// Calling this when the content is not yet fully initialized
|
|
|
|
/// causes immediate undefined behavior.
|
|
|
|
///
|
2019-07-06 21:30:32 +00:00
|
|
|
/// [`MaybeUninit::assume_init`]: ../../std/mem/union.MaybeUninit.html#method.assume_init
|
|
|
|
///
|
2019-07-06 15:19:58 +00:00
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// #![feature(new_uninit)]
|
|
|
|
///
|
|
|
|
/// let mut five = Box::<u32>::new_uninit();
|
|
|
|
///
|
|
|
|
/// let five: Box<u32> = unsafe {
|
|
|
|
/// // Deferred initialization:
|
|
|
|
/// five.as_mut_ptr().write(5);
|
|
|
|
///
|
2019-07-06 19:27:55 +00:00
|
|
|
/// five.assume_init()
|
2019-07-06 15:19:58 +00:00
|
|
|
/// };
|
|
|
|
///
|
|
|
|
/// assert_eq!(*five, 5)
|
|
|
|
/// ```
|
2019-08-05 15:45:30 +00:00
|
|
|
#[unstable(feature = "new_uninit", issue = "63291")]
|
2019-07-06 15:19:58 +00:00
|
|
|
#[inline]
|
2019-07-06 19:27:55 +00:00
|
|
|
pub unsafe fn assume_init(self) -> Box<T> {
|
|
|
|
Box(Box::into_unique(self).cast())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Box<[mem::MaybeUninit<T>]> {
|
|
|
|
/// Convert to `Box<[T]>`.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
///
|
|
|
|
/// As with [`MaybeUninit::assume_init`],
|
|
|
|
/// it is up to the caller to guarantee that the values
|
|
|
|
/// really are in an initialized state.
|
|
|
|
/// Calling this when the content is not yet fully initialized
|
|
|
|
/// causes immediate undefined behavior.
|
|
|
|
///
|
2019-07-06 21:30:32 +00:00
|
|
|
/// [`MaybeUninit::assume_init`]: ../../std/mem/union.MaybeUninit.html#method.assume_init
|
|
|
|
///
|
2019-07-06 19:27:55 +00:00
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// #![feature(new_uninit)]
|
|
|
|
///
|
2019-07-06 19:52:15 +00:00
|
|
|
/// let mut values = Box::<[u32]>::new_uninit_slice(3);
|
2019-07-06 19:27:55 +00:00
|
|
|
///
|
|
|
|
/// let values = unsafe {
|
|
|
|
/// // Deferred initialization:
|
|
|
|
/// values[0].as_mut_ptr().write(1);
|
|
|
|
/// values[1].as_mut_ptr().write(2);
|
|
|
|
/// values[2].as_mut_ptr().write(3);
|
|
|
|
///
|
|
|
|
/// values.assume_init()
|
|
|
|
/// };
|
|
|
|
///
|
|
|
|
/// assert_eq!(*values, [1, 2, 3])
|
|
|
|
/// ```
|
2019-08-05 15:45:30 +00:00
|
|
|
#[unstable(feature = "new_uninit", issue = "63291")]
|
2019-07-06 19:27:55 +00:00
|
|
|
#[inline]
|
|
|
|
pub unsafe fn assume_init(self) -> Box<[T]> {
|
|
|
|
Box(Unique::new_unchecked(Box::into_raw(self) as _))
|
2019-07-06 15:19:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-23 02:32:40 +00:00
|
|
|
impl<T: ?Sized> Box<T> {
|
2016-01-14 02:23:07 +00:00
|
|
|
/// Constructs a box from a raw pointer.
|
2015-02-01 17:15:44 +00:00
|
|
|
///
|
2016-01-14 02:23:07 +00:00
|
|
|
/// After calling this function, the raw pointer is owned by the
|
|
|
|
/// resulting `Box`. Specifically, the `Box` destructor will call
|
2019-05-19 15:21:03 +00:00
|
|
|
/// the destructor of `T` and free the allocated memory. For this
|
2019-05-21 03:03:40 +00:00
|
|
|
/// to be safe, the memory must have been allocated in accordance
|
|
|
|
/// with the [memory layout] used by `Box` .
|
2019-05-19 15:21:03 +00:00
|
|
|
///
|
|
|
|
/// # Safety
|
2015-02-01 17:15:44 +00:00
|
|
|
///
|
2016-01-14 02:23:07 +00:00
|
|
|
/// This function is unsafe because improper use may lead to
|
|
|
|
/// memory problems. For example, a double-free may occur if the
|
2015-02-01 17:15:44 +00:00
|
|
|
/// function is called twice on the same raw pointer.
|
2016-07-09 17:57:08 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
2019-05-21 03:03:40 +00:00
|
|
|
/// Recreate a `Box` which was previously converted to a raw pointer
|
|
|
|
/// using [`Box::into_raw`]:
|
2016-07-09 17:57:08 +00:00
|
|
|
/// ```
|
|
|
|
/// let x = Box::new(5);
|
|
|
|
/// let ptr = Box::into_raw(x);
|
|
|
|
/// let x = unsafe { Box::from_raw(ptr) };
|
|
|
|
/// ```
|
2019-05-19 15:21:03 +00:00
|
|
|
/// Manually create a `Box` from scratch by using the global allocator:
|
|
|
|
/// ```
|
2019-05-21 03:03:40 +00:00
|
|
|
/// use std::alloc::{alloc, Layout};
|
2019-05-19 15:21:03 +00:00
|
|
|
///
|
2019-05-21 03:03:40 +00:00
|
|
|
/// unsafe {
|
|
|
|
/// let ptr = alloc(Layout::new::<i32>()) as *mut i32;
|
|
|
|
/// *ptr = 5;
|
|
|
|
/// let x = Box::from_raw(ptr);
|
|
|
|
/// }
|
2019-05-19 15:21:03 +00:00
|
|
|
/// ```
|
|
|
|
///
|
2019-05-21 03:03:40 +00:00
|
|
|
/// [memory layout]: index.html#memory-layout
|
2019-05-19 15:21:03 +00:00
|
|
|
/// [`Layout`]: ../alloc/struct.Layout.html
|
|
|
|
/// [`Box::into_raw`]: struct.Box.html#method.into_raw
|
2015-09-10 20:26:44 +00:00
|
|
|
#[stable(feature = "box_raw", since = "1.4.0")]
|
2015-02-22 23:58:54 +00:00
|
|
|
#[inline]
|
2015-02-01 17:15:44 +00:00
|
|
|
pub unsafe fn from_raw(raw: *mut T) -> Self {
|
2017-12-22 18:24:07 +00:00
|
|
|
Box(Unique::new_unchecked(raw))
|
2017-10-06 21:29:49 +00:00
|
|
|
}
|
|
|
|
|
2018-08-18 03:21:00 +00:00
|
|
|
/// Consumes the `Box`, returning a wrapped raw pointer.
|
|
|
|
///
|
|
|
|
/// The pointer will be properly aligned and non-null.
|
2015-06-11 02:14:35 +00:00
|
|
|
///
|
2016-01-14 02:23:07 +00:00
|
|
|
/// After calling this function, the caller is responsible for the
|
|
|
|
/// memory previously managed by the `Box`. In particular, the
|
2019-05-21 03:03:40 +00:00
|
|
|
/// caller should properly destroy `T` and release the memory, taking
|
|
|
|
/// into account the [memory layout] used by `Box`. The easiest way to
|
|
|
|
/// do this is to convert the raw pointer back into a `Box` with the
|
|
|
|
/// [`Box::from_raw`] function, allowing the `Box` destructor to perform
|
|
|
|
/// the cleanup.
|
2015-06-11 02:14:35 +00:00
|
|
|
///
|
2016-08-06 10:49:17 +00:00
|
|
|
/// Note: this is an associated function, which means that you have
|
|
|
|
/// to call it as `Box::into_raw(b)` instead of `b.into_raw()`. This
|
|
|
|
/// is so that there is no conflict with a method on the inner type.
|
|
|
|
///
|
2015-06-11 02:14:35 +00:00
|
|
|
/// # Examples
|
2019-05-19 23:47:18 +00:00
|
|
|
/// Converting the raw pointer back into a `Box` with [`Box::from_raw`]
|
2019-05-19 15:21:03 +00:00
|
|
|
/// for automatic cleanup:
|
2015-09-10 20:26:44 +00:00
|
|
|
/// ```
|
2019-05-19 15:21:03 +00:00
|
|
|
/// let x = Box::new(String::from("Hello"));
|
2016-07-09 17:57:08 +00:00
|
|
|
/// let ptr = Box::into_raw(x);
|
2019-05-21 03:03:40 +00:00
|
|
|
/// let x = unsafe { Box::from_raw(ptr) };
|
2019-05-19 15:21:03 +00:00
|
|
|
/// ```
|
2019-05-21 03:03:40 +00:00
|
|
|
/// Manual cleanup by explicitly running the destructor and deallocating
|
|
|
|
/// the memory:
|
2015-06-11 02:14:35 +00:00
|
|
|
/// ```
|
2019-05-21 03:03:40 +00:00
|
|
|
/// use std::alloc::{dealloc, Layout};
|
2019-05-19 15:21:03 +00:00
|
|
|
/// use std::ptr;
|
2019-05-19 23:47:18 +00:00
|
|
|
///
|
2019-05-19 15:21:03 +00:00
|
|
|
/// let x = Box::new(String::from("Hello"));
|
|
|
|
/// let p = Box::into_raw(x);
|
2019-05-21 03:03:40 +00:00
|
|
|
/// unsafe {
|
|
|
|
/// ptr::drop_in_place(p);
|
|
|
|
/// dealloc(p as *mut u8, Layout::new::<String>());
|
|
|
|
/// }
|
2019-05-19 15:21:03 +00:00
|
|
|
/// ```
|
|
|
|
///
|
2019-05-21 03:03:40 +00:00
|
|
|
/// [memory layout]: index.html#memory-layout
|
2019-05-19 15:21:03 +00:00
|
|
|
/// [`Box::from_raw`]: struct.Box.html#method.from_raw
|
2015-09-10 20:26:44 +00:00
|
|
|
#[stable(feature = "box_raw", since = "1.4.0")]
|
2015-06-11 02:14:35 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn into_raw(b: Box<T>) -> *mut T {
|
2017-12-27 21:56:06 +00:00
|
|
|
Box::into_raw_non_null(b).as_ptr()
|
2015-06-11 02:14:35 +00:00
|
|
|
}
|
2017-07-14 10:47:06 +00:00
|
|
|
|
2017-12-22 18:24:07 +00:00
|
|
|
/// Consumes the `Box`, returning the wrapped pointer as `NonNull<T>`.
|
2017-07-14 10:47:06 +00:00
|
|
|
///
|
|
|
|
/// After calling this function, the caller is responsible for the
|
|
|
|
/// memory previously managed by the `Box`. In particular, the
|
|
|
|
/// caller should properly destroy `T` and release the memory. The
|
2019-05-19 15:21:03 +00:00
|
|
|
/// easiest way to do so is to convert the `NonNull<T>` pointer
|
2017-12-27 21:53:27 +00:00
|
|
|
/// into a raw pointer and back into a `Box` with the [`Box::from_raw`]
|
|
|
|
/// function.
|
2017-07-14 10:47:06 +00:00
|
|
|
///
|
|
|
|
/// Note: this is an associated function, which means that you have
|
2017-12-27 21:56:06 +00:00
|
|
|
/// to call it as `Box::into_raw_non_null(b)`
|
|
|
|
/// instead of `b.into_raw_non_null()`. This
|
2017-07-14 10:47:06 +00:00
|
|
|
/// is so that there is no conflict with a method on the inner type.
|
|
|
|
///
|
|
|
|
/// [`Box::from_raw`]: struct.Box.html#method.from_raw
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
2018-01-10 20:11:55 +00:00
|
|
|
/// #![feature(box_into_raw_non_null)]
|
|
|
|
///
|
2017-07-14 10:47:06 +00:00
|
|
|
/// fn main() {
|
|
|
|
/// let x = Box::new(5);
|
2017-12-27 21:56:06 +00:00
|
|
|
/// let ptr = Box::into_raw_non_null(x);
|
2019-05-19 15:21:03 +00:00
|
|
|
///
|
|
|
|
/// // Clean up the memory by converting the NonNull pointer back
|
|
|
|
/// // into a Box and letting the Box be dropped.
|
2019-05-21 03:03:40 +00:00
|
|
|
/// let x = unsafe { Box::from_raw(ptr.as_ptr()) };
|
2017-07-14 10:47:06 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2018-01-10 20:11:55 +00:00
|
|
|
#[unstable(feature = "box_into_raw_non_null", issue = "47336")]
|
2017-07-14 10:47:06 +00:00
|
|
|
#[inline]
|
2017-12-27 21:56:06 +00:00
|
|
|
pub fn into_raw_non_null(b: Box<T>) -> NonNull<T> {
|
2017-12-22 18:24:07 +00:00
|
|
|
Box::into_unique(b).into()
|
|
|
|
}
|
|
|
|
|
2017-12-27 21:56:06 +00:00
|
|
|
#[unstable(feature = "ptr_internals", issue = "0", reason = "use into_raw_non_null instead")]
|
2017-12-22 18:24:07 +00:00
|
|
|
#[inline]
|
2018-04-11 09:24:47 +00:00
|
|
|
#[doc(hidden)]
|
2019-05-23 15:58:25 +00:00
|
|
|
pub fn into_unique(b: Box<T>) -> Unique<T> {
|
|
|
|
let mut unique = b.0;
|
|
|
|
mem::forget(b);
|
2019-02-13 15:26:13 +00:00
|
|
|
// Box is kind-of a library type, but recognized as a "unique pointer" by
|
|
|
|
// Stacked Borrows. This function here corresponds to "reborrowing to
|
|
|
|
// a raw pointer", but there is no actual reborrow here -- so
|
|
|
|
// without some care, the pointer we are returning here still carries
|
2019-05-23 16:13:02 +00:00
|
|
|
// the tag of `b`, with `Unique` permission.
|
|
|
|
// We round-trip through a mutable reference to avoid that.
|
2019-05-23 15:58:25 +00:00
|
|
|
unsafe { Unique::new_unchecked(unique.as_mut() as *mut T) }
|
2017-07-14 10:47:06 +00:00
|
|
|
}
|
2017-11-08 22:10:33 +00:00
|
|
|
|
2017-11-09 22:27:58 +00:00
|
|
|
/// Consumes and leaks the `Box`, returning a mutable reference,
|
2018-07-09 20:25:36 +00:00
|
|
|
/// `&'a mut T`. Note that the type `T` must outlive the chosen lifetime
|
|
|
|
/// `'a`. If the type has only static references, or none at all, then this
|
|
|
|
/// may be chosen to be `'static`.
|
2017-11-08 22:10:33 +00:00
|
|
|
///
|
|
|
|
/// This function is mainly useful for data that lives for the remainder of
|
2017-11-08 22:59:35 +00:00
|
|
|
/// the program's life. Dropping the returned reference will cause a memory
|
2017-11-08 22:10:33 +00:00
|
|
|
/// leak. If this is not acceptable, the reference should first be wrapped
|
2017-11-08 22:59:35 +00:00
|
|
|
/// with the [`Box::from_raw`] function producing a `Box`. This `Box` can
|
|
|
|
/// then be dropped which will properly destroy `T` and release the
|
|
|
|
/// allocated memory.
|
2017-11-08 22:10:33 +00:00
|
|
|
///
|
|
|
|
/// Note: this is an associated function, which means that you have
|
|
|
|
/// to call it as `Box::leak(b)` instead of `b.leak()`. This
|
|
|
|
/// is so that there is no conflict with a method on the inner type.
|
|
|
|
///
|
|
|
|
/// [`Box::from_raw`]: struct.Box.html#method.from_raw
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// Simple usage:
|
|
|
|
///
|
|
|
|
/// ```
|
2017-11-08 23:15:07 +00:00
|
|
|
/// fn main() {
|
|
|
|
/// let x = Box::new(41);
|
2017-11-09 22:25:32 +00:00
|
|
|
/// let static_ref: &'static mut usize = Box::leak(x);
|
2017-11-08 23:15:07 +00:00
|
|
|
/// *static_ref += 1;
|
|
|
|
/// assert_eq!(*static_ref, 42);
|
|
|
|
/// }
|
2017-11-08 22:10:33 +00:00
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Unsized data:
|
|
|
|
///
|
|
|
|
/// ```
|
2017-11-08 23:15:07 +00:00
|
|
|
/// fn main() {
|
|
|
|
/// let x = vec![1, 2, 3].into_boxed_slice();
|
|
|
|
/// let static_ref = Box::leak(x);
|
|
|
|
/// static_ref[0] = 4;
|
|
|
|
/// assert_eq!(*static_ref, [4, 2, 3]);
|
|
|
|
/// }
|
2017-11-08 22:10:33 +00:00
|
|
|
/// ```
|
2018-02-10 00:26:19 +00:00
|
|
|
#[stable(feature = "box_leak", since = "1.26.0")]
|
2017-11-08 22:10:33 +00:00
|
|
|
#[inline]
|
2017-11-09 22:39:18 +00:00
|
|
|
pub fn leak<'a>(b: Box<T>) -> &'a mut T
|
|
|
|
where
|
|
|
|
T: 'a // Technically not needed, but kept to be explicit.
|
|
|
|
{
|
2017-11-08 22:10:33 +00:00
|
|
|
unsafe { &mut *Box::into_raw(b) }
|
|
|
|
}
|
2019-01-03 20:04:35 +00:00
|
|
|
|
|
|
|
/// Converts a `Box<T>` into a `Pin<Box<T>>`
|
|
|
|
///
|
|
|
|
/// This conversion does not allocate on the heap and happens in place.
|
|
|
|
///
|
|
|
|
/// This is also available via [`From`].
|
2019-07-04 10:55:23 +00:00
|
|
|
#[unstable(feature = "box_into_pin", issue = "62370")]
|
2019-01-03 20:04:35 +00:00
|
|
|
pub fn into_pin(boxed: Box<T>) -> Pin<Box<T>> {
|
|
|
|
// It's not possible to move or replace the insides of a `Pin<Box<T>>`
|
|
|
|
// when `T: !Unpin`, so it's safe to pin it directly without any
|
|
|
|
// additional requirements.
|
|
|
|
unsafe { Pin::new_unchecked(boxed) }
|
|
|
|
}
|
2015-02-01 17:15:44 +00:00
|
|
|
}
|
|
|
|
|
2017-01-21 19:44:44 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
unsafe impl<#[may_dangle] T: ?Sized> Drop for Box<T> {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
// FIXME: Do nothing, drop is currently performed by compiler.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-05-13 21:58:29 +00:00
|
|
|
impl<T: Default> Default for Box<T> {
|
2016-09-11 11:30:09 +00:00
|
|
|
/// Creates a `Box<T>`, with the `Default` value for T.
|
2015-09-23 22:00:54 +00:00
|
|
|
fn default() -> Box<T> {
|
|
|
|
box Default::default()
|
|
|
|
}
|
2014-05-13 21:58:29 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-11-06 17:52:45 +00:00
|
|
|
impl<T> Default for Box<[T]> {
|
2015-09-23 22:00:54 +00:00
|
|
|
fn default() -> Box<[T]> {
|
|
|
|
Box::<[T; 0]>::new([])
|
|
|
|
}
|
2014-11-06 17:52:45 +00:00
|
|
|
}
|
|
|
|
|
2017-02-01 03:46:16 +00:00
|
|
|
#[stable(feature = "default_box_extra", since = "1.17.0")]
|
|
|
|
impl Default for Box<str> {
|
|
|
|
fn default() -> Box<str> {
|
2017-04-11 20:02:43 +00:00
|
|
|
unsafe { from_boxed_utf8_unchecked(Default::default()) }
|
2017-02-01 03:46:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-05-13 21:58:29 +00:00
|
|
|
impl<T: Clone> Clone for Box<T> {
|
2015-01-22 17:07:23 +00:00
|
|
|
/// Returns a new box with a `clone()` of this box's contents.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// let x = Box::new(5);
|
|
|
|
/// let y = x.clone();
|
2019-06-30 18:56:21 +00:00
|
|
|
///
|
|
|
|
/// // The value is the same
|
|
|
|
/// assert_eq!(x, y);
|
|
|
|
///
|
|
|
|
/// // But they are unique objects
|
|
|
|
/// assert_ne!(&*x as *const i32, &*y as *const i32);
|
2015-01-22 17:07:23 +00:00
|
|
|
/// ```
|
2019-02-23 21:40:56 +00:00
|
|
|
#[rustfmt::skip]
|
2014-05-13 21:58:29 +00:00
|
|
|
#[inline]
|
2015-09-23 22:00:54 +00:00
|
|
|
fn clone(&self) -> Box<T> {
|
2015-09-23 22:03:05 +00:00
|
|
|
box { (**self).clone() }
|
2015-09-23 22:00:54 +00:00
|
|
|
}
|
2019-06-30 18:56:21 +00:00
|
|
|
|
2015-01-22 17:07:23 +00:00
|
|
|
/// Copies `source`'s contents into `self` without creating a new allocation.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// let x = Box::new(5);
|
|
|
|
/// let mut y = Box::new(10);
|
2019-06-30 18:56:21 +00:00
|
|
|
/// let yp: *const i32 = &*y;
|
2015-01-22 17:07:23 +00:00
|
|
|
///
|
|
|
|
/// y.clone_from(&x);
|
|
|
|
///
|
2019-06-30 18:56:21 +00:00
|
|
|
/// // The value is the same
|
|
|
|
/// assert_eq!(x, y);
|
|
|
|
///
|
|
|
|
/// // And no allocation occurred
|
|
|
|
/// assert_eq!(yp, &*y);
|
2015-01-22 17:07:23 +00:00
|
|
|
/// ```
|
2014-05-13 21:58:29 +00:00
|
|
|
#[inline]
|
|
|
|
fn clone_from(&mut self, source: &Box<T>) {
|
|
|
|
(**self).clone_from(&(**source));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-27 16:06:00 +00:00
|
|
|
|
|
|
|
#[stable(feature = "box_slice_clone", since = "1.3.0")]
|
|
|
|
impl Clone for Box<str> {
|
|
|
|
fn clone(&self) -> Self {
|
2019-05-27 19:42:50 +00:00
|
|
|
// this makes a copy of the data
|
2019-05-27 06:43:20 +00:00
|
|
|
let buf: Box<[u8]> = self.as_bytes().into();
|
2015-07-27 16:06:00 +00:00
|
|
|
unsafe {
|
2019-05-27 06:43:20 +00:00
|
|
|
from_boxed_utf8_unchecked(buf)
|
2015-07-27 16:06:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 21:16:49 +00:00
|
|
|
impl<T: ?Sized + PartialEq> PartialEq for Box<T> {
|
2014-10-30 20:33:47 +00:00
|
|
|
#[inline]
|
2015-09-23 22:00:54 +00:00
|
|
|
fn eq(&self, other: &Box<T>) -> bool {
|
|
|
|
PartialEq::eq(&**self, &**other)
|
|
|
|
}
|
2014-10-30 20:33:47 +00:00
|
|
|
#[inline]
|
2015-09-23 22:00:54 +00:00
|
|
|
fn ne(&self, other: &Box<T>) -> bool {
|
|
|
|
PartialEq::ne(&**self, &**other)
|
|
|
|
}
|
2014-10-30 20:33:47 +00:00
|
|
|
}
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 21:16:49 +00:00
|
|
|
impl<T: ?Sized + PartialOrd> PartialOrd for Box<T> {
|
2014-10-30 20:33:47 +00:00
|
|
|
#[inline]
|
|
|
|
fn partial_cmp(&self, other: &Box<T>) -> Option<Ordering> {
|
|
|
|
PartialOrd::partial_cmp(&**self, &**other)
|
|
|
|
}
|
|
|
|
#[inline]
|
2015-09-23 22:00:54 +00:00
|
|
|
fn lt(&self, other: &Box<T>) -> bool {
|
|
|
|
PartialOrd::lt(&**self, &**other)
|
|
|
|
}
|
2014-10-30 20:33:47 +00:00
|
|
|
#[inline]
|
2015-09-23 22:00:54 +00:00
|
|
|
fn le(&self, other: &Box<T>) -> bool {
|
|
|
|
PartialOrd::le(&**self, &**other)
|
|
|
|
}
|
2014-10-30 20:33:47 +00:00
|
|
|
#[inline]
|
2015-09-23 22:00:54 +00:00
|
|
|
fn ge(&self, other: &Box<T>) -> bool {
|
|
|
|
PartialOrd::ge(&**self, &**other)
|
|
|
|
}
|
2014-10-30 20:33:47 +00:00
|
|
|
#[inline]
|
2015-09-23 22:00:54 +00:00
|
|
|
fn gt(&self, other: &Box<T>) -> bool {
|
|
|
|
PartialOrd::gt(&**self, &**other)
|
|
|
|
}
|
2014-10-30 20:33:47 +00:00
|
|
|
}
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 21:16:49 +00:00
|
|
|
impl<T: ?Sized + Ord> Ord for Box<T> {
|
2014-10-30 20:33:47 +00:00
|
|
|
#[inline]
|
|
|
|
fn cmp(&self, other: &Box<T>) -> Ordering {
|
|
|
|
Ord::cmp(&**self, &**other)
|
|
|
|
}
|
2015-01-07 20:37:07 +00:00
|
|
|
}
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 21:16:49 +00:00
|
|
|
impl<T: ?Sized + Eq> Eq for Box<T> {}
|
2014-10-30 20:33:47 +00:00
|
|
|
|
2015-02-18 04:48:07 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<T: ?Sized + Hash> Hash for Box<T> {
|
2018-03-29 02:51:52 +00:00
|
|
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
2015-02-18 04:48:07 +00:00
|
|
|
(**self).hash(state);
|
|
|
|
}
|
|
|
|
}
|
2014-12-13 02:43:07 +00:00
|
|
|
|
2017-08-21 14:15:02 +00:00
|
|
|
#[stable(feature = "indirect_hasher_impl", since = "1.22.0")]
|
|
|
|
impl<T: ?Sized + Hasher> Hasher for Box<T> {
|
|
|
|
fn finish(&self) -> u64 {
|
|
|
|
(**self).finish()
|
|
|
|
}
|
|
|
|
fn write(&mut self, bytes: &[u8]) {
|
|
|
|
(**self).write(bytes)
|
|
|
|
}
|
|
|
|
fn write_u8(&mut self, i: u8) {
|
|
|
|
(**self).write_u8(i)
|
|
|
|
}
|
|
|
|
fn write_u16(&mut self, i: u16) {
|
|
|
|
(**self).write_u16(i)
|
|
|
|
}
|
|
|
|
fn write_u32(&mut self, i: u32) {
|
|
|
|
(**self).write_u32(i)
|
|
|
|
}
|
|
|
|
fn write_u64(&mut self, i: u64) {
|
|
|
|
(**self).write_u64(i)
|
|
|
|
}
|
|
|
|
fn write_u128(&mut self, i: u128) {
|
|
|
|
(**self).write_u128(i)
|
|
|
|
}
|
|
|
|
fn write_usize(&mut self, i: usize) {
|
|
|
|
(**self).write_usize(i)
|
|
|
|
}
|
|
|
|
fn write_i8(&mut self, i: i8) {
|
|
|
|
(**self).write_i8(i)
|
|
|
|
}
|
|
|
|
fn write_i16(&mut self, i: i16) {
|
|
|
|
(**self).write_i16(i)
|
|
|
|
}
|
|
|
|
fn write_i32(&mut self, i: i32) {
|
|
|
|
(**self).write_i32(i)
|
|
|
|
}
|
|
|
|
fn write_i64(&mut self, i: i64) {
|
|
|
|
(**self).write_i64(i)
|
|
|
|
}
|
|
|
|
fn write_i128(&mut self, i: i128) {
|
|
|
|
(**self).write_i128(i)
|
|
|
|
}
|
|
|
|
fn write_isize(&mut self, i: isize) {
|
|
|
|
(**self).write_isize(i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-16 08:04:17 +00:00
|
|
|
#[stable(feature = "from_for_ptrs", since = "1.6.0")]
|
2015-11-04 12:03:33 +00:00
|
|
|
impl<T> From<T> for Box<T> {
|
2018-10-29 11:15:22 +00:00
|
|
|
/// Converts a generic type `T` into a `Box<T>`
|
|
|
|
///
|
|
|
|
/// The conversion allocates on the heap and moves `t`
|
|
|
|
/// from the stack into it.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```rust
|
|
|
|
/// let x = 5;
|
|
|
|
/// let boxed = Box::new(5);
|
|
|
|
///
|
|
|
|
/// assert_eq!(Box::from(x), boxed);
|
|
|
|
/// ```
|
2015-11-04 12:03:33 +00:00
|
|
|
fn from(t: T) -> Self {
|
|
|
|
Box::new(t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-18 02:14:07 +00:00
|
|
|
#[stable(feature = "pin", since = "1.33.0")]
|
2019-01-03 20:03:29 +00:00
|
|
|
impl<T: ?Sized> From<Box<T>> for Pin<Box<T>> {
|
2018-10-29 11:15:22 +00:00
|
|
|
/// Converts a `Box<T>` into a `Pin<Box<T>>`
|
|
|
|
///
|
|
|
|
/// This conversion does not allocate on the heap and happens in place.
|
2018-09-01 04:12:10 +00:00
|
|
|
fn from(boxed: Box<T>) -> Self {
|
2019-01-03 20:04:35 +00:00
|
|
|
Box::into_pin(boxed)
|
2018-09-01 04:12:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-01 03:46:16 +00:00
|
|
|
#[stable(feature = "box_from_slice", since = "1.17.0")]
|
2019-03-10 03:10:28 +00:00
|
|
|
impl<T: Copy> From<&[T]> for Box<[T]> {
|
2018-10-29 11:15:22 +00:00
|
|
|
/// Converts a `&[T]` into a `Box<[T]>`
|
|
|
|
///
|
2018-10-29 11:37:58 +00:00
|
|
|
/// This conversion allocates on the heap
|
|
|
|
/// and performs a copy of `slice`.
|
2018-10-29 11:15:22 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```rust
|
|
|
|
/// // create a &[u8] which will be used to create a Box<[u8]>
|
|
|
|
/// let slice: &[u8] = &[104, 101, 108, 108, 111];
|
2018-12-05 15:31:35 +00:00
|
|
|
/// let boxed_slice: Box<[u8]> = Box::from(slice);
|
2018-10-29 11:15:22 +00:00
|
|
|
///
|
2018-11-16 16:21:23 +00:00
|
|
|
/// println!("{:?}", boxed_slice);
|
2018-10-29 11:15:22 +00:00
|
|
|
/// ```
|
2019-03-10 03:10:28 +00:00
|
|
|
fn from(slice: &[T]) -> Box<[T]> {
|
2019-05-27 06:43:20 +00:00
|
|
|
let len = slice.len();
|
|
|
|
let buf = RawVec::with_capacity(len);
|
|
|
|
unsafe {
|
|
|
|
ptr::copy_nonoverlapping(slice.as_ptr(), buf.ptr(), len);
|
|
|
|
buf.into_box()
|
|
|
|
}
|
2017-02-01 03:46:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "box_from_slice", since = "1.17.0")]
|
2019-03-10 03:10:28 +00:00
|
|
|
impl From<&str> for Box<str> {
|
2018-10-29 11:15:22 +00:00
|
|
|
/// Converts a `&str` into a `Box<str>`
|
|
|
|
///
|
2018-10-29 11:37:58 +00:00
|
|
|
/// This conversion allocates on the heap
|
|
|
|
/// and performs a copy of `s`.
|
2018-10-29 11:15:22 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```rust
|
|
|
|
/// let boxed: Box<str> = Box::from("hello");
|
|
|
|
/// println!("{}", boxed);
|
|
|
|
/// ```
|
2018-03-31 21:19:02 +00:00
|
|
|
#[inline]
|
2019-03-10 03:10:28 +00:00
|
|
|
fn from(s: &str) -> Box<str> {
|
2017-04-11 20:02:43 +00:00
|
|
|
unsafe { from_boxed_utf8_unchecked(Box::from(s.as_bytes())) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-20 07:38:39 +00:00
|
|
|
#[stable(feature = "boxed_str_conv", since = "1.19.0")]
|
2017-04-11 20:02:43 +00:00
|
|
|
impl From<Box<str>> for Box<[u8]> {
|
2018-10-29 11:15:22 +00:00
|
|
|
/// Converts a `Box<str>>` into a `Box<[u8]>`
|
|
|
|
///
|
|
|
|
/// This conversion does not allocate on the heap and happens in place.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```rust
|
|
|
|
/// // create a Box<str> which will be used to create a Box<[u8]>
|
|
|
|
/// let boxed: Box<str> = Box::from("hello");
|
|
|
|
/// let boxed_str: Box<[u8]> = Box::from(boxed);
|
|
|
|
///
|
|
|
|
/// // create a &[u8] which will be used to create a Box<[u8]>
|
|
|
|
/// let slice: &[u8] = &[104, 101, 108, 108, 111];
|
|
|
|
/// let boxed_slice = Box::from(slice);
|
|
|
|
///
|
|
|
|
/// assert_eq!(boxed_slice, boxed_str);
|
|
|
|
/// ```
|
2018-03-31 21:19:02 +00:00
|
|
|
#[inline]
|
2017-04-11 20:02:43 +00:00
|
|
|
fn from(s: Box<str>) -> Self {
|
2017-09-27 18:56:20 +00:00
|
|
|
unsafe { Box::from_raw(Box::into_raw(s) as *mut [u8]) }
|
2017-02-01 03:46:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-04 12:15:47 +00:00
|
|
|
#[unstable(feature = "boxed_slice_try_from", issue = "0")]
|
|
|
|
impl<T, const N: usize> TryFrom<Box<[T]>> for Box<[T; N]>
|
|
|
|
where
|
|
|
|
[T; N]: LengthAtMost32,
|
|
|
|
{
|
|
|
|
type Error = Box<[T]>;
|
|
|
|
|
|
|
|
fn try_from(boxed_slice: Box<[T]>) -> Result<Self, Self::Error> {
|
|
|
|
if boxed_slice.len() == N {
|
|
|
|
Ok(unsafe { Box::from_raw(Box::into_raw(boxed_slice) as *mut [T; N]) })
|
|
|
|
} else {
|
|
|
|
Err(boxed_slice)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-11 08:19:54 +00:00
|
|
|
impl Box<dyn Any> {
|
2014-06-26 01:18:13 +00:00
|
|
|
#[inline]
|
2015-03-30 23:43:04 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-04-24 21:34:57 +00:00
|
|
|
/// Attempt to downcast the box to a concrete type.
|
2016-07-09 17:57:08 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::any::Any;
|
|
|
|
///
|
2018-11-20 14:34:15 +00:00
|
|
|
/// fn print_if_string(value: Box<dyn Any>) {
|
2016-07-09 17:57:08 +00:00
|
|
|
/// if let Ok(string) = value.downcast::<String>() {
|
|
|
|
/// println!("String ({}): {}", string.len(), string);
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let my_string = "Hello World".to_string();
|
|
|
|
/// print_if_string(Box::new(my_string));
|
|
|
|
/// print_if_string(Box::new(0i8));
|
|
|
|
/// }
|
|
|
|
/// ```
|
2018-07-11 08:19:54 +00:00
|
|
|
pub fn downcast<T: Any>(self) -> Result<Box<T>, Box<dyn Any>> {
|
2014-06-26 01:18:13 +00:00
|
|
|
if self.is::<T>() {
|
|
|
|
unsafe {
|
2018-07-11 08:19:54 +00:00
|
|
|
let raw: *mut dyn Any = Box::into_raw(self);
|
2016-08-26 00:56:47 +00:00
|
|
|
Ok(Box::from_raw(raw as *mut T))
|
2014-06-26 01:18:13 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Err(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-11 08:19:54 +00:00
|
|
|
impl Box<dyn Any + Send> {
|
2015-02-17 10:17:19 +00:00
|
|
|
#[inline]
|
2015-03-30 23:43:04 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-04-24 21:34:57 +00:00
|
|
|
/// Attempt to downcast the box to a concrete type.
|
2016-07-09 17:57:08 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::any::Any;
|
|
|
|
///
|
2018-11-20 14:34:15 +00:00
|
|
|
/// fn print_if_string(value: Box<dyn Any + Send>) {
|
2016-07-09 17:57:08 +00:00
|
|
|
/// if let Ok(string) = value.downcast::<String>() {
|
|
|
|
/// println!("String ({}): {}", string.len(), string);
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let my_string = "Hello World".to_string();
|
|
|
|
/// print_if_string(Box::new(my_string));
|
|
|
|
/// print_if_string(Box::new(0i8));
|
|
|
|
/// }
|
|
|
|
/// ```
|
2018-07-11 08:19:54 +00:00
|
|
|
pub fn downcast<T: Any>(self) -> Result<Box<T>, Box<dyn Any + Send>> {
|
|
|
|
<Box<dyn Any>>::downcast(self).map_err(|s| unsafe {
|
2015-04-24 21:34:57 +00:00
|
|
|
// reapply the Send marker
|
2018-07-11 08:19:54 +00:00
|
|
|
Box::from_raw(Box::into_raw(s) as *mut (dyn Any + Send))
|
2015-04-24 21:34:57 +00:00
|
|
|
})
|
2015-02-17 10:17:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 17:15:42 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-20 23:45:07 +00:00
|
|
|
impl<T: fmt::Display + ?Sized> fmt::Display for Box<T> {
|
2019-02-02 11:48:12 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2015-01-20 23:45:07 +00:00
|
|
|
fmt::Display::fmt(&**self, f)
|
2014-12-20 08:09:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-20 23:45:07 +00:00
|
|
|
impl<T: fmt::Debug + ?Sized> fmt::Debug for Box<T> {
|
2019-02-02 11:48:12 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2015-01-20 23:45:07 +00:00
|
|
|
fmt::Debug::fmt(&**self, f)
|
2014-05-11 18:14:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-07 07:40:22 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2016-02-07 22:57:01 +00:00
|
|
|
impl<T: ?Sized> fmt::Pointer for Box<T> {
|
2019-02-02 11:48:12 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2015-04-07 07:40:22 +00:00
|
|
|
// It's not possible to extract the inner Uniq directly from the Box,
|
|
|
|
// instead we cast it to a *const which aliases the Unique
|
|
|
|
let ptr: *const T = &**self;
|
|
|
|
fmt::Pointer::fmt(&ptr, f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 21:16:49 +00:00
|
|
|
impl<T: ?Sized> Deref for Box<T> {
|
2015-01-01 19:53:20 +00:00
|
|
|
type Target = T;
|
|
|
|
|
2015-09-23 22:00:54 +00:00
|
|
|
fn deref(&self) -> &T {
|
|
|
|
&**self
|
|
|
|
}
|
2014-12-19 22:44:21 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 05:48:20 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-05 21:16:49 +00:00
|
|
|
impl<T: ?Sized> DerefMut for Box<T> {
|
2015-09-23 22:00:54 +00:00
|
|
|
fn deref_mut(&mut self) -> &mut T {
|
|
|
|
&mut **self
|
|
|
|
}
|
2014-12-19 22:44:21 +00:00
|
|
|
}
|
|
|
|
|
Stabilize `Rc`, `Arc` and `Pin` as method receivers
This lets you write methods using `self: Rc<Self>`, `self: Arc<Self>`, `self: Pin<&mut Self>`, `self: Pin<Box<Self>`, and other combinations involving `Pin` and another stdlib receiver type, without needing the `arbitrary_self_types`. Other user-created receiver types can be used, but they still require the feature flag to use.
This is implemented by introducing a new trait, `Receiver`, which the method receiver's type must implement if the `arbitrary_self_types` feature is not enabled. To keep composed receiver types such as `&Arc<Self>` unstable, the receiver type is also required to implement `Deref<Target=Self>` when the feature flag is not enabled.
This lets you use `self: Rc<Self>` and `self: Arc<Self>` in stable Rust, which was not allowed previously. It was agreed that they would be stabilized in #55786. `self: Pin<&Self>` and other pinned receiver types do not require the `arbitrary_self_types` feature, but they cannot be used on stable because `Pin` still requires the `pin` feature.
2018-11-20 16:50:50 +00:00
|
|
|
#[unstable(feature = "receiver_trait", issue = "0")]
|
|
|
|
impl<T: ?Sized> Receiver for Box<T> {}
|
|
|
|
|
2015-02-03 20:32:56 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<I: Iterator + ?Sized> Iterator for Box<I> {
|
|
|
|
type Item = I::Item;
|
2015-09-23 22:00:54 +00:00
|
|
|
fn next(&mut self) -> Option<I::Item> {
|
|
|
|
(**self).next()
|
|
|
|
}
|
|
|
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
|
|
|
(**self).size_hint()
|
|
|
|
}
|
2016-12-02 20:13:57 +00:00
|
|
|
fn nth(&mut self, n: usize) -> Option<I::Item> {
|
|
|
|
(**self).nth(n)
|
|
|
|
}
|
2015-02-03 20:32:56 +00:00
|
|
|
}
|
When possible without changing semantics, implement Iterator::last in terms of DoubleEndedIterator::next_back for types in liballoc and libcore.
Provided that the iterator has finite length and does not trigger user-provided code, this is safe.
What follows is a full list of the DoubleEndedIterators in liballoc/libcore and whether this optimization is safe, and if not, why not.
src/liballoc/boxed.rs
Box: Pass through to avoid defeating optimization of the underlying DoubleIterator implementation. This has no correctness impact.
src/liballoc/collections/binary_heap.rs
Iter: Pass through to avoid defeating optimizations on slice::Iter
IntoIter: Not safe, changes Drop order
Drain: Not safe, changes Drop order
src/liballoc/collections/btree/map.rs
Iter: Safe to call next_back, invokes no user defined code.
IterMut: ditto
IntoIter: Not safe, changes Drop order
Keys: Safe to call next_back, invokes no user defined code.
Values: ditto
ValuesMut: ditto
Range: ditto
RangeMut: ditto
src/liballoc/collections/btree/set.rs
Iter: Safe to call next_back, invokes no user defined code.
IntoIter: Not safe, changes Drop order
Range: Safe to call next_back, invokes no user defined code.
src/liballoc/collections/linked_list.rs
Iter: Safe to call next_back, invokes no user defined code.
IterMut: ditto
IntoIter: Not safe, changes Drop order
src/liballoc/collections/vec_deque.rs
Iter: Safe to call next_back, invokes no user defined code.
IterMut: ditto
IntoIter: Not safe, changes Drop order
Drain: ditto
src/liballoc/string.rs
Drain: Safe because return type is a primitive (char)
src/liballoc/vec.rs
IntoIter: Not safe, changes Drop order
Drain: ditto
Splice: ditto
src/libcore/ascii.rs
EscapeDefault: Safe because return type is a primitive (u8)
src/libcore/iter/adapters/chain.rs
Chain: Not safe, invokes user defined code (Iterator impl)
src/libcore/iter/adapters/flatten.rs
FlatMap: Not safe, invokes user defined code (Iterator impl)
Flatten: ditto
FlattenCompat: ditto
src/libcore/iter/adapters/mod.rs
Rev: Not safe, invokes user defined code (Iterator impl)
Copied: ditto
Cloned: Not safe, invokes user defined code (Iterator impl and T::clone)
Map: Not safe, invokes user defined code (Iterator impl + closure)
Filter: ditto
FilterMap: ditto
Enumerate: Not safe, invokes user defined code (Iterator impl)
Skip: ditto
Fuse: ditto
Inspect: ditto
src/libcore/iter/adapters/zip.rs
Zip: Not safe, invokes user defined code (Iterator impl)
src/libcore/iter/range.rs
ops::Range: Not safe, changes Drop order, but ALREADY HAS SPECIALIZATION
ops::RangeInclusive: ditto
src/libcore/iter/sources.rs
Repeat: Not safe, calling last should iloop.
Empty: No point, iterator is at most one item long.
Once: ditto
OnceWith: ditto
src/libcore/option.rs
Item: No point, iterator is at most one item long.
Iter: ditto
IterMut: ditto
IntoIter: ditto
src/libcore/result.rs
Iter: No point, iterator is at most one item long
IterMut: ditto
IntoIter: ditto
src/libcore/slice/mod.rs
Split: Not safe, invokes user defined closure
SplitMut: ditto
RSplit: ditto
RSplitMut: ditto
Windows: Safe, already has specialization
Chunks: ditto
ChunksMut: ditto
ChunksExact: ditto
ChunksExactMut: ditto
RChunks: ditto
RChunksMut: ditto
RChunksExact: ditto
RChunksExactMut: ditto
src/libcore/str/mod.rs
Chars: Safe, already has specialization
CharIndices: ditto
Bytes: ditto
Lines: Safe to call next_back, invokes no user defined code.
LinesAny: Deprecated
Everything that is generic over P: Pattern: Not safe because Pattern invokes user defined code.
SplitWhitespace: Safe to call next_back, invokes no user defined code.
SplitAsciiWhitespace: ditto
2019-07-02 20:45:29 +00:00
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<I: Iterator + Sized> Iterator for Box<I> {
|
|
|
|
fn last(self) -> Option<I::Item> where I: Sized {
|
|
|
|
(*self).last()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-03 20:32:56 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl<I: DoubleEndedIterator + ?Sized> DoubleEndedIterator for Box<I> {
|
2015-09-23 22:00:54 +00:00
|
|
|
fn next_back(&mut self) -> Option<I::Item> {
|
|
|
|
(**self).next_back()
|
|
|
|
}
|
2019-02-16 21:34:28 +00:00
|
|
|
fn nth_back(&mut self, n: usize) -> Option<I::Item> {
|
|
|
|
(**self).nth_back(n)
|
|
|
|
}
|
2015-01-19 14:48:05 +00:00
|
|
|
}
|
2015-02-03 20:32:56 +00:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2016-12-03 20:42:03 +00:00
|
|
|
impl<I: ExactSizeIterator + ?Sized> ExactSizeIterator for Box<I> {
|
|
|
|
fn len(&self) -> usize {
|
|
|
|
(**self).len()
|
|
|
|
}
|
|
|
|
fn is_empty(&self) -> bool {
|
|
|
|
(**self).is_empty()
|
|
|
|
}
|
|
|
|
}
|
2014-12-19 22:44:21 +00:00
|
|
|
|
2018-03-03 13:15:28 +00:00
|
|
|
#[stable(feature = "fused", since = "1.26.0")]
|
2016-08-13 18:42:36 +00:00
|
|
|
impl<I: FusedIterator + ?Sized> FusedIterator for Box<I> {}
|
|
|
|
|
2019-02-11 02:09:26 +00:00
|
|
|
#[stable(feature = "boxed_closure_impls", since = "1.35.0")]
|
2018-10-28 06:28:15 +00:00
|
|
|
impl<A, F: FnOnce<A> + ?Sized> FnOnce<A> for Box<F> {
|
|
|
|
type Output = <F as FnOnce<A>>::Output;
|
|
|
|
|
2019-02-11 01:34:24 +00:00
|
|
|
extern "rust-call" fn call_once(self, args: A) -> Self::Output {
|
2018-10-28 06:28:15 +00:00
|
|
|
<F as FnOnce<A>>::call_once(*self, args)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-11 02:09:26 +00:00
|
|
|
#[stable(feature = "boxed_closure_impls", since = "1.35.0")]
|
2018-10-28 06:28:15 +00:00
|
|
|
impl<A, F: FnMut<A> + ?Sized> FnMut<A> for Box<F> {
|
|
|
|
extern "rust-call" fn call_mut(&mut self, args: A) -> Self::Output {
|
|
|
|
<F as FnMut<A>>::call_mut(self, args)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-11 02:09:26 +00:00
|
|
|
#[stable(feature = "boxed_closure_impls", since = "1.35.0")]
|
2018-10-28 06:28:15 +00:00
|
|
|
impl<A, F: Fn<A> + ?Sized> Fn<A> for Box<F> {
|
|
|
|
extern "rust-call" fn call(&self, args: A) -> Self::Output {
|
|
|
|
<F as Fn<A>>::call(self, args)
|
|
|
|
}
|
|
|
|
}
|
2015-04-01 14:11:46 +00:00
|
|
|
|
2015-11-16 16:54:28 +00:00
|
|
|
#[unstable(feature = "coerce_unsized", issue = "27732")]
|
2015-11-23 02:32:40 +00:00
|
|
|
impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<Box<U>> for Box<T> {}
|
2015-07-27 05:12:00 +00:00
|
|
|
|
2018-10-04 03:40:21 +00:00
|
|
|
#[unstable(feature = "dispatch_from_dyn", issue = "0")]
|
|
|
|
impl<T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<Box<U>> for Box<T> {}
|
2018-09-20 07:18:00 +00:00
|
|
|
|
2018-11-11 09:45:16 +00:00
|
|
|
#[stable(feature = "boxed_slice_from_iter", since = "1.32.0")]
|
2018-11-10 10:43:39 +00:00
|
|
|
impl<A> FromIterator<A> for Box<[A]> {
|
|
|
|
fn from_iter<T: IntoIterator<Item = A>>(iter: T) -> Self {
|
|
|
|
iter.into_iter().collect::<Vec<_>>().into_boxed_slice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-27 05:12:00 +00:00
|
|
|
#[stable(feature = "box_slice_clone", since = "1.3.0")]
|
|
|
|
impl<T: Clone> Clone for Box<[T]> {
|
|
|
|
fn clone(&self) -> Self {
|
2015-10-12 05:11:59 +00:00
|
|
|
let mut new = BoxBuilder {
|
|
|
|
data: RawVec::with_capacity(self.len()),
|
|
|
|
len: 0,
|
|
|
|
};
|
2015-07-27 05:12:00 +00:00
|
|
|
|
|
|
|
let mut target = new.data.ptr();
|
|
|
|
|
|
|
|
for item in self.iter() {
|
|
|
|
unsafe {
|
|
|
|
ptr::write(target, item.clone());
|
|
|
|
target = target.offset(1);
|
|
|
|
};
|
|
|
|
|
|
|
|
new.len += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return unsafe { new.into_box() };
|
|
|
|
|
|
|
|
// Helper type for responding to panics correctly.
|
|
|
|
struct BoxBuilder<T> {
|
|
|
|
data: RawVec<T>,
|
|
|
|
len: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> BoxBuilder<T> {
|
|
|
|
unsafe fn into_box(self) -> Box<[T]> {
|
|
|
|
let raw = ptr::read(&self.data);
|
|
|
|
mem::forget(self);
|
|
|
|
raw.into_box()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Drop for BoxBuilder<T> {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
let mut data = self.data.ptr();
|
2018-08-20 02:16:22 +00:00
|
|
|
let max = unsafe { data.add(self.len) };
|
2015-07-27 05:12:00 +00:00
|
|
|
|
|
|
|
while data != max {
|
|
|
|
unsafe {
|
|
|
|
ptr::read(data);
|
|
|
|
data = data.offset(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-10 01:07:29 +00:00
|
|
|
#[stable(feature = "box_borrow", since = "1.1.0")]
|
2015-08-19 14:03:59 +00:00
|
|
|
impl<T: ?Sized> borrow::Borrow<T> for Box<T> {
|
2015-09-23 22:00:54 +00:00
|
|
|
fn borrow(&self) -> &T {
|
|
|
|
&**self
|
|
|
|
}
|
2015-08-19 14:03:59 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 01:07:29 +00:00
|
|
|
#[stable(feature = "box_borrow", since = "1.1.0")]
|
2015-08-19 14:03:59 +00:00
|
|
|
impl<T: ?Sized> borrow::BorrowMut<T> for Box<T> {
|
2015-09-23 22:00:54 +00:00
|
|
|
fn borrow_mut(&mut self) -> &mut T {
|
|
|
|
&mut **self
|
|
|
|
}
|
2015-08-19 14:03:59 +00:00
|
|
|
}
|
2015-09-17 06:17:39 +00:00
|
|
|
|
|
|
|
#[stable(since = "1.5.0", feature = "smart_ptr_as_ref")]
|
|
|
|
impl<T: ?Sized> AsRef<T> for Box<T> {
|
2015-10-12 05:11:59 +00:00
|
|
|
fn as_ref(&self) -> &T {
|
|
|
|
&**self
|
|
|
|
}
|
2015-09-17 06:17:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(since = "1.5.0", feature = "smart_ptr_as_ref")]
|
|
|
|
impl<T: ?Sized> AsMut<T> for Box<T> {
|
2015-10-12 05:11:59 +00:00
|
|
|
fn as_mut(&mut self) -> &mut T {
|
|
|
|
&mut **self
|
|
|
|
}
|
2015-09-17 06:17:39 +00:00
|
|
|
}
|
2017-07-05 22:02:30 +00:00
|
|
|
|
2018-09-05 21:47:10 +00:00
|
|
|
/* Nota bene
|
|
|
|
*
|
2018-09-06 19:31:06 +00:00
|
|
|
* We could have chosen not to add this impl, and instead have written a
|
2018-09-05 21:47:10 +00:00
|
|
|
* function of Pin<Box<T>> to Pin<T>. Such a function would not be sound,
|
|
|
|
* because Box<T> implements Unpin even when T does not, as a result of
|
|
|
|
* this impl.
|
|
|
|
*
|
|
|
|
* We chose this API instead of the alternative for a few reasons:
|
|
|
|
* - Logically, it is helpful to understand pinning in regard to the
|
|
|
|
* memory region being pointed to. For this reason none of the
|
|
|
|
* standard library pointer types support projecting through a pin
|
|
|
|
* (Box<T> is the only pointer type in std for which this would be
|
|
|
|
* safe.)
|
2018-09-06 19:31:06 +00:00
|
|
|
* - It is in practice very useful to have Box<T> be unconditionally
|
2018-09-05 21:47:10 +00:00
|
|
|
* Unpin because of trait objects, for which the structural auto
|
2018-11-27 02:59:49 +00:00
|
|
|
* trait functionality does not apply (e.g., Box<dyn Foo> would
|
2018-09-05 21:47:10 +00:00
|
|
|
* otherwise not be Unpin).
|
|
|
|
*
|
|
|
|
* Another type with the same semantics as Box but only a conditional
|
|
|
|
* implementation of `Unpin` (where `T: Unpin`) would be valid/safe, and
|
|
|
|
* could have a method to project a Pin<T> from it.
|
|
|
|
*/
|
2018-12-18 02:14:07 +00:00
|
|
|
#[stable(feature = "pin", since = "1.33.0")]
|
2018-08-31 23:54:59 +00:00
|
|
|
impl<T: ?Sized> Unpin for Box<T> { }
|
|
|
|
|
2017-07-10 16:33:54 +00:00
|
|
|
#[unstable(feature = "generator_trait", issue = "43122")]
|
2018-10-04 18:49:38 +00:00
|
|
|
impl<G: ?Sized + Generator + Unpin> Generator for Box<G> {
|
|
|
|
type Yield = G::Yield;
|
|
|
|
type Return = G::Return;
|
|
|
|
|
|
|
|
fn resume(mut self: Pin<&mut Self>) -> GeneratorState<Self::Yield, Self::Return> {
|
|
|
|
G::resume(Pin::new(&mut *self))
|
2017-07-05 22:02:30 +00:00
|
|
|
}
|
|
|
|
}
|
2018-03-15 19:55:37 +00:00
|
|
|
|
2018-11-06 18:47:18 +00:00
|
|
|
#[unstable(feature = "generator_trait", issue = "43122")]
|
|
|
|
impl<G: ?Sized + Generator> Generator for Pin<Box<G>> {
|
|
|
|
type Yield = G::Yield;
|
|
|
|
type Return = G::Return;
|
|
|
|
|
|
|
|
fn resume(mut self: Pin<&mut Self>) -> GeneratorState<Self::Yield, Self::Return> {
|
|
|
|
G::resume((*self).as_mut())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-05 21:14:19 +00:00
|
|
|
#[stable(feature = "futures_api", since = "1.36.0")]
|
2018-06-30 19:16:44 +00:00
|
|
|
impl<F: ?Sized + Future + Unpin> Future for Box<F> {
|
2018-06-08 20:45:27 +00:00
|
|
|
type Output = F::Output;
|
|
|
|
|
2019-03-11 23:56:00 +00:00
|
|
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
F::poll(Pin::new(&mut *self), cx)
|
2018-08-10 07:10:35 +00:00
|
|
|
}
|
|
|
|
}
|