Struct webdriver::common::WebElement
[−]
[src]
pub struct WebElement { pub id: String, }
Fields
id: String
Methods
impl WebElement
[src]
fn new(id: String) -> WebElement
[src]
fn from_json(data: &Json) -> WebDriverResult<WebElement>
[src]
Trait Implementations
impl Clone for WebElement
[src]
fn clone(&self) -> WebElement
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for WebElement
[src]
impl PartialEq for WebElement
[src]
fn eq(&self, __arg_0: &WebElement) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &WebElement) -> bool
[src]
This method tests for !=
.
impl ToJson for WebElement
[src]
impl<T> From<T> for WebElement where
T: Into<String>,
[src]
T: Into<String>,
fn from(data: T) -> WebElement
[src]
Performs the conversion.