1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! Mitochondria is the powerhouse of the `Cell`.
//!
//! This crate provides additional mutable containers for use cases not
//! covered by the triumvirate of `Cell`, `RefCell` and `UnsafeCell`.

#![deny(missing_docs)]
#![deny(unsafe_code)]

#[path="move.rs"]
mod move_;
mod once;

pub use move_::MoveCell;
pub use once::OnceCell;