1 2 3 4 5 6 7
use crate::error::InquireResult; use super::Key; pub trait InputReader: Sized { fn read_key(&mut self) -> InquireResult<Key>; }