1 2 3 4 5 6 7 8 9
use serde::{Deserialize, Serialize}; /// Represents an action broadcasted to the entire Grid #[derive(Clone, Debug, Serialize, Deserialize)] pub struct Event { pub sender: String, pub action: String, pub content: String, }