2019-03-05 09:58:47 +01:00
|
|
|
//! The first version of the prelude of `alloc` crate.
|
2018-07-07 00:43:11 +02:00
|
|
|
//!
|
2019-03-05 09:58:47 +01:00
|
|
|
//! See the [module-level documentation](../index.html) for more.
|
2018-07-07 00:43:11 +02:00
|
|
|
|
2019-03-05 11:47:52 +01:00
|
|
|
#![unstable(feature = "alloc_prelude", issue = "58935")]
|
2018-07-07 00:43:11 +02:00
|
|
|
|
2019-11-29 19:30:49 -08:00
|
|
|
#[unstable(feature = "alloc_prelude", issue = "58935")]
|
|
|
|
|
pub use crate::borrow::ToOwned;
|
|
|
|
|
#[unstable(feature = "alloc_prelude", issue = "58935")]
|
|
|
|
|
pub use crate::boxed::Box;
|
|
|
|
|
#[unstable(feature = "alloc_prelude", issue = "58935")]
|
|
|
|
|
pub use crate::string::{String, ToString};
|
|
|
|
|
#[unstable(feature = "alloc_prelude", issue = "58935")]
|
|
|
|
|
pub use crate::vec::Vec;
|