Trait bitcoin_ipc::Spawn

source ·
pub trait Spawn {
    // Required method
    fn spawn(
        &mut self,
        new_exe_name: &String,
        argv0_path: Box<&Path>,
        pid: &mut i32
    ) -> i32;
}
Expand description

Required Methods§

source

fn spawn( &mut self, new_exe_name: &String, argv0_path: Box<&Path>, pid: &mut i32 ) -> i32

| Spawn process and return socket file | descriptor for communicating with | it. |

Implementors§