(title: &str)
| 153 | Ok(()) |
| 154 | } |
| 155 | |
| 156 | #[cfg(not(target_arch = "wasm32"))] |
| 157 | fn pick_folder_impl(title: &str) -> Option<String> { |
| 158 | rfd::FileDialog::new() |
| 159 | .set_title(title) |
| 160 | .pick_folder() |
| 161 | .map(|path| path.to_string_lossy().to_string()) |
| 162 | } |
| 163 |
no test coverage detected