Struct cargo::util::config::PathAndArgs

source ·
pub struct PathAndArgs {
    pub path: ConfigRelativePath,
    pub args: Vec<String>,
}
Expand description

A config type that is a program to run.

This supports a list of strings like ['/path/to/program', 'somearg'] or a space separated string like '/path/to/program somearg'.

This expects the first value to be the path to the program to run. Subsequent values are strings of arguments to pass to the program.

Typically you should use ConfigRelativePath::resolve_program on the path to get the actual program.

Fields§

§path: ConfigRelativePath§args: Vec<String>

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 80 bytes