1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! 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)]

mod cloning;
mod once;

pub use cloning::{CloningCell, NonSelfReferentialClone};
pub use once::OnceCell;