(header: &[u8], mut testfn: F)
| 2428 | } |
| 2429 | |
| 2430 | fn with_basic_file<F>(header: &[u8], mut testfn: F) |
| 2431 | where |
| 2432 | F: FnMut(RawFile), |
| 2433 | { |
| 2434 | testfn(basic_file(header)); // File closed when the function exits. |
| 2435 | } |
| 2436 | |
| 2437 | fn with_default_file<F>(file_size: u64, direct: bool, mut testfn: F) |
| 2438 | where |