yep-coc 0.2.0

Yet another circular buffer. This one happens to be a zero copy, MPMC, lock free queue.
Documentation
1
2
3
4
5
6
7
8
9
#[derive(Eq, PartialEq, Debug)]
pub enum YCQueueError {
    InvalidArgs,
    OutOfSpace,
    EmptyQueue,
    SlotNotReady,
    #[cfg(feature = "futex")]
    Timeout,
}