pub trait ModuleHandle {
type Library: Library;
// Required method
fn get(&self) -> &Module<Self::Library>;
}Available on crate feature
module only.Expand description
Represents a handle to a Module stored in the application’s ModuleLoader.