Struct cargo::util::rustc::Rustc [−][src]
Information on the rustc executable
Fields
path: PathBufThe location of the exe
wrapper: Option<ProcessBuilder>An optional program that will be passed the path of the rust exe as its first argument, and rustc args following this.
verbose_version: StringVerbose version information (the output of rustc -vV)
host: InternedStringThe host triple (arch-platform-OS), this comes from verbose_version.
Implementations
impl Rustc[src]
pub fn new(
path: PathBuf,
wrapper: Option<PathBuf>,
rustup_rustc: &Path,
cache_location: Option<PathBuf>
) -> CargoResult<Rustc>[src]
path: PathBuf,
wrapper: Option<PathBuf>,
rustup_rustc: &Path,
cache_location: Option<PathBuf>
) -> CargoResult<Rustc>
Runs 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_with(&self, path: impl AsRef<Path>) -> ProcessBuilder[src]
Gets a process builder set up to use the found rustc version, with a wrapper if Some.
pub fn process(&self) -> ProcessBuilder[src]
Gets 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]
&self,
cmd: &ProcessBuilder
) -> CargoResult<(String, String)>
pub fn set_wrapper(&mut self, wrapper: ProcessBuilder)[src]
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Rustc
impl Send for Rustc
impl Sync for Rustc
impl Unpin for Rustc
impl UnwindSafe for Rustc
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T[src]
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>, [src]
V: MultiLane<T>,