Skip to main content

async_std/collections/vec_deque/
mod.rs

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