(args: &RunArgs)
| 724 | } |
| 725 | |
| 726 | fn effective_single_driver(args: &RunArgs) -> Option<ComputeDriverKind> { |
| 727 | match args.drivers.as_slice() { |
| 728 | [] => openshell_core::config::detect_driver(), |
| 729 | [driver] => driver.parse().ok(), |
| 730 | _ => None, |
| 731 | } |
| 732 | } |
| 733 | |
| 734 | fn is_singleplayer_driver(args: &RunArgs) -> bool { |
| 735 | matches!( |
nothing calls this directly
no test coverage detected