[][src]Struct stdweb::web::Rect

pub struct Rect(_);

Represents a rectangle. (JavaScript docs)

Methods

impl Rect[src]

pub fn get_x(&self) -> f64[src]

Represents the x coordinate of the DOMRect's origin (JavaScript docs)

pub fn get_y(&self) -> f64[src]

Represents the y coordinate of the DOMRect's origin. (JavaScript docs)

pub fn get_width(&self) -> f64[src]

Represents the width of the DOMRect. (JavaScript docs)

pub fn get_height(&self) -> f64[src]

Represents the height of the DOMRect. (JavaScript docs)

pub fn get_top(&self) -> f64[src]

Returns the top coordinate value of the DOMRect. (Has the same value as y, or y + height if height is negative.) (JavaScript docs)

pub fn get_right(&self) -> f64[src]

Returns the right coordinate value of the DOMRect. (Has the same value as x + width, or x if width is negative.) (JavaScript docs)

pub fn get_bottom(&self) -> f64[src]

Returns the bottom coordinate value of the DOMRect. (Has the same value as y + height, or y if height is negative.) (JavaScript docs)

pub fn get_left(&self) -> f64[src]

Returns the left coordinate value of the DOMRect. (Has the same value as x, or x + width if width is negative.) (JavaScript docs)

Trait Implementations

impl JsSerialize for Rect[src]

impl TryFrom<Rect> for Reference[src]

type Error = Void

The type returned in the event of a conversion error.

impl TryFrom<Reference> for Rect[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl<'_r> TryFrom<&'_r Reference> for Rect[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<Value> for Rect[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl<'_r> TryFrom<&'_r Value> for Rect[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl InstanceOf for Rect[src]

impl ReferenceType for Rect[src]

impl AsRef<Reference> for Rect[src]

impl From<Rect> for Reference[src]

impl Clone for Rect[src]

impl Debug for Rect[src]

Auto Trait Implementations

impl Send for Rect

impl Sync for Rect

impl Unpin for Rect

impl UnwindSafe for Rect

impl RefUnwindSafe for Rect

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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