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

pub struct DoubleClickEvent(_);

The DoubleClickEvent is fired when a pointing device button (usually a mouse's primary button) is clicked twice on a single element.

(JavaScript docs)

Trait Implementations

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

impl IMouseEvent for DoubleClickEvent
[src]

impl Debug for DoubleClickEvent
[src]

Formats the value using the given formatter.

impl Clone for DoubleClickEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl AsRef<Reference> for DoubleClickEvent
[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

Performs the conversion.