1use std::result; 2 3use crate::error::Error; 4 5/// A specialized `Result` type for use with [`Parser`](struct.Parser.html) 6pub type Result<T> = result::Result<T, Error>;