Struct stdweb::web::History [] [src]

pub struct History(_);

Methods

impl History
[src]

[src]

Adds a new entry to history.

pushState() takes three parameters: a state object, a title (which is currently ignored), and (optionally) a URL. Let's examine each of these three parameters in more detail:

  • state object — The state object is a JavaScript object which is associated with the new history entry created by pushState(). Whenever the user navigates to the new state, a popstate event is fired, and the state property of the event contains a copy of the history entry's state object.

  • title — Firefox currently ignores this parameter, although it may use it in the future. Passing the empty string here should be safe against future changes to the method. Alternatively, you could pass a short title for the state to which you're moving.

  • URL — The new history entry's URL is given by this parameter. Note that the browser won't attempt to load this URL after a call to pushState(), but it might attempt to load the URL later, for instance after the user restarts the browser. The new URL does not need to be absolute; if it's relative, it's resolved relative to the current URL. The new URL must be of the same origin as the current URL; otherwise, pushState() will throw an exception. This parameter is optional; if it isn't specified, it's set to the document's current URL.

(JavaScript docs)

[src]

Operates exactly like history.push_state() except that replace_state() modifies the current history entry instead of creating a new one. Note that this doesn't prevent the creation of a new entry in the global browser history.

(JavaScript docs)

[src]

You can use the go() method to load a specific page from session history, identified by its relative position to the current page (with the current page being, of course, relative index 0).

(JavaScript docs)

[src]

Move one step backward through history.

(JavaScript docs)

[src]

Move one step forward through history.

(JavaScript docs)

[src]

Returns the current number of history entries.

(JavaScript docs)

Trait Implementations

impl Clone for History
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for History
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for History
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for History
[src]

impl InstanceOf for History
[src]

[src]

Checks whenever a given Reference if of type Self.

impl AsRef<Reference> for History
[src]

[src]

Performs the conversion.

impl ReferenceType for History
[src]

[src]

Converts a given reference into a concrete reference-like wrapper. Doesn't do any type checking; highly unsafe to use! Read more

impl From<History> for Reference
[src]

[src]

Performs the conversion.

impl TryFrom<History> for Reference
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Reference> for History
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Value> for History
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl JsSerialize for History
[src]

Auto Trait Implementations

impl Send for History

impl Sync for History