2015-01-07 20:37:07 +00:00
|
|
|
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
|
2014-05-13 21:58:29 +00:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-01-22 17:07:23 +00:00
|
|
|
//! A pointer type for heap allocation.
|
|
|
|
//!
|
2015-06-09 18:18:03 +00:00
|
|
|
//! `Box<T>`, casually referred to as a 'box', provides the simplest form of
|
|
|
|
//! 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
|
|
|
|
//!
|
|
|
|
//! Creating a box:
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! let x = Box::new(5);
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! 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
|
|
|
|
//! for a `Cons`. By introducing a `Box`, which has a defined size, we know how
|
|
|
|
//! big `Cons` needs to be.
|
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
|
|
|
|
2017-06-03 21:54:08 +00:00
|
|
|
use heap::{Heap, Layout, Alloc};
|
2015-07-27 05:12:00 +00:00
|
|
|
use raw_vec::RawVec;
|
2015-01-27 00:22:12 +00:00
|
|
|
|
2015-01-01 06:13:08 +00:00
|
|
|
use core::any::Any;
|
2015-08-19 14:03:59 +00:00
|
|
|
use core::borrow;
|
2015-02-03 20:32:56 +00:00
|
|
|
use core::cmp::Ordering;
|
2014-05-13 23:10:05 +00:00
|
|
|
use core::fmt;
|
2017-08-21 14:15:02 +00:00
|
|
|
use core::hash::{self, Hash, Hasher};
|
2016-08-13 18:42:36 +00:00
|
|
|
use core::iter::FusedIterator;
|
2015-01-27 00:22:12 +00:00
|
|
|
use core::marker::{self, Unsize};
|
2014-05-13 23:10:05 +00:00
|
|
|
use core::mem;
|
2017-07-19 23:16:12 +00:00
|
|
|
use core::ops::{CoerceUnsized, Deref, DerefMut, Generator, GeneratorState};
|
2016-05-27 20:55:16 +00:00
|
|
|
use core::ops::{BoxPlace, Boxed, InPlace, Place, Placer};
|
2017-12-22 18:24:07 +00:00
|
|
|
use core::ptr::{self, NonNull, Unique};
|
2015-11-04 12:03:33 +00:00
|
|
|
use core::convert::From;
|
2017-04-11 20:02:43 +00:00
|
|
|
use str::from_boxed_utf8_unchecked;
|
2014-05-13 21:58:29 +00:00
|
|
|
|
2015-02-18 04:48:07 +00:00
|
|
|
/// A value that represents the heap. This is the default place that the `box`
|
|
|
|
/// keyword allocates into when no place is supplied.
|
2014-05-13 21:58:29 +00:00
|
|
|
///
|
|
|
|
/// The following two examples are equivalent:
|
|
|
|
///
|
2015-03-13 02:42:38 +00:00
|
|
|
/// ```
|
2015-07-27 14:50:19 +00:00
|
|
|
/// #![feature(box_heap)]
|
|
|
|
///
|
2015-07-23 13:59:58 +00:00
|
|
|
/// #![feature(box_syntax, placement_in_syntax)]
|
2014-08-04 10:48:39 +00:00
|
|
|
/// use std::boxed::HEAP;
|
2014-06-18 08:04:35 +00:00
|
|
|
///
|
2015-01-08 02:53:58 +00:00
|
|
|
/// fn main() {
|
2015-09-24 15:00:08 +00:00
|
|
|
/// let foo: Box<i32> = in HEAP { 5 };
|
2015-01-22 17:07:23 +00:00
|
|
|
/// let foo = box 5;
|
2015-01-08 02:53:58 +00:00
|
|
|
/// }
|
2014-08-04 10:48:39 +00:00
|
|
|
/// ```
|
2015-06-09 18:52:41 +00:00
|
|
|
#[unstable(feature = "box_heap",
|
2015-08-13 05:19:08 +00:00
|
|
|
reason = "may be renamed; uncertain about custom allocator design",
|
|
|
|
issue = "27779")]
|
2015-11-23 02:32:40 +00:00
|
|
|
pub const HEAP: ExchangeHeapSingleton = ExchangeHeapSingleton { _force_singleton: () };
|
2015-01-27 00:22:12 +00:00
|
|
|
|
|
|
|
/// This the singleton type used solely for `boxed::HEAP`.
|
2015-07-08 15:33:13 +00:00
|
|
|
#[unstable(feature = "box_heap",
|
2015-08-13 05:19:08 +00:00
|
|
|
reason = "may be renamed; uncertain about custom allocator design",
|
|
|
|
issue = "27779")]
|
2017-06-13 22:52:59 +00:00
|
|
|
#[allow(missing_debug_implementations)]
|
2015-01-27 00:22:12 +00:00
|
|
|
#[derive(Copy, Clone)]
|
2015-09-23 22:00:54 +00:00
|
|
|
pub struct ExchangeHeapSingleton {
|
|
|
|
_force_singleton: (),
|
|
|
|
}
|
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>);
|
|
|
|
|
|
|
|
/// `IntermediateBox` represents uninitialized backing storage for `Box`.
|
|
|
|
///
|
|
|
|
/// FIXME (pnkfelix): Ideally we would just reuse `Box<T>` instead of
|
|
|
|
/// introducing a separate `IntermediateBox<T>`; but then you hit
|
|
|
|
/// issues when you e.g. attempt to destructure an instance of `Box`,
|
|
|
|
/// since it is a lang item and so it gets special handling by the
|
|
|
|
/// compiler. Easier just to make this parallel type for now.
|
|
|
|
///
|
|
|
|
/// FIXME (pnkfelix): Currently the `box` protocol only supports
|
|
|
|
/// creating instances of sized types. This IntermediateBox is
|
|
|
|
/// designed to be forward-compatible with a future protocol that
|
|
|
|
/// supports creating instances of unsized types; that is why the type
|
|
|
|
/// parameter has the `?Sized` generalization marker, and is also why
|
|
|
|
/// this carries an explicit size. However, it probably does not need
|
|
|
|
/// to carry the explicit alignment; that is just a work-around for
|
|
|
|
/// the fact that the `align_of` intrinsic currently requires the
|
|
|
|
/// input type to be Sized (which I do not think is strictly
|
|
|
|
/// necessary).
|
2015-08-13 05:19:08 +00:00
|
|
|
#[unstable(feature = "placement_in",
|
|
|
|
reason = "placement box design is still being worked out.",
|
|
|
|
issue = "27779")]
|
2017-06-13 22:52:59 +00:00
|
|
|
#[allow(missing_debug_implementations)]
|
2015-09-23 22:00:54 +00:00
|
|
|
pub struct IntermediateBox<T: ?Sized> {
|
2015-01-27 00:22:12 +00:00
|
|
|
ptr: *mut u8,
|
2017-06-03 21:54:08 +00:00
|
|
|
layout: Layout,
|
2015-01-27 00:22:12 +00:00
|
|
|
marker: marker::PhantomData<*mut T>,
|
|
|
|
}
|
|
|
|
|
2015-11-16 16:54:28 +00:00
|
|
|
#[unstable(feature = "placement_in",
|
|
|
|
reason = "placement box design is still being worked out.",
|
|
|
|
issue = "27779")]
|
2015-01-27 00:22:12 +00:00
|
|
|
impl<T> Place<T> for IntermediateBox<T> {
|
|
|
|
fn pointer(&mut self) -> *mut T {
|
2015-10-18 00:15:26 +00:00
|
|
|
self.ptr as *mut T
|
2015-01-27 00:22:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn finalize<T>(b: IntermediateBox<T>) -> Box<T> {
|
|
|
|
let p = b.ptr as *mut T;
|
|
|
|
mem::forget(b);
|
2017-10-10 17:55:21 +00:00
|
|
|
Box::from_raw(p)
|
2015-01-27 00:22:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn make_place<T>() -> IntermediateBox<T> {
|
2017-06-03 21:54:08 +00:00
|
|
|
let layout = Layout::new::<T>();
|
2015-01-27 00:22:12 +00:00
|
|
|
|
2017-06-03 21:54:08 +00:00
|
|
|
let p = if layout.size() == 0 {
|
2017-05-04 18:48:58 +00:00
|
|
|
mem::align_of::<T>() as *mut u8
|
2015-01-27 00:22:12 +00:00
|
|
|
} else {
|
2017-06-03 21:54:08 +00:00
|
|
|
unsafe {
|
|
|
|
Heap.alloc(layout.clone()).unwrap_or_else(|err| {
|
|
|
|
Heap.oom(err)
|
|
|
|
})
|
2015-01-27 00:22:12 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-10-12 05:11:59 +00:00
|
|
|
IntermediateBox {
|
|
|
|
ptr: p,
|
2017-08-07 05:54:09 +00:00
|
|
|
layout,
|
2015-10-12 05:11:59 +00:00
|
|
|
marker: marker::PhantomData,
|
|
|
|
}
|
2015-01-27 00:22:12 +00:00
|
|
|
}
|
|
|
|
|
2015-11-16 16:54:28 +00:00
|
|
|
#[unstable(feature = "placement_in",
|
|
|
|
reason = "placement box design is still being worked out.",
|
|
|
|
issue = "27779")]
|
2015-01-27 00:22:12 +00:00
|
|
|
impl<T> BoxPlace<T> for IntermediateBox<T> {
|
2015-09-23 22:00:54 +00:00
|
|
|
fn make_place() -> IntermediateBox<T> {
|
|
|
|
make_place()
|
|
|
|
}
|
2015-01-27 00:22:12 +00:00
|
|
|
}
|
|
|
|
|
2015-11-16 16:54:28 +00:00
|
|
|
#[unstable(feature = "placement_in",
|
|
|
|
reason = "placement box design is still being worked out.",
|
|
|
|
issue = "27779")]
|
2015-01-27 00:22:12 +00:00
|
|
|
impl<T> InPlace<T> for IntermediateBox<T> {
|
|
|
|
type Owner = Box<T>;
|
2015-09-23 22:00:54 +00:00
|
|
|
unsafe fn finalize(self) -> Box<T> {
|
|
|
|
finalize(self)
|
|
|
|
}
|
2015-01-27 00:22:12 +00:00
|
|
|
}
|
|
|
|
|
2015-11-16 16:54:28 +00:00
|
|
|
#[unstable(feature = "placement_new_protocol", issue = "27779")]
|
2015-01-27 00:22:12 +00:00
|
|
|
impl<T> Boxed for Box<T> {
|
|
|
|
type Data = T;
|
|
|
|
type Place = IntermediateBox<T>;
|
2015-09-23 22:00:54 +00:00
|
|
|
unsafe fn finalize(b: IntermediateBox<T>) -> Box<T> {
|
|
|
|
finalize(b)
|
|
|
|
}
|
2015-01-27 00:22:12 +00:00
|
|
|
}
|
|
|
|
|
2015-11-16 16:54:28 +00:00
|
|
|
#[unstable(feature = "placement_in",
|
|
|
|
reason = "placement box design is still being worked out.",
|
|
|
|
issue = "27779")]
|
2015-01-27 00:22:12 +00:00
|
|
|
impl<T> Placer<T> for ExchangeHeapSingleton {
|
|
|
|
type Place = IntermediateBox<T>;
|
|
|
|
|
|
|
|
fn make_place(self) -> IntermediateBox<T> {
|
|
|
|
make_place()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-16 16:54:28 +00:00
|
|
|
#[unstable(feature = "placement_in",
|
|
|
|
reason = "placement box design is still being worked out.",
|
|
|
|
issue = "27779")]
|
2015-01-27 00:22:12 +00:00
|
|
|
impl<T: ?Sized> Drop for IntermediateBox<T> {
|
|
|
|
fn drop(&mut self) {
|
2017-06-03 21:54:08 +00:00
|
|
|
if self.layout.size() > 0 {
|
|
|
|
unsafe {
|
|
|
|
Heap.dealloc(self.ptr, self.layout.clone())
|
|
|
|
}
|
2015-01-27 00:22:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-13 21:58:29 +00:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
/// the destructor of `T` and free the allocated memory. Since the
|
|
|
|
/// way `Box` allocates and releases memory is unspecified, the
|
|
|
|
/// only valid pointer to pass to this function is the one taken
|
2016-09-19 11:01:59 +00:00
|
|
|
/// from another `Box` via the [`Box::into_raw`] function.
|
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
|
|
|
///
|
2016-09-19 11:01:59 +00:00
|
|
|
/// [`Box::into_raw`]: struct.Box.html#method.into_raw
|
|
|
|
///
|
2016-07-09 17:57:08 +00:00
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// let x = Box::new(5);
|
|
|
|
/// let ptr = Box::into_raw(x);
|
|
|
|
/// let x = unsafe { Box::from_raw(ptr) };
|
|
|
|
/// ```
|
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
|
|
|
}
|
|
|
|
|
2015-06-11 02:14:35 +00:00
|
|
|
/// Consumes the `Box`, returning the wrapped raw pointer.
|
|
|
|
///
|
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
|
|
|
|
/// caller should properly destroy `T` and release the memory. The
|
|
|
|
/// proper way to do so is to convert the raw pointer back into a
|
2016-09-19 11:01:59 +00:00
|
|
|
/// `Box` with the [`Box::from_raw`] function.
|
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.
|
|
|
|
///
|
2016-09-19 11:01:59 +00:00
|
|
|
/// [`Box::from_raw`]: struct.Box.html#method.from_raw
|
|
|
|
///
|
2015-06-11 02:14:35 +00:00
|
|
|
/// # Examples
|
2015-07-27 14:50:19 +00:00
|
|
|
///
|
2015-09-10 20:26:44 +00:00
|
|
|
/// ```
|
2016-07-09 17:57:08 +00:00
|
|
|
/// let x = Box::new(5);
|
|
|
|
/// let ptr = Box::into_raw(x);
|
2015-06-11 02:14:35 +00:00
|
|
|
/// ```
|
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
|
2017-12-27 21:53:27 +00:00
|
|
|
/// proper way to do so is to convert the `NonNull<T>` pointer
|
|
|
|
/// 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
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// fn main() {
|
|
|
|
/// let x = Box::new(5);
|
2017-12-27 21:56:06 +00:00
|
|
|
/// let ptr = Box::into_raw_non_null(x);
|
2017-07-14 10:47:06 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2018-01-10 08:25:11 +00:00
|
|
|
#[unstable(feature = "nonnull", issue = "27730")]
|
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]
|
2017-07-14 10:47:06 +00:00
|
|
|
pub fn into_unique(b: Box<T>) -> Unique<T> {
|
2017-11-29 20:14:03 +00:00
|
|
|
let unique = b.0;
|
|
|
|
mem::forget(b);
|
|
|
|
unique
|
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,
|
|
|
|
/// `&'a mut T`. Here, the lifetime `'a` 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
|
|
|
/// #![feature(box_leak)]
|
|
|
|
///
|
|
|
|
/// 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
|
|
|
/// #![feature(box_leak)]
|
|
|
|
///
|
|
|
|
/// 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
|
|
|
/// ```
|
|
|
|
#[unstable(feature = "box_leak", reason = "needs an FCP to stabilize",
|
2017-11-22 06:21:30 +00:00
|
|
|
issue = "46179")]
|
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) }
|
|
|
|
}
|
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();
|
|
|
|
/// ```
|
2015-09-23 22:03:05 +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
|
|
|
}
|
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);
|
|
|
|
///
|
|
|
|
/// y.clone_from(&x);
|
|
|
|
///
|
|
|
|
/// assert_eq!(*y, 5);
|
|
|
|
/// ```
|
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 {
|
|
|
|
let len = self.len();
|
|
|
|
let buf = RawVec::with_capacity(len);
|
|
|
|
unsafe {
|
|
|
|
ptr::copy_nonoverlapping(self.as_ptr(), buf.ptr(), len);
|
2017-04-11 20:02:43 +00:00
|
|
|
from_boxed_utf8_unchecked(buf.into_box())
|
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> {
|
|
|
|
fn hash<H: hash::Hasher>(&self, state: &mut H) {
|
|
|
|
(**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> {
|
|
|
|
fn from(t: T) -> Self {
|
|
|
|
Box::new(t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-01 03:46:16 +00:00
|
|
|
#[stable(feature = "box_from_slice", since = "1.17.0")]
|
|
|
|
impl<'a, T: Copy> From<&'a [T]> for Box<[T]> {
|
|
|
|
fn from(slice: &'a [T]) -> Box<[T]> {
|
|
|
|
let mut boxed = unsafe { RawVec::with_capacity(slice.len()).into_box() };
|
|
|
|
boxed.copy_from_slice(slice);
|
|
|
|
boxed
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "box_from_slice", since = "1.17.0")]
|
|
|
|
impl<'a> From<&'a str> for Box<str> {
|
|
|
|
fn from(s: &'a 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]> {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-30 23:43:04 +00:00
|
|
|
impl Box<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;
|
|
|
|
///
|
|
|
|
/// fn print_if_string(value: Box<Any>) {
|
|
|
|
/// 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));
|
|
|
|
/// }
|
|
|
|
/// ```
|
2015-03-30 23:43:04 +00:00
|
|
|
pub fn downcast<T: Any>(self) -> Result<Box<T>, Box<Any>> {
|
2014-06-26 01:18:13 +00:00
|
|
|
if self.is::<T>() {
|
|
|
|
unsafe {
|
2016-08-26 00:56:47 +00:00
|
|
|
let raw: *mut Any = Box::into_raw(self);
|
|
|
|
Ok(Box::from_raw(raw as *mut T))
|
2014-06-26 01:18:13 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Err(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-24 21:34:57 +00:00
|
|
|
impl Box<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;
|
|
|
|
///
|
|
|
|
/// fn print_if_string(value: Box<Any + Send>) {
|
|
|
|
/// 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));
|
|
|
|
/// }
|
|
|
|
/// ```
|
2015-04-24 21:34:57 +00:00
|
|
|
pub fn downcast<T: Any>(self) -> Result<Box<T>, Box<Any + Send>> {
|
|
|
|
<Box<Any>>::downcast(self).map_err(|s| unsafe {
|
|
|
|
// reapply the Send marker
|
2017-10-10 17:55:21 +00:00
|
|
|
Box::from_raw(Box::into_raw(s) as *mut (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> {
|
2014-05-11 18:14:14 +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> {
|
2014-12-20 08:09:35 +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> {
|
2015-04-07 07:40:22 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
#[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()
|
|
|
|
}
|
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
|
|
|
|
2016-08-13 18:42:36 +00:00
|
|
|
#[unstable(feature = "fused", issue = "35602")]
|
|
|
|
impl<I: FusedIterator + ?Sized> FusedIterator for Box<I> {}
|
|
|
|
|
2015-04-01 14:11:46 +00:00
|
|
|
|
|
|
|
/// `FnBox` is a version of the `FnOnce` intended for use with boxed
|
|
|
|
/// closure objects. The idea is that where one would normally store a
|
|
|
|
/// `Box<FnOnce()>` in a data structure, you should use
|
|
|
|
/// `Box<FnBox()>`. The two traits behave essentially the same, except
|
|
|
|
/// that a `FnBox` closure can only be called if it is boxed. (Note
|
|
|
|
/// that `FnBox` may be deprecated in the future if `Box<FnOnce()>`
|
|
|
|
/// closures become directly usable.)
|
|
|
|
///
|
2017-08-24 15:33:36 +00:00
|
|
|
/// # Examples
|
2015-04-01 14:11:46 +00:00
|
|
|
///
|
|
|
|
/// Here is a snippet of code which creates a hashmap full of boxed
|
|
|
|
/// once closures and then removes them one by one, calling each
|
|
|
|
/// closure as it is removed. Note that the type of the closures
|
|
|
|
/// stored in the map is `Box<FnBox() -> i32>` and not `Box<FnOnce()
|
|
|
|
/// -> i32>`.
|
|
|
|
///
|
|
|
|
/// ```
|
2015-06-10 20:33:52 +00:00
|
|
|
/// #![feature(fnbox)]
|
2015-04-01 14:11:46 +00:00
|
|
|
///
|
|
|
|
/// use std::boxed::FnBox;
|
|
|
|
/// use std::collections::HashMap;
|
|
|
|
///
|
|
|
|
/// fn make_map() -> HashMap<i32, Box<FnBox() -> i32>> {
|
|
|
|
/// let mut map: HashMap<i32, Box<FnBox() -> i32>> = HashMap::new();
|
|
|
|
/// map.insert(1, Box::new(|| 22));
|
|
|
|
/// map.insert(2, Box::new(|| 44));
|
|
|
|
/// map
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let mut map = make_map();
|
|
|
|
/// for i in &[1, 2] {
|
|
|
|
/// let f = map.remove(&i).unwrap();
|
|
|
|
/// assert_eq!(f(), i * 22);
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
#[rustc_paren_sugar]
|
2016-05-12 14:59:37 +00:00
|
|
|
#[unstable(feature = "fnbox",
|
2016-12-08 18:14:35 +00:00
|
|
|
reason = "will be deprecated if and when `Box<FnOnce>` becomes usable", issue = "28796")]
|
2015-04-01 14:11:46 +00:00
|
|
|
pub trait FnBox<A> {
|
|
|
|
type Output;
|
|
|
|
|
2015-04-01 15:12:30 +00:00
|
|
|
fn call_box(self: Box<Self>, args: A) -> Self::Output;
|
2015-04-01 14:11:46 +00:00
|
|
|
}
|
|
|
|
|
2016-05-12 14:59:37 +00:00
|
|
|
#[unstable(feature = "fnbox",
|
2016-12-08 18:14:35 +00:00
|
|
|
reason = "will be deprecated if and when `Box<FnOnce>` becomes usable", issue = "28796")]
|
2016-05-27 20:55:16 +00:00
|
|
|
impl<A, F> FnBox<A> for F
|
|
|
|
where F: FnOnce<A>
|
2015-04-01 14:11:46 +00:00
|
|
|
{
|
|
|
|
type Output = F::Output;
|
|
|
|
|
2015-04-01 15:12:30 +00:00
|
|
|
fn call_box(self: Box<F>, args: A) -> F::Output {
|
2015-04-01 14:11:46 +00:00
|
|
|
self.call_once(args)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-12 14:59:37 +00:00
|
|
|
#[unstable(feature = "fnbox",
|
2016-12-08 18:14:35 +00:00
|
|
|
reason = "will be deprecated if and when `Box<FnOnce>` becomes usable", issue = "28796")]
|
2015-11-23 02:32:40 +00:00
|
|
|
impl<'a, A, R> FnOnce<A> for Box<FnBox<A, Output = R> + 'a> {
|
2015-04-01 14:11:46 +00:00
|
|
|
type Output = R;
|
|
|
|
|
|
|
|
extern "rust-call" fn call_once(self, args: A) -> R {
|
|
|
|
self.call_box(args)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-12 14:59:37 +00:00
|
|
|
#[unstable(feature = "fnbox",
|
2016-12-08 18:14:35 +00:00
|
|
|
reason = "will be deprecated if and when `Box<FnOnce>` becomes usable", issue = "28796")]
|
2015-11-23 02:32:40 +00:00
|
|
|
impl<'a, A, R> FnOnce<A> for Box<FnBox<A, Output = R> + Send + 'a> {
|
2015-04-01 14:11:46 +00:00
|
|
|
type Output = R;
|
|
|
|
|
|
|
|
extern "rust-call" fn call_once(self, args: A) -> R {
|
|
|
|
self.call_box(args)
|
|
|
|
}
|
|
|
|
}
|
2015-04-14 23:57:29 +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
|
|
|
|
|
|
|
#[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();
|
|
|
|
let max = unsafe { data.offset(self.len as isize) };
|
|
|
|
|
|
|
|
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
|
|
|
|
2017-07-10 16:33:54 +00:00
|
|
|
#[unstable(feature = "generator_trait", issue = "43122")]
|
2017-07-11 19:57:05 +00:00
|
|
|
impl<T> Generator for Box<T>
|
|
|
|
where T: Generator + ?Sized
|
2017-07-05 22:02:30 +00:00
|
|
|
{
|
|
|
|
type Yield = T::Yield;
|
|
|
|
type Return = T::Return;
|
2017-07-19 23:16:12 +00:00
|
|
|
fn resume(&mut self) -> GeneratorState<Self::Yield, Self::Return> {
|
2017-07-11 19:57:05 +00:00
|
|
|
(**self).resume()
|
2017-07-05 22:02:30 +00:00
|
|
|
}
|
|
|
|
}
|