1 2 3 4 5 6 7 8 9
//! The Rust core allocation and collections library //! //! This library provides smart pointers and collections for managing //! heap-allocated values. mod from_stream; #[doc(inline)] pub use std::vec::Vec;
1 2 3 4 5 6 7 8 9
//! The Rust core allocation and collections library //! //! This library provides smart pointers and collections for managing //! heap-allocated values. mod from_stream; #[doc(inline)] pub use std::vec::Vec;