pub enum BrightDataError {
Request(Error),
NetworkError(String),
ApiError(String),
ParseError(String),
ConfigError(String),
InvalidInput(String),
Unexpected(Error),
ToolError(String),
Serialization(Error),
Io(Error),
ToolNotFound(String),
}Variants§
Request(Error)
NetworkError(String)
ApiError(String)
ParseError(String)
ConfigError(String)
InvalidInput(String)
Unexpected(Error)
ToolError(String)
Serialization(Error)
Io(Error)
ToolNotFound(String)
Trait Implementations§
Source§impl Debug for BrightDataError
impl Debug for BrightDataError
Source§impl Display for BrightDataError
impl Display for BrightDataError
Source§impl Error for BrightDataError
impl Error for BrightDataError
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()
Source§impl From<Error> for BrightDataError
impl From<Error> for BrightDataError
Source§impl From<Error> for BrightDataError
impl From<Error> for BrightDataError
Source§impl From<Error> for BrightDataError
impl From<Error> for BrightDataError
Auto Trait Implementations§
impl Freeze for BrightDataError
impl !RefUnwindSafe for BrightDataError
impl Send for BrightDataError
impl Sync for BrightDataError
impl Unpin for BrightDataError
impl !UnwindSafe for BrightDataError
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