pub trait UIPluginConfig {
// Required method
fn build(self: Box<Self>, openapi_path: &str) -> Box<dyn UIPlugin>;
}Expand description
Trait to implement on a UI config which will serve a an argument of BuildConfig::with method
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".