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§
source§impl Clone for PathAndArgs
impl Clone for PathAndArgs
source§fn clone(&self) -> PathAndArgs
fn clone(&self) -> PathAndArgs
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PathAndArgs
impl Debug for PathAndArgs
source§impl<'de> Deserialize<'de> for PathAndArgs
impl<'de> Deserialize<'de> for PathAndArgs
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more