async-std/src/vec/mod.rs

11 lines
223 B
Rust
Raw Normal View History

//! The Rust core allocation and collections library
//!
//! This library provides smart pointers and collections for managing
//! heap-allocated values.
2019-09-18 03:00:46 +00:00
mod extend;
mod from_stream;
#[doc(inline)]
pub use std::vec::Vec;