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

pub struct BlurEvent(_);

The BlurEvent is fired when an element has lost focus. The main difference between this event and focusout is that only the latter bubbles.

(JavaScript docs)

Trait Implementations

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

impl Debug for BlurEvent
[src]

Formats the value using the given formatter.

impl Clone for BlurEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl AsRef<Reference> for BlurEvent
[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

Performs the conversion.