magic-orb 0.4.1

Implementation of thread-safe, overwrite, heap-stored, fix-sized, locking Ring buffer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Implementation of **thread-safe**, **overwrite**, **heap-stored**, **fix-sized**, **locking** `Ring buffer`
//!
//! Docs will be later, sorry

#![cfg_attr(not(feature = "not_nightly"), feature(sync_unsafe_cell))]
// #![warn(missing_docs)]

#[cfg(feature = "not_nightly")]
mod sync_unsafe_cell;

pub mod magic_orb;
pub use magic_orb::MagicOrb;