| 64 | fn div_round_up(a: usize, b: usize) -> usize { (a + b - 1) / b } |
| 65 | |
| 66 | struct Producer { |
| 67 | store: HashMap<&'static str, usize>, |
| 68 | costs: HashMap<&'static str, (usize, &'static [(usize, &'static str)])>, |
| 69 | } |
| 70 | |
| 71 | impl Producer { |
| 72 | fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected