We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ee467f commit 8913b41Copy full SHA for 8913b41
src/objects/action.rs
@@ -3,9 +3,9 @@ use serde_derive::Serialize;
3
#[derive(Serialize, Debug)]
4
pub struct Action {
5
#[serde(flatten)]
6
- r#type: ActionType,
+ pub r#type: ActionType,
7
#[serde(skip_serializing_if = "Option::is_none")]
8
- label: Option<String>,
+ pub label: Option<String>,
9
}
10
11
@@ -48,5 +48,5 @@ pub enum ActionType {
48
49
50
pub struct AltUri {
51
- desktop: String,
+ pub desktop: String,
52
0 commit comments