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