Trait bitcoin_ipc::Connect

source ·
pub trait Connect {
    // Required method
    fn connect(&mut self, fd: i32, exe_name: *const u8) -> Box<dyn Init>;
}
Expand description

Required Methods§

source

fn connect(&mut self, fd: i32, exe_name: *const u8) -> Box<dyn Init>

| Return Init interface that forwards | requests over given socket descriptor. | Socket communication is handled on | a background thread.

Implementors§