fix: make db fileds public

Signed-off-by: Jia Chao <jiac13@chinaunicom.cn>
This commit is contained in:
Jia Chao 2024-06-18 16:23:17 +08:00
parent b8a1b7c5c3
commit 7e2876d935

View File

@ -11,7 +11,7 @@ mod test;
#[derive(Debug, Clone, Serialize, Deserialize)] #[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UpdateInfoDb { pub struct UpdateInfoDb {
db: Vec<UpdateInfo>, pub db: Vec<UpdateInfo>,
} }
impl UpdateInfoDb { impl UpdateInfoDb {
@ -46,28 +46,28 @@ impl UpdateInfoDb {
#[derive(Debug, Clone, Serialize, Deserialize)] #[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UpdateInfo { pub struct UpdateInfo {
// sa id // sa id
id: String, pub id: String,
// sa title // sa title
title: String, pub title: String,
// sa severity // sa severity
severity: Severity, pub severity: Severity,
// the product? openEuler/CULinux // the product? openEuler/CULinux
release: String, pub release: String,
// 用处不大,先不用 // 用处不大,先不用
//date: String, //date: String,
// cve ids可能有多个 // cve ids可能有多个
cves: Vec<String>, pub cves: Vec<String>,
// 安全公告的描述 // 安全公告的描述
description: String, pub description: String,
// 此次更新包含的软件包列表 // 此次更新包含的软件包列表
pkglist: Vec<RpmInfo>, pub pkglist: Vec<RpmInfo>,
} }
impl UpdateInfo { impl UpdateInfo {