gnuplot_wrapper/process/
gnuplot_process.rs

1
2
3
4
5
6
use std::process::Child;

pub trait GnuplotProcess {
    fn new(child: Child) -> Self;
    fn wait(&mut self);
}