1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Text formatter — the no-flag default.
//!
//! Per ADR-0015 §"Formatter: text (default)", the text formatter is
//! byte-identical to [`Summary::pretty_lines`] joined by `'\n'` and
//! terminated with `'\n'`. In strict mode, the bytes match
//! pycocotools' `summarize()` stdout output (modulo the trailing
//! newline, which pycocotools' `print()` also emits).
//!
//! All semantic content lives upstream in `vernier_core::summarize`;
//! this module is intentionally a thin shell.
use io;
use Summary;
use crateCliError;
use crate;
/// Zero-sized formatter that delegates to [`Summary::pretty_lines`].
pub ;