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>
Implementations§
source§impl PathAndArgs
impl PathAndArgs
sourcepub fn from_whitespace_separated_string(p: &Value<String>) -> PathAndArgs
pub fn from_whitespace_separated_string(p: &Value<String>) -> PathAndArgs
Construct a PathAndArgs from a string. The string will be split on ascii whitespace,
with the first item being treated as a ConfigRelativePath
to the executable, and subsequent
items as arguments.
Trait Implementations§
source§impl Clone for PathAndArgs
impl Clone for PathAndArgs
source§fn clone(&self) -> PathAndArgs
fn clone(&self) -> PathAndArgs
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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>,
source§impl PartialEq<PathAndArgs> for PathAndArgs
impl PartialEq<PathAndArgs> for PathAndArgs
source§fn eq(&self, other: &PathAndArgs) -> bool
fn eq(&self, other: &PathAndArgs) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PathAndArgs
Auto Trait Implementations§
impl RefUnwindSafe for PathAndArgs
impl Send for PathAndArgs
impl Sync for PathAndArgs
impl Unpin for PathAndArgs
impl UnwindSafe for PathAndArgs
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,
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