pub trait ModuleLoader: Send + Sync {
// Required method
fn load_source(&self, path: &str) -> Result<String, String>;
}Expand description
Pluggable backend for loading module source code.
pub trait ModuleLoader: Send + Sync {
// Required method
fn load_source(&self, path: &str) -> Result<String, String>;
}Pluggable backend for loading module source code.