pub type SimpleLoader = Loader<'static, FunctionOutput, StdInfo>;
Expand description
A convenience type alias for a Loader with commonly used default type parameters.
This type alias simplifies the creation of a Loader
with the following configuration:
'static
lifetime for the loader itselfFunctionOutput
as the output type, which is the standard return type for plugin functionsStdInfo
as the info type, which provides standard plugin information
§Example
use plux_rs::SimpleLoader;
// Create a new loader with default configuration
let loader = SimpleLoader::new();
Aliased Type§
pub struct SimpleLoader { /* private fields */ }