pub struct RustupToolchains<'r> { /* private fields */ }
Expand description

Result of rustup.toolchains()

Implementations§

source§

impl<'r> RustupToolchains<'r>

source

pub fn active(&self) -> Option<Toolchain>

Gets the default toolchain by parsing rustup show active-toolchain

source

pub fn default(&self) -> Option<Toolchain>

Gets the default toolchain by parsing rustup default

source

pub fn installed(&self) -> BTreeSet<Toolchain>

Gets all installed toolchains by parsing rustup toolchain list

source

pub fn get(&self, toolchain: impl AsRef<str>) -> Option<Toolchain>

Gets an installed toolchain by parsing rustup +{toolchain} show active-toolchain

source

pub fn install(&self, toolchain: impl AsRef<str>) -> Result<Toolchain>

Install a toolchain via rustup toolchain install ${toolchain}

source

pub fn uninstall(&self, toolchain: impl AsRef<str>) -> Result<()>

Uninstall a toolchain via rustup toolchain install ${toolchain}

Auto Trait Implementations§

§

impl<'r> RefUnwindSafe for RustupToolchains<'r>

§

impl<'r> Send for RustupToolchains<'r>

§

impl<'r> Sync for RustupToolchains<'r>

§

impl<'r> Unpin for RustupToolchains<'r>

§

impl<'r> UnwindSafe for RustupToolchains<'r>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.