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

pub struct ClickEvent(_);

The ClickEvent is fired when a pointing device button (usually a mouse's primary button) is pressed and released on a single element.

(JavaScript docs)

Trait Implementations

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

impl IMouseEvent for ClickEvent
[src]

impl Debug for ClickEvent
[src]

Formats the value using the given formatter.

impl Clone for ClickEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl AsRef<Reference> for ClickEvent
[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

Performs the conversion.