pub type SyntaxResult<T> = Result<T, SyntaxError>;Expand description
Result type for syntax highlighting operations.
Aliased Type§
pub enum SyntaxResult<T> {
Ok(T),
Err(SyntaxError),
}pub type SyntaxResult<T> = Result<T, SyntaxError>;Result type for syntax highlighting operations.
pub enum SyntaxResult<T> {
Ok(T),
Err(SyntaxError),
}