Get the name of the currently selected sandbox.
(&self)
| 2513 | |
| 2514 | /// Get the name of the currently selected sandbox. |
| 2515 | pub fn selected_sandbox_name(&self) -> Option<&str> { |
| 2516 | self.sandbox_names |
| 2517 | .get(self.sandbox_selected) |
| 2518 | .map(String::as_str) |
| 2519 | } |
| 2520 | |
| 2521 | /// Get the name of the currently selected provider. |
| 2522 | pub fn selected_provider_name(&self) -> Option<&str> { |
no test coverage detected