MCPcopy Create free account
hub / github.com/MultiFuzz/MultiFuzz / fmt

Method fmt

hail-fuzz/src/main.rs:946–953  ·  view source on GitHub ↗
(&self, f: &mut std::fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

944
945impl 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
956impl From<anyhow::Error> for StageExit {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected