ScannerResult

Type Alias ScannerResult 

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

Result type for the scanner

Aliased Type§

pub 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