Skip to main content

rssn/plugins/
mod.rs

1//! # FFI Plugin System
2//!
3//! The `plugins` module and its submodules are for testing the FFI plugin system.
4//!
5//! # Usage
6//!
7//! ```rust
8//! use rssn::plugins::manager::PluginManager;
9
10/// Plugin manager for loading and managing plugins.
11pub mod manager;
12/// C-style plugin interface.
13pub mod plugin_c;
14/// Stable ABI plugin interface.
15pub mod stable_abi;