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, };