pub struct ProcessSpec<'a> {
pub launch: &'a LaunchPlan,
pub command: &'a CommandPlan,
pub launch_files: &'a [LaunchFilePlan],
pub cache_root: &'a Path,
pub stdout: &'a Path,
pub stderr: &'a Path,
pub remote_dir: &'a Path,
pub container: Option<&'a str>,
}Fields§
§launch: &'a LaunchPlan§command: &'a CommandPlan§launch_files: &'a [LaunchFilePlan]§cache_root: &'a Path§stdout: &'a Path§stderr: &'a Path§remote_dir: &'a Path§container: Option<&'a str>The resolver-assigned container name when the command is a containerized substitution.
Auto Trait Implementations§
impl<'a> Freeze for ProcessSpec<'a>
impl<'a> RefUnwindSafe for ProcessSpec<'a>
impl<'a> Send for ProcessSpec<'a>
impl<'a> Sync for ProcessSpec<'a>
impl<'a> Unpin for ProcessSpec<'a>
impl<'a> UnsafeUnpin for ProcessSpec<'a>
impl<'a> UnwindSafe for ProcessSpec<'a>
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