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