pub trait SendZmqMessage {
    // Required method
    fn send_zmq_message(
        &mut self,
        command: *const u8,
        data: *const c_void,
        size: usize
    ) -> bool;
}

Required Methods§

source

fn send_zmq_message( &mut self, command: *const u8, data: *const c_void, size: usize ) -> bool

Implementors§