pub enum WebViewInputError {
Script(WebViewScriptError),
ElementNotFound(String),
ElementNotInteractable(String),
Unsupported(&'static str),
Destroyed,
NavigationChanged,
Platform(String),
}Variants§
Script(WebViewScriptError)
ElementNotFound(String)
ElementNotInteractable(String)
Unsupported(&'static str)
Destroyed
Platform(String)
Trait Implementations§
Source§impl Clone for WebViewInputError
impl Clone for WebViewInputError
Source§fn clone(&self) -> WebViewInputError
fn clone(&self) -> WebViewInputError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WebViewInputError
impl Debug for WebViewInputError
Source§impl Display for WebViewInputError
impl Display for WebViewInputError
impl Eq for WebViewInputError
Source§impl Error for WebViewInputError
impl Error for WebViewInputError
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<WebViewScriptError> for WebViewInputError
impl From<WebViewScriptError> for WebViewInputError
Source§fn from(source: WebViewScriptError) -> Self
fn from(source: WebViewScriptError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WebViewInputError
impl PartialEq for WebViewInputError
Source§fn eq(&self, other: &WebViewInputError) -> bool
fn eq(&self, other: &WebViewInputError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WebViewInputError
Auto Trait Implementations§
impl Freeze for WebViewInputError
impl RefUnwindSafe for WebViewInputError
impl Send for WebViewInputError
impl Sync for WebViewInputError
impl Unpin for WebViewInputError
impl UnsafeUnpin for WebViewInputError
impl UnwindSafe for WebViewInputError
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