Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit 9fe0232

Browse files
committed
Make Solutions fields pub
1 parent b74b330 commit 9fe0232

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/kbcheck/src/entry.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ pub enum UserBaseImpact {
2323
#[serde(deny_unknown_fields)]
2424
pub struct Solutions {
2525
#[serde(default)]
26-
interventions: Vec<Url>,
26+
pub interventions: Vec<Url>,
2727
#[serde(default)]
28-
notes: Vec<String>,
28+
pub notes: Vec<String>,
2929
#[serde(default)]
30-
workarounds: Vec<String>,
30+
pub workarounds: Vec<String>,
3131
}
3232

3333
#[derive(Debug, Serialize, Deserialize, Default)]

0 commit comments

Comments
 (0)