(self)
| 270 | } |
| 271 | |
| 272 | pub fn prev(self) -> Self { |
| 273 | match self { |
| 274 | Self::Name => Self::Submit, |
| 275 | Self::Image => Self::Name, |
| 276 | Self::Command => Self::Image, |
| 277 | Self::Providers => Self::Command, |
| 278 | Self::Ports => Self::Providers, |
| 279 | Self::Submit => Self::Ports, |
| 280 | } |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | /// An existing provider entry for sandbox creation (select by name). |
no outgoing calls
no test coverage detected