6 lines
81 B
Rust
6 lines
81 B
Rust
|
use maud::Markup;
|
||
|
|
||
|
pub trait HtmlRenderable {
|
||
|
fn to_html(&self) -> Markup;
|
||
|
}
|