Skip to content

Commit 8913b41

Browse files
committed
Update action.rs
・pub
1 parent 4ee467f commit 8913b41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/objects/action.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ use serde_derive::Serialize;
33
#[derive(Serialize, Debug)]
44
pub struct Action {
55
#[serde(flatten)]
6-
r#type: ActionType,
6+
pub r#type: ActionType,
77
#[serde(skip_serializing_if = "Option::is_none")]
8-
label: Option<String>,
8+
pub label: Option<String>,
99
}
1010

1111
#[derive(Serialize, Debug)]
@@ -48,5 +48,5 @@ pub enum ActionType {
4848

4949
#[derive(Serialize, Debug)]
5050
pub struct AltUri {
51-
desktop: String,
51+
pub desktop: String,
5252
}

0 commit comments

Comments
 (0)