minidom/examples: silence warning on unused property in struct

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2023-06-01 16:24:51 +02:00
parent aafe341b25
commit 7064ef5c17
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ const ARTICLE_NS: &str = "article";
#[derive(Debug)]
pub struct Article {
title: String,
body: String,
pub title: String,
pub body: String,
}
fn main() {