ringbuf 0.3.1

Lock-free SPSC FIFO ring buffer with direct access to inner data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "alloc")]
mod access;
#[cfg(feature = "alloc")]
mod basic;
#[cfg(feature = "alloc")]
mod drop;
#[cfg(feature = "alloc")]
mod iter;
#[cfg(feature = "alloc")]
mod skip;
#[cfg(feature = "alloc")]
mod slice;

#[cfg(feature = "std")]
mod message;
#[cfg(feature = "std")]
mod read_write;