()
| 69 | |
| 70 | impl Default for ViewState { |
| 71 | fn default() -> Self { |
| 72 | Self { |
| 73 | jobs: Default::default(), |
| 74 | config_state: Default::default(), |
| 75 | demangle_state: Default::default(), |
| 76 | rlwinm_decode_state: Default::default(), |
| 77 | diff_state: Default::default(), |
| 78 | graphics_state: Default::default(), |
| 79 | frame_history: Default::default(), |
| 80 | show_appearance_config: false, |
| 81 | show_demangle: false, |
| 82 | show_rlwinm_decode: false, |
| 83 | show_project_config: false, |
| 84 | show_arch_config: false, |
| 85 | show_debug: false, |
| 86 | show_graphics: false, |
| 87 | show_jobs: false, |
| 88 | show_side_panel: true, |
| 89 | } |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | /// The configuration for a single object file. |
nothing calls this directly
no test coverage detected