[][src]Struct webdriver::response::ElementRectResponse

pub struct ElementRectResponse {
    pub x: f64,
    pub y: f64,
    pub width: f64,
    pub height: f64,
}

Fields

x: f64

X axis position of the top-left corner of the element relative to the current browsing context’s document element in CSS reference pixels.

y: f64

Y axis position of the top-left corner of the element relative to the current browsing context’s document element in CSS reference pixels.

width: f64

Height of the element’s bounding rectangle in CSS reference pixels.

height: f64

Width of the element’s bounding rectangle in CSS reference pixels.

Trait Implementations

impl PartialEq<ElementRectResponse> for ElementRectResponse[src]

impl Debug for ElementRectResponse[src]

impl Serialize for ElementRectResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same<T> for T

type Output = T

Should always be Self