local_async_utils 0.2.13

Utilities for single-threaded async programming
Documentation
1
2
3
4
5
6
7
8
//! Collections that never leak references to their content, and therefore can be safely accessed via shared references.

mod queue;
mod set;
mod utils;

pub use queue::Queue;
pub use set::Set;