pub enum ScraperError {
RequestError(Error),
RateLimitError,
ExtractionError(String),
LLMError(String),
SearchError(String),
}
Expand description
The ScraperError
enum represents various errors that can occur in the scraper application.
Variants§
RequestError(Error)
Represents an error that occurs during an HTTP request.
RateLimitError
Represents an error that occurs when the rate limit is exceeded.
ExtractionError(String)
Represents an error that occurs during content extraction.
LLMError(String)
Represents an error that occurs during LLM processing.
SearchError(String)
Represents an error that occurs during a search operation.
Trait Implementations§
Source§impl Debug for ScraperError
impl Debug for ScraperError
Source§impl Display for ScraperError
impl Display for ScraperError
Source§impl Error for ScraperError
impl Error for ScraperError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for ScraperError
impl !RefUnwindSafe for ScraperError
impl Send for ScraperError
impl Sync for ScraperError
impl Unpin for ScraperError
impl !UnwindSafe for ScraperError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more