Enum rustc::session::config::Input [] [src]

pub enum Input {
    File(PathBuf),
    Str {
        name: String,
        input: String,
    },
}
Unstable (rustc_private)

Variants

File(PathBuf)
Unstable (rustc_private)

Load source from file

Str
Unstable (rustc_private)

Fields

name: String
Unstable (rustc_private)

String that is shown in place of a filename

input: String
Unstable (rustc_private)

Anonymous source string

Methods

impl Input
[src]

fn filestem(&self) -> String