1use std::collections::HashMap; 2 3pub enum EventResponse { 4 NOOP, 5 QUIT, 6 STATE(HashMap<String, String>), 7 CLEANFOCUS(HashMap<String, String>), 8} 9