pub struct CargoInstallBuilder { /* private fields */ }Expand description
Builder for CargoInstall.
Implementations§
Source§impl CargoInstallBuilder
impl CargoInstallBuilder
Sourcepub fn root<VALUE: Into<PathBuf>>(self, value: VALUE) -> Self
pub fn root<VALUE: Into<PathBuf>>(self, value: VALUE) -> Self
Sets --root to override the installation root directory.
Sourcepub fn version<VALUE: Into<OsString>>(self, value: VALUE) -> Self
pub fn version<VALUE: Into<OsString>>(self, value: VALUE) -> Self
Sets --version to install a specific crate version requirement.
Sourcepub fn git<VALUE: Into<OsString>>(self, value: VALUE) -> Self
pub fn git<VALUE: Into<OsString>>(self, value: VALUE) -> Self
Sets --git to install from a git repository.
Sourcepub fn branch<VALUE: Into<OsString>>(self, value: VALUE) -> Self
pub fn branch<VALUE: Into<OsString>>(self, value: VALUE) -> Self
Sets --branch when installing from git.
Sourcepub fn tag<VALUE: Into<OsString>>(self, value: VALUE) -> Self
pub fn tag<VALUE: Into<OsString>>(self, value: VALUE) -> Self
Sets --tag when installing from git.
Sourcepub fn rev<VALUE: Into<OsString>>(self, value: VALUE) -> Self
pub fn rev<VALUE: Into<OsString>>(self, value: VALUE) -> Self
Sets --rev when installing from git.
Sourcepub fn target<VALUE: Into<OsString>>(self, value: VALUE) -> Self
pub fn target<VALUE: Into<OsString>>(self, value: VALUE) -> Self
Sets --target to build for a specific compilation target.
Sourcepub fn path<VALUE: Into<PathBuf>>(self, value: VALUE) -> Self
pub fn path<VALUE: Into<PathBuf>>(self, value: VALUE) -> Self
Sets --path to install from a local crate directory.
Sourcepub fn crate_name<VALUE: Into<OsString>>(self, value: VALUE) -> Self
pub fn crate_name<VALUE: Into<OsString>>(self, value: VALUE) -> Self
Sets the registry crate name to install.
Sourcepub fn features<VALUE: Into<Vec<OsString>>>(self, value: VALUE) -> Self
pub fn features<VALUE: Into<Vec<OsString>>>(self, value: VALUE) -> Self
Sets --features using a feature list.
Sourcepub fn all_features<VALUE: Into<bool>>(self, value: VALUE) -> Self
pub fn all_features<VALUE: Into<bool>>(self, value: VALUE) -> Self
Enables --all-features.
Sourcepub fn no_default_features<VALUE: Into<bool>>(self, value: VALUE) -> Self
pub fn no_default_features<VALUE: Into<bool>>(self, value: VALUE) -> Self
Enables --no-default-features.
Sourcepub fn extra_args<VALUE: Into<Vec<OsString>>>(self, value: VALUE) -> Self
pub fn extra_args<VALUE: Into<Vec<OsString>>>(self, value: VALUE) -> Self
Appends additional arguments after all typed options.
Sourcepub fn stdout<VALUE: Into<Stdio>>(self, value: VALUE) -> Self
pub fn stdout<VALUE: Into<Stdio>>(self, value: VALUE) -> Self
Overrides the child process stdout configuration.
When not set, stdout inherits from the current process.
Sourcepub fn build(self) -> Result<CargoInstall, CargoInstallBuilderError>
pub fn build(self) -> Result<CargoInstall, CargoInstallBuilderError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CargoInstallBuilder
impl RefUnwindSafe for CargoInstallBuilder
impl Send for CargoInstallBuilder
impl Sync for CargoInstallBuilder
impl Unpin for CargoInstallBuilder
impl UnsafeUnpin for CargoInstallBuilder
impl UnwindSafe for CargoInstallBuilder
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
Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self, then passes self.deref() into the pipe function.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref() only in debug builds, and is erased in release
builds.