Struct cargo_metadata::MetadataCommand [−][src]
A builder for configurating cargo metadata
invocation.
Implementations
impl MetadataCommand
[src]
pub fn new() -> MetadataCommand
[src]
Creates a default cargo metadata
command, which will look for
Cargo.toml
in the ancestors of the current directory.
pub fn cargo_path(&mut self, path: impl Into<PathBuf>) -> &mut MetadataCommand
[src]
Path to cargo
executable. If not set, this will use the
the $CARGO
environment variable, and if that is not set, will
simply be cargo
.
pub fn manifest_path(
&mut self,
path: impl Into<PathBuf>
) -> &mut MetadataCommand
[src]
&mut self,
path: impl Into<PathBuf>
) -> &mut MetadataCommand
Path to Cargo.toml
pub fn current_dir(&mut self, path: impl Into<PathBuf>) -> &mut MetadataCommand
[src]
Current directory of the cargo metadata
process.
pub fn no_deps(&mut self) -> &mut MetadataCommand
[src]
Output information only about the root package and don’t fetch dependencies.
pub fn features(&mut self, features: CargoOpt) -> &mut MetadataCommand
[src]
Which features to include.
Call this multiple times to specify advanced feature configurations:
MetadataCommand::new() .features(CargoOpt::NoDefaultFeatures) .features(CargoOpt::SomeFeatures(vec!["feat1".into(), "feat2".into()])) .features(CargoOpt::SomeFeatures(vec!["feat3".into()])) // ...
Panics
cargo metadata
rejects multiple --no-default-features
flags. Similarly, the features()
method panics when specifiying multiple CargoOpt::NoDefaultFeatures
:
MetadataCommand::new() .features(CargoOpt::NoDefaultFeatures) .features(CargoOpt::NoDefaultFeatures) // <-- panic! // ...
The method also panics for multiple CargoOpt::AllFeatures
arguments:
MetadataCommand::new() .features(CargoOpt::AllFeatures) .features(CargoOpt::AllFeatures) // <-- panic! // ...
pub fn other_options(
&mut self,
options: impl Into<Vec<String>>
) -> &mut MetadataCommand
[src]
&mut self,
options: impl Into<Vec<String>>
) -> &mut MetadataCommand
Arbitrary command line flags to pass to cargo
. These will be added
to the end of the command line invocation.
pub fn cargo_command(&self) -> Command
[src]
Builds a command for cargo metadata
. This is the first
part of the work of exec
.
pub fn parse<T: AsRef<str>>(data: T) -> Result<Metadata>
[src]
Parses cargo metadata
output. data
must have been
produced by a command built with cargo_command
.
pub fn exec(&self) -> Result<Metadata>
[src]
Runs configured cargo metadata
and returns parsed Metadata
.
Trait Implementations
impl Clone for MetadataCommand
[src]
fn clone(&self) -> MetadataCommand
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for MetadataCommand
[src]
impl Default for MetadataCommand
[src]
fn default() -> MetadataCommand
[src]
Auto Trait Implementations
impl RefUnwindSafe for MetadataCommand
impl Send for MetadataCommand
impl Sync for MetadataCommand
impl Unpin for MetadataCommand
impl UnwindSafe for MetadataCommand
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> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
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>,