1#[derive(Debug, Clone, PartialEq, Eq, Hash)] 2pub struct Event { 3 pub event: String, 4 pub data: String, 5 pub last_event_id: Option<String>, 6}