[][src]Struct rustc_ap_rustc_session::config::OutputFilenames

pub struct OutputFilenames {
    pub out_directory: PathBuf,
    pub single_output_file: Option<PathBuf>,
    pub outputs: OutputTypes,
    // some fields omitted
}

Fields

out_directory: PathBufsingle_output_file: Option<PathBuf>outputs: OutputTypes

Methods

impl OutputFilenames[src]

pub fn new(
    out_directory: PathBuf,
    out_filestem: String,
    single_output_file: Option<PathBuf>,
    extra: String,
    outputs: OutputTypes
) -> Self
[src]

pub fn path(&self, flavor: OutputType) -> PathBuf[src]

pub fn temp_path(
    &self,
    flavor: OutputType,
    codegen_unit_name: Option<&str>
) -> PathBuf
[src]

Gets the path where a compilation artifact of the given type for the given codegen unit should be placed on disk. If codegen_unit_name is None, a path distinct from those of any codegen unit will be generated.

pub fn temp_path_ext(
    &self,
    ext: &str,
    codegen_unit_name: Option<&str>
) -> PathBuf
[src]

Like temp_path, but also supports things where there is no corresponding OutputType, like noopt-bitcode or lto-bitcode.

pub fn with_extension(&self, extension: &str) -> PathBuf[src]

Trait Implementations

impl Clone for OutputFilenames[src]

impl Hash for OutputFilenames[src]

impl<CTX> HashStable<CTX> for OutputFilenames

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<E> SpecializationError for E[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.