(data: &SceneNodeData, field: &str)
| 3457 | .push(scene_row_disclosure(children, collapsed)); |
| 3458 | out.keys.push(key); |
| 3459 | out.depths.push(depth); |
| 3460 | for child_key in index.child_keys(key).iter().copied() { |
| 3461 | let _ = push_scene_tree_row( |
| 3462 | doc, |
| 3463 | index, |
| 3464 | child_key, |
| 3465 | depth + 1, |
| 3466 | selected_key, |
| 3467 | collapsed_keys, |
| 3468 | visited, |
| 3469 | out, |
| 3470 | ); |
| 3471 | } |
| 3472 | Some(row) |
| 3473 | } |
| 3474 |
no test coverage detected