thingbuf 0.1.6

I'm at the buffer pool. I'm at the MPSC channel. I'm at the combination MPSC channel and buffer pool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(not(any(feature = "std", all(loom, test))))]
pub(crate) use self::spin_impl::*;

#[cfg(any(not(feature = "std"), test))]
mod spin_impl;

feature! {
    #![all(feature = "std", not(all(loom, test)))]
    #[allow(unused_imports)]
    pub(crate) use parking_lot::{Mutex, MutexGuard, const_mutex};
}

feature! {
    #![all(loom, test)]
    mod loom_impl;
    pub(crate) use self::loom_impl::*;
}