Enum rustc_session::config::ErrorOutputType [−][src]
pub enum ErrorOutputType {
HumanReadable(HumanReadableErrorType),
Json {
pretty: bool,
json_rendered: HumanReadableErrorType,
},
}
Expand description
The type of diagnostics output to generate.
Variants
HumanReadable(HumanReadableErrorType)
Output meant for the consumption of humans.
Tuple Fields of HumanReadable
Output that’s consumed by other tools such as rustfix
or the RLS
.
Fields of Json
pretty: bool
Render the JSON in a human readable way (with indents and newlines).
json_rendered: HumanReadableErrorType
The JSON output includes a rendered
field that includes the rendered
human output.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ErrorOutputType
impl Send for ErrorOutputType
impl Sync for ErrorOutputType
impl Unpin for ErrorOutputType
impl UnwindSafe for ErrorOutputType
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: 4 bytes
Size for each variant:
HumanReadable
: 2 bytesJson
: 3 bytes