UIPluginConfig

Trait UIPluginConfig 

Source
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§

Source

fn build(self: Box<Self>, openapi_path: &str) -> Box<dyn UIPlugin>

Build a UIPlugin given a UIPluginConfig and an openapi_path

Implementors§