Enum rustc_span::FileName [−][src]
pub enum FileName {
Real(RealFileName),
QuoteExpansion(u64),
Anon(u64),
MacroExpansion(u64),
ProcMacroSourceCode(u64),
CfgSpec(u64),
CliCrateAttr(u64),
Custom(String),
DocTest(PathBuf, isize),
InlineAsm(u64),
}
Expand description
Differentiates between real files and common virtual files.
Variants
Real(RealFileName)
Tuple Fields of Real
0: RealFileName
QuoteExpansion(u64)
Call to quote!
.
Tuple Fields of QuoteExpansion
0: u64
Anon(u64)
Command line.
Tuple Fields of Anon
0: u64
MacroExpansion(u64)
Hack in src/librustc_ast/parse.rs
.
Tuple Fields of MacroExpansion
0: u64
ProcMacroSourceCode(u64)
Tuple Fields of ProcMacroSourceCode
0: u64
CfgSpec(u64)
Strings provided as --cfg [cfgspec]
stored in a crate_cfg
.
Tuple Fields of CfgSpec
0: u64
CliCrateAttr(u64)
Strings provided as crate attributes in the CLI.
Tuple Fields of CliCrateAttr
0: u64
Custom(String)
Custom sources for explicit parser calls from plugins and drivers.
Tuple Fields of Custom
0: String
InlineAsm(u64)
Post-substitution inline assembly from LLVM.
Tuple Fields of InlineAsm
0: u64
Implementations
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for FileName
impl UnwindSafe for FileName
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: 64 bytes
Size for each variant:
Real
: 56 bytesQuoteExpansion
: 8 bytesAnon
: 8 bytesMacroExpansion
: 8 bytesProcMacroSourceCode
: 8 bytesCfgSpec
: 8 bytesCliCrateAttr
: 8 bytesCustom
: 24 bytesDocTest
: 32 bytesInlineAsm
: 8 bytes