pub struct StdioProcessSpec {
pub program: PathBuf,
pub args: Vec<String>,
pub env: HashMap<String, String>,
pub cwd: Option<PathBuf>,
}Fields§
§program: PathBuf§args: Vec<String>§env: HashMap<String, String>§cwd: Option<PathBuf>Implementations§
Trait Implementations§
Source§impl Clone for StdioProcessSpec
impl Clone for StdioProcessSpec
Source§fn clone(&self) -> StdioProcessSpec
fn clone(&self) -> StdioProcessSpec
Returns a duplicate 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 StdioProcessSpec
impl Debug for StdioProcessSpec
Source§impl PartialEq for StdioProcessSpec
impl PartialEq for StdioProcessSpec
impl Eq for StdioProcessSpec
impl StructuralPartialEq for StdioProcessSpec
Auto Trait Implementations§
impl Freeze for StdioProcessSpec
impl RefUnwindSafe for StdioProcessSpec
impl Send for StdioProcessSpec
impl Sync for StdioProcessSpec
impl Unpin for StdioProcessSpec
impl UnsafeUnpin for StdioProcessSpec
impl UnwindSafe for StdioProcessSpec
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
Mutably borrows from an owned value. Read more