]> git.lizzy.rs Git - rust.git/blob - src/liballoc/prelude/v1.rs
rustc_span: return an impl Iterator instead of a Vec from macro_backtrace.
[rust.git] / src / liballoc / prelude / v1.rs
1 //! The first version of the prelude of `alloc` crate.
2 //!
3 //! See the [module-level documentation](../index.html) for more.
4
5 #![unstable(feature = "alloc_prelude", issue = "58935")]
6
7 #[unstable(feature = "alloc_prelude", issue = "58935")]
8 pub use crate::borrow::ToOwned;
9 #[unstable(feature = "alloc_prelude", issue = "58935")]
10 pub use crate::boxed::Box;
11 #[unstable(feature = "alloc_prelude", issue = "58935")]
12 pub use crate::string::{String, ToString};
13 #[unstable(feature = "alloc_prelude", issue = "58935")]
14 pub use crate::vec::Vec;