1
0
mirror of https://gitlab.com/xmpp-rs/xmpp-rs.git synced 2024-06-02 22:39:21 +02:00

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

View File

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