Files
tauri/examples/react/create-react-app/src-tauri/src/cmd.rs
2019-12-19 21:45:35 +01:00

9 lines
271 B
Rust

#[derive(Deserialize)]
#[serde(tag = "cmd", rename_all = "camelCase")]
pub enum Cmd {
// your custom commands
// multiple arguments are allowed
// note that rename_all = "camelCase": you need to use "myCustomCommand" on JS
MyCustomCommand { argument: String },
}