pub fn parse_and_run<T, P, F>(parse: P, run: F) -> i32where P: FnOnce() -> T, F: FnOnce(T) -> Result<i32, FatalCliError>,
Parse CLI state with one closure and execute it with another.