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
sourceimpl Clone for PathAndArgs
impl Clone for PathAndArgs
sourcefn clone(&self) -> PathAndArgs
fn clone(&self) -> PathAndArgs
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PathAndArgs
impl Debug for PathAndArgs
sourceimpl<'de> Deserialize<'de> for PathAndArgs
impl<'de> Deserialize<'de> for PathAndArgs
sourcefn 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
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more