]> git.lizzy.rs Git - rust.git/blob - src/liballoc/prelude/v1.rs
Rollup merge of #62074 - wizAmit:feature/mut_chunks_nth_back, r=scottmcm
[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")] pub use crate::borrow::ToOwned;
8 #[unstable(feature = "alloc_prelude", issue = "58935")] pub use crate::boxed::Box;
9 #[unstable(feature = "alloc_prelude", issue = "58935")] pub use crate::string::{String, ToString};
10 #[unstable(feature = "alloc_prelude", issue = "58935")] pub use crate::vec::Vec;