pub type ScannerResult<T> = Result<T, ScannerError>;Expand description
Result type for the scanner
Aliased Type§
pub enum ScannerResult<T> {
Ok(T),
Err(ScannerError),
}pub type ScannerResult<T> = Result<T, ScannerError>;Result type for the scanner
pub enum ScannerResult<T> {
Ok(T),
Err(ScannerError),
}