mirror of
https://github.com/async-rs/async-std.git
synced 2025-07-15 01:11:41 +00:00
7 lines
156 B
Rust
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;
|