rstml-component 0.2.6

HTML Component Library for Rust
Documentation
1
2
3
4
5
6
7
use crate::HtmlContent;

pub trait HtmlComponent {
	type Content: HtmlContent;

	fn into_content(self) -> Self::Content;
}