pub trait Executor: 'static {
    unsafe fn call(
        &self,
        context: Context,
        output: *mut c_char,
        size: size_t,
        args: Option<*mut *mut i8>,
        count: Option<c_int>
    ); }
Expand description

Execute a command

Required Methods

Safety

This function is unsafe because it interacts with the C API.

Implementors