(base: &[i32], field_number: i32, index: i32)
| 193 | } |
| 194 | |
| 195 | fn extend_path(base: &[i32], field_number: i32, index: i32) -> Vec<i32> { |
| 196 | let mut path = base.to_vec(); |
| 197 | path.push(field_number); |
| 198 | path.push(index); |
| 199 | path |
| 200 | } |
| 201 | |
| 202 | /// Final resources consumed by the Rocket helper. |
| 203 | #[derive(Clone)] |
no test coverage detected