SimpleLoader

Type Alias SimpleLoader 

Source
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 itself
  • FunctionOutput as the output type, which is the standard return type for plugin functions
  • StdInfo 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 */ }