OcrResult

Type Alias OcrResult 

Source
pub type OcrResult<T> = Result<T, OcrError>;
Expand description

OCR result type alias

Aliased Type§

pub enum OcrResult<T> {
    Ok(T),
    Err(OcrError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(OcrError)

Contains the error value