pub enum Tool {
Cargo,
Rustc,
Rustup,
Rustfmt,
}
Variants§
Implementations§
Source§impl Tool
impl Tool
pub fn proxy(self) -> Option<Utf8PathBuf>
Sourcepub fn prefer_proxy(self) -> Utf8PathBuf
pub fn prefer_proxy(self) -> Utf8PathBuf
Return a PathBuf
to use for the given executable.
The current implementation checks three places for an executable to use:
$CARGO_HOME/bin/<executable_name>
where $CARGO_HOME defaults to ~/.cargo (see https://doc.rust-lang.org/cargo/guide/cargo-home.html) example: for cargo, this tries $CARGO_HOME/bin/cargo, or ~/.cargo/bin/cargo if $CARGO_HOME is unset. It seems that this is a reasonable place to try for cargo, rustc, and rustup- Appropriate environment variable (erroring if this is set but not a usable executable) example: for cargo, this checks $CARGO environment variable; for rustc, $RUSTC; etc
- $PATH/
<executable_name>
example: for cargo, this tries all paths in $PATH with appendedcargo
, returning the first that exists - If all else fails, we just try to use the executable name directly
Sourcepub fn path(self) -> Utf8PathBuf
pub fn path(self) -> Utf8PathBuf
Return a PathBuf
to use for the given executable.
The current implementation checks three places for an executable to use:
- Appropriate environment variable (erroring if this is set but not a usable executable) example: for cargo, this checks $CARGO environment variable; for rustc, $RUSTC; etc
- $PATH/
<executable_name>
example: for cargo, this tries all paths in $PATH with appendedcargo
, returning the first that exists $CARGO_HOME/bin/<executable_name>
where $CARGO_HOME defaults to ~/.cargo (see https://doc.rust-lang.org/cargo/guide/cargo-home.html) example: for cargo, this tries $CARGO_HOME/bin/cargo, or ~/.cargo/bin/cargo if $CARGO_HOME is unset. It seems that this is a reasonable place to try for cargo, rustc, and rustup- If all else fails, we just try to use the executable name directly
pub fn path_in(self, path: &Utf8Path) -> Option<Utf8PathBuf>
pub fn name(self) -> &'static str
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Tool
impl RefUnwindSafe for Tool
impl Send for Tool
impl Sync for Tool
impl Unpin for Tool
impl UnwindSafe for Tool
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more