async-std/src/vec/mod.rs
2019-09-19 18:33:25 +09:00

10 lines
223 B
Rust

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