pub type ScannerResult<T> = Result<T, ScannerError>;
Expand description

Result type for the scanner

Aliased Type§

enum ScannerResult<T> {
    Ok(T),
    Err(ScannerError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ScannerError)

Contains the error value