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