pub trait Pipe {
// Required methods
fn pipe_stdio(&self, tap1: &str) -> Result<JoinSet<()>>;
fn pipe_tun(&self, tap1: &str, tap2: &str) -> Result<JoinSet<()>>;
}pub trait Pipe {
// Required methods
fn pipe_stdio(&self, tap1: &str) -> Result<JoinSet<()>>;
fn pipe_tun(&self, tap1: &str, tap2: &str) -> Result<JoinSet<()>>;
}