pub enum WdaError {
Show 20 variants
RendNotSupported,
FetchToolBuggy,
FetchToolNotFound,
ExtractToolBuggy,
ExtractToolNotFound,
RenameToolBuggy,
RenameToolNotFound,
FetchWebDriver(i32),
ExtractWebDriver(i32),
PlaceWebDriver(i32),
PermitWebDriver(i32),
PlockDataCorrupt,
WdaDataNotFound,
WdcNotReady(WdcError, u16),
WdcFail(WdcError),
Base64DataCorrupt(DecodeSliceError),
InternetConnection,
InvalidUrl,
UnsupportedAutomation,
Buggy,
}Variants§
RendNotSupported
FetchToolBuggy
FetchToolNotFound
ExtractToolBuggy
ExtractToolNotFound
RenameToolBuggy
RenameToolNotFound
FetchWebDriver(i32)
ExtractWebDriver(i32)
PlaceWebDriver(i32)
PermitWebDriver(i32)
PlockDataCorrupt
WdaDataNotFound
WdcNotReady(WdcError, u16)
Webdriver client is not ready for automation, element 0 is the original error thrown by client, element 1 is the TCP port used by corresponding server.
WdcFail(WdcError)
Base64DataCorrupt(DecodeSliceError)
InternetConnection
InvalidUrl
UnsupportedAutomation
Buggy
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for WdaError
impl Send for WdaError
impl Sync for WdaError
impl Unpin for WdaError
impl UnwindSafe for WdaError
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