(&self, f: &mut std::fmt::Formatter<'_>)
| 944 | |
| 945 | impl std::fmt::Display for StageExit { |
| 946 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 947 | match self { |
| 948 | Self::Unsupported => f.write_str("Unsupported Stage"), |
| 949 | Self::Skip => f.write_str("Skipped Stage"), |
| 950 | Self::Interrupted => f.write_str("Interrupted Stage"), |
| 951 | Self::Unknown(err) => f.write_fmt(format_args!("Unknown StageStart error: {err}")), |
| 952 | } |
| 953 | } |
| 954 | } |
| 955 | |
| 956 | impl From<anyhow::Error> for StageExit { |
nothing calls this directly
no outgoing calls
no test coverage detected