Enum rustfmt::Operation [−][src]
pub(crate) enum Operation {
Format {
files: Vec<PathBuf>,
minimal_config_path: Option<String>,
},
Help(HelpOp),
Version,
ConfigOutputDefault {
path: Option<String>,
},
ConfigOutputCurrent {
path: Option<String>,
},
Stdin {
input: String,
},
}
Expand description
Rustfmt operations.
Variants
Format files and their child modules.
Help(HelpOp)
Print the help message.
Tuple Fields of Help
0: HelpOp
Print version information
Output default config to a file, or stdout if None
Output current config (as if formatting to a file) to stdout
No file specified, read from stdin
Fields of Stdin
input: String
Auto Trait Implementations
impl RefUnwindSafe for Operation
impl UnwindSafe for Operation
Blanket Implementations
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: 56 bytes
Size for each variant:
Format
: 55 bytesHelp
: 1 byteVersion
: 0 bytesConfigOutputDefault
: 31 bytesConfigOutputCurrent
: 31 bytesStdin
: 31 bytes