1 2 3 4 5 6 7 8 9
use crate::input::Key; use crate::models::application::modes::open::Index; #[derive(Debug, PartialEq)] pub enum Event { Key(Key), Resize, OpenModeIndexComplete(Index), }