callback_cell 0.1.0

Like an Atomic<Option<Box<FnOnce()>>>
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]

#[cfg(test)]
mod test;

mod without_args;
mod with_args;

pub use self::{
    without_args::CallbackCell,
    with_args::CallbackCellArgs,
};