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