pub trait FromProcess:
Extension
+ Send
+ Sync {
// Required method
fn from_process(
process_path: &Path,
extension_config_path: &Path,
) -> Result<Self>
where Self: Sized;
}Expand description
Extension implementation that is loaded by invoking a process.