pub type Cmd<T> = Box<dyn FnOnce() -> Result<T> + Send + Sync>;
pub struct Cmd<T>(/* private fields */);