MCPcopy Create free account
hub / github.com/apache/datafusion / format_suite_list_styled

Function format_suite_list_styled

benchmarks/src/benchmark_runner/output.rs:30–38  ·  view source on GitHub ↗

Formats the `list` command output with suite summaries, query-id hints, and configurable suite options.

(registry: &SuiteRegistry)

Source from the content-addressed store, hash-verified

28/// Formats the `list` command output with suite summaries, query-id hints, and
29/// configurable suite options.
30pub fn format_suite_list_styled(registry: &SuiteRegistry) -> Result<String> {
31 let mut output = String::new();
32
33 for suite in registry.suites() {
34 write_suite_list_entry(&mut output, suite)?;
35 }
36
37 Ok(output)
38}
39
40/// Writes one suite entry for the `list` command.
41fn write_suite_list_entry(output: &mut String, suite: &SuiteConfig) -> Result<()> {

Callers 3

run_cliFunction · 0.85

Calls 3

newFunction · 0.85
write_suite_list_entryFunction · 0.85
suitesMethod · 0.80

Used in the wild real call sites across dependent graphs

searching dependent graphs…