Trait FromProcess

Source
pub trait FromProcess:
    Extension
    + Send
    + Sync {
    // Required method
    fn from_process(
        process_path: &PathBuf,
        extension_config_path: &PathBuf,
    ) -> Result<Self>
       where Self: Sized;
}

Required Methods§

Source

fn from_process( process_path: &PathBuf, extension_config_path: &PathBuf, ) -> Result<Self>
where Self: Sized,

Initialize extension from a process.

Implementors§