Trait lpc::types::IpcExt

source ·
pub trait IpcExt {
    // Required methods
    fn send_data<T: Into<Vec<u8>>>(&self, data: T) -> R;
    fn response<T: Into<Vec<u8>>>(&self, data: T) -> R;
    fn send_data_res<T: Into<Vec<u8>>>(&self, data: T) -> R<Vec<u8>>;
}

Required Methods§

source

fn send_data<T: Into<Vec<u8>>>(&self, data: T) -> R

source

fn response<T: Into<Vec<u8>>>(&self, data: T) -> R

source

fn send_data_res<T: Into<Vec<u8>>>(&self, data: T) -> R<Vec<u8>>

Implementations on Foreign Types§

source§

impl IpcExt for OsIpcSender

source§

fn send_data<T: Into<Vec<u8>>>(&self, data: T) -> R

source§

fn response<T: Into<Vec<u8>>>(&self, data: T) -> R

source§

fn send_data_res<T: Into<Vec<u8>>>(&self, data: T) -> R<Vec<u8>>

Implementors§