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 AsRef<Path>) -> &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 AsRef<Path>) -> &mut MetadataCommand[src]
Path to Cargo.toml
pub fn current_dir(&mut self, path: impl AsRef<Path>) -> &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.
pub fn other_options(
&mut self,
options: impl AsRef<[String]>
) -> &mut MetadataCommand[src]
&mut self,
options: impl AsRef<[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 exec(&mut 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>,