1 2 3 4 5 6 7 8 9 10
pub mod batch; pub mod task; pub use batch::Batch; pub use task::Task; pub enum FutureMsg { Task(Task), Batch(Box<dyn Batch>), }