cmd.rs 249 B

12345678
  1. #[derive(serde::Deserialize)]
  2. #[serde(tag = "cmd", rename_all = "camelCase")]
  3. pub enum Cmd {
  4. // your custom commands
  5. // multiple arguments are allowed
  6. // note that rename_all = "camelCase": you need to use "myCustomCommand" on JS
  7. Exit {},
  8. }