Struct xvc_pipeline::CommandProcess
source · pub struct CommandProcess {
pub environment: HashMap<String, String>,
pub step: XvcStep,
pub step_command: XvcStepCommand,
pub birth: Option<Instant>,
pub process: Option<Popen>,
pub stdout_sender: Sender<String>,
pub stderr_sender: Sender<String>,
pub stdout_receiver: Receiver<String>,
pub stderr_receiver: Receiver<String>,
}Expand description
Used for encapsulating a process and its outputs. This is used to associate steps with running processes.
Fields§
§environment: HashMap<String, String>§step: XvcStep§step_command: XvcStepCommand§birth: Option<Instant>§process: Option<Popen>§stdout_sender: Sender<String>§stderr_sender: Sender<String>§stdout_receiver: Receiver<String>§stderr_receiver: Receiver<String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for CommandProcess
impl Send for CommandProcess
impl Sync for CommandProcess
impl Unpin for CommandProcess
impl UnwindSafe for CommandProcess
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