pub type SyntaxResult<T> = Result<T, SyntaxError>;Expand description
Result type returned when compiling templates.
Aliased Type§
pub enum SyntaxResult<T> {
Ok(T),
Err(SyntaxError),
}pub type SyntaxResult<T> = Result<T, SyntaxError>;Result type returned when compiling templates.
pub enum SyntaxResult<T> {
Ok(T),
Err(SyntaxError),
}