disable field not in use

This commit is contained in:
yggverse 2024-10-28 18:40:29 +02:00
parent 3a767cec56
commit fd419e2de1
2 changed files with 11 additions and 11 deletions

View file

@ -19,7 +19,7 @@ pub enum Status {
pub struct Meta {
pub title: Option<GString>,
pub description: Option<GString>,
//pub description: Option<GString>,
pub status: Option<Status>,
}
@ -27,7 +27,7 @@ impl Meta {
pub fn new() -> Self {
Self {
title: None,
description: None,
//description: None,
status: None,
}
}