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:
'staticlifetime for the loader itselfFunctionOutputas the output type, which is the standard return type for plugin functionsStdInfoas 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 */ }