You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
async-std/src/vec/mod.rs

12 lines
240 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;
#[allow(unused)]
#[doc(inline)]
pub use std::vec::Vec;