[][src]Struct stdweb::web::Window

pub struct Window(_);

The Window object represents a window containing a DOM document.

(JavaScript docs)

Methods

impl Window[src]

pub fn alert(&self, message: &str)[src]

The Window.alert() method displays an alert dialog with the optional specified content and an OK button.

(JavaScript docs)

pub fn confirm(&self, message: &str) -> bool[src]

The Window.confirm() method displays a modal dialog with an optional message and two buttons: OK and Cancel.

(JavaScript docs)

pub fn local_storage(&self) -> Storage[src]

The local_storage property allows you to access a local Storage object.

It is similar to the Window::session_storage. The only difference is that, while data stored in local_storage has no expiration time, data stored in session_storage gets cleared when the browsing session ends - that is, when the browser is closed.

(JavaScript docs)

pub fn session_storage(&self) -> Storage[src]

The session_storage property allows you to access a session Storage object for the current origin.

It is similar to the Window::local_storage, The only difference is that, while data stored in local_storage has no expiration time, data stored in session_storage gets cleared when the browsing session ends.

A page session lasts for as long as the browser is open and survives over page reloads and restores. Opening a page in a new tab or window will cause a new session to be initiated, which differs from how session cookies work.

(JavaScript docs)

pub fn location(&self) -> Option<Location>[src]

Returns a Location object which contains information about the URL of the document and provides methods for changing that URL and loading another URL.

(JavaScript docs)

pub fn request_animation_frame<F: FnOnce(f64) + 'static>(
    &self,
    callback: F
) -> RequestAnimationFrameHandle
[src]

You should call this method whenever you're ready to update your animation onscreen. This will request that your animation function be called before the browser performs the next repaint. The number of callbacks is usually 60 times per second, but will generally match the display refresh rate in most web browsers as per W3C recommendation. request_animation_frame() calls are paused in most browsers when running in background tabs or hidden iframes in order to improve performance and battery life.

The callback method is passed a single argument, a f64, which indicates the current time when callbacks queued by requestAnimationFrame() begin to fire. Multiple callbacks in a single frame, therefore, each receive the same timestamp even though time has passed during the computation of every previous callback's workload. This timestamp is a decimal number, in milliseconds, but with a minimal precision of 1ms (1000 µs).

(JavaScript docs)

pub fn history(&self) -> History[src]

Returns the global History object, which provides methods to manipulate the browser history.

(JavaScript docs)

pub fn inner_width(&self) -> i32[src]

Returns the width (in pixels) of the browser window viewport including, if rendered, the vertical scrollbar.

(JavaScript docs)

pub fn inner_height(&self) -> i32[src]

Returns the height (in pixels) of the browser window viewport including, if rendered, the horizontal scrollbar.

(JavaScript docs)

pub fn outer_width(&self) -> i32[src]

Returns the width of the outside of the browser window. It represents the width of the whole browser window including sidebar (if expanded), window chrome and window resizing borders/handles.

(JavaScript docs)

pub fn outer_height(&self) -> i32[src]

Returns the height of the outside of the browser window. It represents the height of the whole browser window including sidebar (if expanded), window chrome and window resizing borders/handles.

(JavaScript docs)

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

The read-only Window property pageYOffset is an alias for scrollY; as such, it returns the number of pixels the document is currently scrolled along the vertical axis (that is, up or down), with a value of 0.0 indicating that the top edge of the Document is currently aligned with the top edge of the window's content area.

(JavaScript docs)

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

This is an alias for scrollX.

(JavaScript docs)

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

The ratio in resolution from physical pixels to CSS pixels

(JavaScript docs)

pub fn get_selection(&self) -> Option<Selection>[src]

Returns a Selection object representing the range of text selected by the user or the current position of the caret. (Javascript docs)

Trait Implementations

impl JsSerialize for Window[src]

impl TryFrom<EventTarget> for Window[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<Window> for Reference[src]

type Error = Void

The type returned in the event of a conversion error.

impl TryFrom<Reference> for Window[src]

type Error = ConversionError

The type returned in the event of a conversion error.

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

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<Value> for Window[src]

type Error = ConversionError

The type returned in the event of a conversion error.

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

type Error = ConversionError

The type returned in the event of a conversion error.

impl InstanceOf for Window[src]

impl ReferenceType for Window[src]

impl IEventTarget for Window[src]

impl IWindowOrWorker for Window[src]

impl AsRef<Reference> for Window[src]

impl From<Window> for EventTarget[src]

impl From<Window> for Reference[src]

impl Clone for Window[src]

impl Eq for Window[src]

impl PartialEq<Window> for Window[src]

impl Debug for Window[src]

Auto Trait Implementations

impl Send for Window

impl Sync for Window

impl Unpin for Window

impl UnwindSafe for Window

impl RefUnwindSafe for Window

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]