Struct stdweb::web::event::HashChangeEvent [] [src]

pub struct HashChangeEvent(_);

The HashChangeEvent is fired when the fragment identifier of the URL has changed (the part of the URL that follows the # symbol, including the # symbol).

(JavaScript docs)

Trait Implementations

impl IEvent for HashChangeEvent
[src]

Returns a string containing the type of event. It is set when the event is constructed and is the name commonly used to refer to the specific event. Read more

Cancels the event if it is cancelable, without stopping further propagation of the event. Read more

impl Debug for HashChangeEvent
[src]

Formats the value using the given formatter.

impl Clone for HashChangeEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl AsRef<Reference> for HashChangeEvent
[src]

Performs the conversion.

impl<T: TryInto<Reference>> TryFrom<T> for HashChangeEvent where
    T::Error: Into<Box<Error>>, 
[src]

The type returned in the event of a conversion error.

Performs the conversion.