Trait LoadableModule

Source
pub trait LoadableModule {
    // Required method
    fn load(module: FSModuleInterface, pool: FSModulePool) -> switch_status_t;

    // Provided methods
    fn shutdown() -> switch_status_t { ... }
    fn runtime() -> switch_status_t { ... }
}

Required Methods§

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§