This commit is contained in:
2023-05-10 00:48:25 +02:00
parent bbcdad7809
commit 9dad419dd2
5 changed files with 29 additions and 25 deletions

View File

@@ -21,8 +21,8 @@ impl Home {
}
}
impl Into<Markup> for Home {
fn into(self) -> Markup {
self.doc
impl From<Home> for Markup {
fn from(val: Home) -> Self {
val.doc
}
}