pub type OcrResult<T> = Result<T, OcrError>;
OCR result type alias
pub enum OcrResult<T> { Ok(T), Err(OcrError), }
Contains the success value
Contains the error value