MCPcopy Create free account
hub / github.com/Amanieu/regalloc3 / fmt

Method fmt

fuzz/src/lib.rs:82–93  ·  view source on GitHub ↗
(&self, f: &mut fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

80
81impl fmt::Debug for TestCase {
82 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
83 writeln!(f, "Options: {:?}", self.options)?;
84 match &self.reginfo {
85 TestCaseRegInfo::Example { path, reginfo: _ } => {
86 writeln!(f, "Using example reginfo: {path}")?;
87 }
88 TestCaseRegInfo::Arbitrary { reginfo } => {
89 writeln!(f, "{reginfo}")?;
90 }
91 }
92 writeln!(f, "{}", self.func)
93 }
94}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected