[][src]Struct cargo::util::Rustc

pub struct Rustc {
    pub path: PathBuf,
    pub wrapper: Option<PathBuf>,
    pub verbose_version: String,
    pub host: String,
    // some fields omitted
}

Information on the rustc executable

Fields

path: PathBuf

The location of the exe

wrapper: Option<PathBuf>

An optional program that will be passed the path of the rust exe as its first argument, and rustc args following this.

verbose_version: String

Verbose version information (the output of rustc -vV)

host: String

The host triple (arch-platform-OS), this comes from verbose_version.

Methods

impl Rustc[src]

pub fn new(
    path: PathBuf,
    wrapper: Option<PathBuf>,
    rustup_rustc: &Path,
    cache_location: Option<PathBuf>
) -> CargoResult<Rustc>
[src]

Run the compiler at path to learn various pieces of information about it, with an optional wrapper.

If successful this function returns a description of the compiler along with a list of its capabilities.

pub fn process(&self) -> ProcessBuilder[src]

Get a process builder set up to use the found rustc version, with a wrapper if Some

pub fn process_no_wrapper(&self) -> ProcessBuilder[src]

pub fn cached_output(
    &self,
    cmd: &ProcessBuilder
) -> CargoResult<(String, String)>
[src]

pub fn cached_success(&self, cmd: &ProcessBuilder) -> CargoResult<bool>[src]

Trait Implementations

impl Debug for Rustc[src]

Auto Trait Implementations

impl Send for Rustc

impl Sync for Rustc

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Same for T

type Output = T

Should always be Self