pub struct WebDriver {
pub message: Cow<'static, str>,
pub stacktrace: Cow<'static, str>,
/* private fields */
}
Expand description
Error returned by WebDriver.
Fields§
§message: Cow<'static, str>
Description of this error provided by WebDriver.
stacktrace: Cow<'static, str>
Stacktrace of this error provided by WebDriver.
Implementations§
Source§impl WebDriver
impl WebDriver
Sourcepub fn http_status(&self) -> StatusCode
pub fn http_status(&self) -> StatusCode
Returns HTTP Status of this error provided by WebDriver.
Trait Implementations§
Source§impl Error for WebDriver
impl Error for WebDriver
1.30.0 · 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 WebDriver
impl RefUnwindSafe for WebDriver
impl Send for WebDriver
impl Sync for WebDriver
impl Unpin for WebDriver
impl UnwindSafe for WebDriver
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