pub type Result<T> = Result<T, TokenizerError>;Expand description
Type alias for Results with TokenizerError.
This provides a convenient shorthand for Result types throughout the library.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(TokenizerError),
}