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

pub struct ChangeEvent(_);

The ChangeEvent is fired for input, select, and textarea elements when a change to the element's value is committed by the user. Unlike the input event, the change event is not necessarily fired for each change to an element's value.

(JavaScript docs)

Trait Implementations

impl IEvent for ChangeEvent
[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 ChangeEvent
[src]

Formats the value using the given formatter.

impl Clone for ChangeEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl AsRef<Reference> for ChangeEvent
[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

Performs the conversion.