| 11 | /// User Command for leaving a room. |
| 12 | #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] |
| 13 | pub struct LeaveRoomCommand { |
| 14 | // The room to leave. |
| 15 | #[serde(rename = "r")] |
| 16 | pub room: String, |
| 17 | } |
| 18 | |
| 19 | /// User Command for sending a message. |
| 20 | #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected