pub trait UIPlugin {
// Required methods
fn path(&self) -> String;
fn to_html(&self) -> String;
}Expand description
Trait to implement to expose a UI for the generated openapi specification
Required Methods§
Trait Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".