[−][src]Struct stdweb::web::event::KeyPressEvent
The KeyPressEvent is fired when a key is pressed down. It's only
fired for keys which produce a character value.
Trait Implementations
impl JsSerialize for KeyPressEvent[src]
impl TryFrom<KeyPressEvent> for Reference[src]
type Error = Void
The type returned in the event of a conversion error.
fn try_from(value: KeyPressEvent) -> Result<Self, Self::Error>[src]
impl TryFrom<Reference> for KeyPressEvent[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: Reference) -> Result<Self, Self::Error>[src]
impl<'_r> TryFrom<&'_r Reference> for KeyPressEvent[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: &Reference) -> Result<Self, Self::Error>[src]
impl TryFrom<Value> for KeyPressEvent[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error>[src]
impl<'_r> TryFrom<&'_r Value> for KeyPressEvent[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error>[src]
impl InstanceOf for KeyPressEvent[src]
fn instance_of(reference: &Reference) -> bool[src]
impl ReferenceType for KeyPressEvent[src]
unsafe fn from_reference_unchecked(reference: Reference) -> Self[src]
impl IEvent for KeyPressEvent[src]
fn bubbles(&self) -> bool[src]
fn cancel_bubble(&self) -> bool[src]
fn set_cancel_bubble(&self, value: bool)[src]
fn cancelable(&self) -> bool[src]
fn current_target(&self) -> Option<EventTarget>[src]
fn default_prevented(&self) -> bool[src]
fn event_phase(&self) -> EventPhase[src]
fn stop_immediate_propagation(&self)[src]
fn stop_propagation(&self)[src]
fn target(&self) -> Option<EventTarget>[src]
fn time_stamp(&self) -> Option<f64>[src]
fn is_trusted(&self) -> bool[src]
fn event_type(&self) -> String[src]
fn prevent_default(&self)[src]
impl ConcreteEvent for KeyPressEvent[src]
const EVENT_TYPE: &'static str[src]
impl IKeyboardEvent for KeyPressEvent[src]
fn alt_key(&self) -> bool[src]
fn code(&self) -> String[src]
fn ctrl_key(&self) -> bool[src]
fn get_modifier_state(&self, key: ModifierKey) -> bool[src]
fn is_composing(&self) -> bool[src]
fn location(&self) -> KeyboardLocation[src]
fn key(&self) -> String[src]
fn meta_key(&self) -> bool[src]
fn repeat(&self) -> bool[src]
fn shift_key(&self) -> bool[src]
impl From<KeyPressEvent> for Reference[src]
fn from(value: KeyPressEvent) -> Self[src]
impl Clone for KeyPressEvent[src]
fn clone(&self) -> KeyPressEvent[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl AsRef<Reference> for KeyPressEvent[src]
impl Eq for KeyPressEvent[src]
impl PartialEq<KeyPressEvent> for KeyPressEvent[src]
fn eq(&self, other: &KeyPressEvent) -> bool[src]
fn ne(&self, other: &KeyPressEvent) -> bool[src]
impl Debug for KeyPressEvent[src]
Auto Trait Implementations
impl Send for KeyPressEvent
impl Sync for KeyPressEvent
impl Unpin for KeyPressEvent
impl UnwindSafe for KeyPressEvent
impl RefUnwindSafe for KeyPressEvent
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,