pub type Result<T> = Result<T, InputError>;
enum Result<T> { Ok(T), Err(InputError), }
Contains the success value
Contains the error value