pub type Result = Result<String, Error>;
Result of the Input function
pub enum Result { Ok(String), Err(Error), }
Contains the success value
Contains the error value