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

pub struct KeypressEvent(_);

The KeypressEvent is fired when a key is pressed down, and that key normally produces a character value.

(JavaScript docs)

Trait Implementations

impl IEvent for KeypressEvent
[src]

[src]

Indicates whether this event bubbles upward through the DOM. Read more

[src]

A historical alias to Event.stopPropagation(). Read more

[src]

A historical alias to Event.stopPropagation(). Setting this to true before returning from an event handler will stop propagation of the event. Read more

[src]

Indicates whether the event is cancelable. Read more

[src]

A reference to the currently registered target of this event. Read more

[src]

Indicates whether preventDefault has been called on this event. Read more

[src]

Indicates which phase of event flow is currently being evaluated. Read more

[src]

Prevents any further listeners from being called for this event. Read more

[src]

Stops the propagation of this event to descendants in the DOM. Read more

[src]

Returns a reference to the target to which this event was originally registered. Read more

[src]

Returns the time in milliseconds at which this event was created. Read more

[src]

Indicates whether the event was generated by a user action.

[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

[src]

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

impl IKeyboardEvent for KeypressEvent
[src]

[src]

Indicates whether the Alt key was down when this event was fired. Read more

[src]

Returns a code value that indicates the physical key pressed on the keyboard. Read more

[src]

Returns whether the Ctrl key was down when this event was fired. Read more

[src]

Returns whether a modifier key was down when this event was fired. Read more

[src]

Returns whether this event was fired during composition. Read more

[src]

Returns the location of the key on the keyboard. Read more

[src]

Returns the value of a key or keys pressed by the user. Read more

[src]

Indicates whether the Meta key was down when this event was fired. Read more

[src]

Indicates whether the key is held down such that it is repeating. Read more

[src]

Indicates whether the Shift key was down when this event was fired. Read more

impl ConcreteEvent for KeypressEvent
[src]

EVENT_TYPE: &'static str = "keypress"

A string representing the event type. Read more

impl Debug for KeypressEvent
[src]

[src]

Formats the value using the given formatter.

impl Clone for KeypressEvent
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl AsRef<Reference> for KeypressEvent
[src]

[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

[src]

Performs the conversion.