Enum rustfmt_nightly::EmitMode [−][src]
pub enum EmitMode {
Files,
Stdout,
Coverage,
Checkstyle,
Json,
ModifiedLines,
Diff,
}
Variants
Emits to files.
Writes the output to stdout.
Displays how much of the input file was processed
Unfancy stdout
Writes the resulting diffs in a JSON format. Returns an empty array
[]
if there were no diffs.
Output the changed lines (for internal value only)
Checks if a diff can be generated. If so, rustfmt outputs a diff and
quits with exit code 1.
This option is designed to be run in CI where a non-zero exit signifies
non-standard code formatting. Used for --check
.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for EmitMode
impl UnwindSafe for EmitMode
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Files
: 0 bytesStdout
: 0 bytesCoverage
: 0 bytesCheckstyle
: 0 bytesJson
: 0 bytesModifiedLines
: 0 bytesDiff
: 0 bytes