2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-07-15 01:11:41 +00:00
async-std/src/collections/vec_deque/mod.rs
2019-10-04 10:09:06 -04:00

7 lines
156 B
Rust

//! The Rust double-ended queue, implemented with a growable ring buffer.
mod extend;
mod from_stream;
#[doc(inline)]
pub use std::collections::VecDeque;