pub type Result<T> = Result<T, ScraperError>;
Result
enum Result<T> { Ok(T), Err(ScraperError), }
Contains the success value
Contains the error value