cmd.rs 271 B

12345678
  1. #[derive(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. MyCustomCommand { argument: String },
  8. }