pub struct SpawnArgs {
pub program: String,
pub args: Vec<String>,
pub env: Vec<(String, String)>,
pub cwd: Option<String>,
pub stdin: RtFd,
pub stdout: RtFd,
pub stderr: RtFd,
}Fields§
§program: String§args: Vec<String>§env: Vec<(String, String)>§cwd: Option<String>§stdin: RtFd§stdout: RtFd§stderr: RtFdTrait Implementations§
Auto Trait Implementations§
impl Freeze for SpawnArgs
impl RefUnwindSafe for SpawnArgs
impl Send for SpawnArgs
impl Sync for SpawnArgs
impl Unpin for SpawnArgs
impl UnwindSafe for SpawnArgs
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