(stdio: &StdioDef)
| 1212 | } |
| 1213 | |
| 1214 | fn stdio_to_str(stdio: &StdioDef) -> &str { |
| 1215 | match stdio { |
| 1216 | StdioDef::Null => "<None>", |
| 1217 | StdioDef::File { path, .. } => path.to_str().unwrap(), |
| 1218 | StdioDef::Pipe => "<Stream>", |
| 1219 | } |
| 1220 | } |
| 1221 | |
| 1222 | // Allocation |
| 1223 | fn allocation_status_to_cell(status: &AllocationState) -> CellStruct { |
no test coverage detected