io-pipe 0.7.3

A fast and thread-safe library for creating multi-writer and single-reader pipelines in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(not(feature = "fast-mutex"))]
mod std_state;

#[cfg(not(feature = "fast-mutex"))]
pub(crate) use std_state::SharedState;

#[cfg(feature = "fast-mutex")]
mod parking_lot_state;

#[cfg(feature = "fast-mutex")]
pub(crate) use parking_lot_state::SharedState;