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