Struct webui::InputEvent
source · [−]#[repr(transparent)]pub struct InputEvent { /* private fields */ }Expand description
The InputEvent class.
This API requires the following crate features to be activated: InputEvent
Implementations
sourceimpl InputEvent
impl InputEvent
sourcepub fn is_composing(&self) -> bool
pub fn is_composing(&self) -> bool
Getter for the isComposing field of this object.
This API requires the following crate features to be activated: InputEvent
sourceimpl InputEvent
impl InputEvent
sourcepub fn input_type(&self) -> String
pub fn input_type(&self) -> String
Getter for the inputType field of this object.
This API requires the following crate features to be activated: InputEvent
sourceimpl InputEvent
impl InputEvent
sourceimpl InputEvent
impl InputEvent
sourceimpl InputEvent
impl InputEvent
sourcepub fn new_with_event_init_dict(
type_: &str,
event_init_dict: &InputEventInit
) -> Result<InputEvent, JsValue>
pub fn new_with_event_init_dict(
type_: &str,
event_init_dict: &InputEventInit
) -> Result<InputEvent, JsValue>
The new InputEvent(..) constructor, creating a new instance of InputEvent.
This API requires the following crate features to be activated: InputEvent, InputEventInit
sourceimpl InputEvent
impl InputEvent
sourcepub fn get_target_ranges(&self) -> Array
pub fn get_target_ranges(&self) -> Array
The getTargetRanges() method.
This API requires the following crate features to be activated: InputEvent
Methods from Deref<Target = UiEvent>
sourcepub fn range_parent(&self) -> Option<Node>
pub fn range_parent(&self) -> Option<Node>
Getter for the rangeParent field of this object.
This API requires the following crate features to be activated: Node, UiEvent
sourcepub fn range_offset(&self) -> i32
pub fn range_offset(&self) -> i32
Getter for the rangeOffset field of this object.
This API requires the following crate features to be activated: UiEvent
sourcepub fn init_ui_event(&self, a_type: &str)
pub fn init_ui_event(&self, a_type: &str)
The initUIEvent() method.
This API requires the following crate features to be activated: UiEvent
sourcepub fn init_ui_event_with_a_can_bubble(&self, a_type: &str, a_can_bubble: bool)
pub fn init_ui_event_with_a_can_bubble(&self, a_type: &str, a_can_bubble: bool)
The initUIEvent() method.
This API requires the following crate features to be activated: UiEvent
sourcepub fn init_ui_event_with_a_can_bubble_and_a_cancelable(
&self,
a_type: &str,
a_can_bubble: bool,
a_cancelable: bool
)
pub fn init_ui_event_with_a_can_bubble_and_a_cancelable(
&self,
a_type: &str,
a_can_bubble: bool,
a_cancelable: bool
)
The initUIEvent() method.
This API requires the following crate features to be activated: UiEvent
pub const SCROLL_PAGE_UP: i32 = -32_768i32
pub const SCROLL_PAGE_DOWN: i32 = 32_768i32
Methods from Deref<Target = Event>
sourcepub fn target(&self) -> Option<EventTarget>
pub fn target(&self) -> Option<EventTarget>
Getter for the target field of this object.
This API requires the following crate features to be activated: Event, EventTarget
sourcepub fn current_target(&self) -> Option<EventTarget>
pub fn current_target(&self) -> Option<EventTarget>
Getter for the currentTarget field of this object.
This API requires the following crate features to be activated: Event, EventTarget
sourcepub fn event_phase(&self) -> u16
pub fn event_phase(&self) -> u16
Getter for the eventPhase field of this object.
This API requires the following crate features to be activated: Event
sourcepub fn cancelable(&self) -> bool
pub fn cancelable(&self) -> bool
Getter for the cancelable field of this object.
This API requires the following crate features to be activated: Event
sourcepub fn default_prevented(&self) -> bool
pub fn default_prevented(&self) -> bool
Getter for the defaultPrevented field of this object.
This API requires the following crate features to be activated: Event
sourcepub fn is_trusted(&self) -> bool
pub fn is_trusted(&self) -> bool
Getter for the isTrusted field of this object.
This API requires the following crate features to be activated: Event
sourcepub fn time_stamp(&self) -> f64
pub fn time_stamp(&self) -> f64
Getter for the timeStamp field of this object.
This API requires the following crate features to be activated: Event
sourcepub fn cancel_bubble(&self) -> bool
pub fn cancel_bubble(&self) -> bool
Getter for the cancelBubble field of this object.
This API requires the following crate features to be activated: Event
sourcepub fn set_cancel_bubble(&self, value: bool)
pub fn set_cancel_bubble(&self, value: bool)
Setter for the cancelBubble field of this object.
This API requires the following crate features to be activated: Event
sourcepub fn composed_path(&self) -> Array
pub fn composed_path(&self) -> Array
The composedPath() method.
This API requires the following crate features to be activated: Event
sourcepub fn init_event(&self, type_: &str)
pub fn init_event(&self, type_: &str)
The initEvent() method.
This API requires the following crate features to be activated: Event
sourcepub fn init_event_with_bubbles(&self, type_: &str, bubbles: bool)
pub fn init_event_with_bubbles(&self, type_: &str, bubbles: bool)
The initEvent() method.
This API requires the following crate features to be activated: Event
sourcepub fn init_event_with_bubbles_and_cancelable(
&self,
type_: &str,
bubbles: bool,
cancelable: bool
)
pub fn init_event_with_bubbles_and_cancelable(
&self,
type_: &str,
bubbles: bool,
cancelable: bool
)
The initEvent() method.
This API requires the following crate features to be activated: Event
sourcepub fn prevent_default(&self)
pub fn prevent_default(&self)
The preventDefault() method.
This API requires the following crate features to be activated: Event
sourcepub fn stop_immediate_propagation(&self)
pub fn stop_immediate_propagation(&self)
The stopImmediatePropagation() method.
This API requires the following crate features to be activated: Event
sourcepub fn stop_propagation(&self)
pub fn stop_propagation(&self)
The stopPropagation() method.
This API requires the following crate features to be activated: Event
Methods from Deref<Target = Object>
sourcepub fn constructor(&self) -> Function
pub fn constructor(&self) -> Function
The constructor property returns a reference to the Object constructor
function that created the instance object.
sourcepub fn has_own_property(&self, property: &JsValue) -> bool
pub fn has_own_property(&self, property: &JsValue) -> bool
The hasOwnProperty() method returns a boolean indicating whether the
object has the specified property as its own property (as opposed to
inheriting it).
sourcepub fn is_prototype_of(&self, value: &JsValue) -> bool
pub fn is_prototype_of(&self, value: &JsValue) -> bool
The isPrototypeOf() method checks if an object exists in another
object’s prototype chain.
sourcepub fn property_is_enumerable(&self, property: &JsValue) -> bool
pub fn property_is_enumerable(&self, property: &JsValue) -> bool
The propertyIsEnumerable() method returns a Boolean indicating
whether the specified property is enumerable.
sourcepub fn to_locale_string(&self) -> JsString
pub fn to_locale_string(&self) -> JsString
The toLocaleString() method returns a string representing the object.
This method is meant to be overridden by derived objects for
locale-specific purposes.
Methods from Deref<Target = JsValue>
pub const NULL: JsValue = JsValue{ idx: JSIDX_NULL, _marker: marker::PhantomData,}
pub const UNDEFINED: JsValue = JsValue{ idx: JSIDX_UNDEFINED, _marker: marker::PhantomData,}
pub const TRUE: JsValue = JsValue{ idx: JSIDX_TRUE, _marker: marker::PhantomData,}
pub const FALSE: JsValue = JsValue{ idx: JSIDX_FALSE, _marker: marker::PhantomData,}
sourcepub fn into_serde<T>(&self) -> Result<T, Error>where
T: for<'a> Deserialize<'a>,
👎Deprecated: causes dependency cycles, use serde-wasm-bindgen or gloo_utils::format::JsValueSerdeExt instead
pub fn into_serde<T>(&self) -> Result<T, Error>where
T: for<'a> Deserialize<'a>,
serde-wasm-bindgen or gloo_utils::format::JsValueSerdeExt insteadInvokes JSON.stringify on this value and then parses the resulting
JSON into an arbitrary Rust value.
This function is deprecated, due to creating a dependency cycle in
some circumstances. Use serde-wasm-bindgen or
gloo_utils::format::JsValueSerdeExt instead.
This function will first call JSON.stringify on the JsValue itself.
The resulting string is then passed into Rust which then parses it as
JSON into the resulting value.
Usage of this API requires activating the serde-serialize feature of
the wasm-bindgen crate.
Errors
Returns any error encountered when parsing the JSON into a T.
sourcepub fn as_f64(&self) -> Option<f64>
pub fn as_f64(&self) -> Option<f64>
Returns the f64 value of this JS value if it’s an instance of a
number.
If this JS value is not an instance of a number then this returns
None.
sourcepub fn as_string(&self) -> Option<String>
pub fn as_string(&self) -> Option<String>
If this JS value is a string value, this function copies the JS string
value into wasm linear memory, encoded as UTF-8, and returns it as a
Rust String.
To avoid the copying and re-encoding, consider the
JsString::try_from() function from js-sys
instead.
If this JS value is not an instance of a string or if it’s not valid
utf-8 then this returns None.
UTF-16 vs UTF-8
JavaScript strings in general are encoded as UTF-16, but Rust strings
are encoded as UTF-8. This can cause the Rust string to look a bit
different than the JS string sometimes. For more details see the
documentation about the str type which contains a few
caveats about the encodings.
sourcepub fn as_bool(&self) -> Option<bool>
pub fn as_bool(&self) -> Option<bool>
Returns the bool value of this JS value if it’s an instance of a
boolean.
If this JS value is not an instance of a boolean then this returns
None.
sourcepub fn is_undefined(&self) -> bool
pub fn is_undefined(&self) -> bool
Tests whether this JS value is undefined
sourcepub fn is_function(&self) -> bool
pub fn is_function(&self) -> bool
Tests whether the type of this JS value is function.
sourcepub fn js_in(&self, obj: &JsValue) -> bool
pub fn js_in(&self, obj: &JsValue) -> bool
Applies the binary in JS operator on the two JsValues.
sourcepub fn loose_eq(&self, other: &JsValue) -> bool
pub fn loose_eq(&self, other: &JsValue) -> bool
Compare two JsValues for equality, using the == operator in JS.
sourcepub fn unsigned_shr(&self, rhs: &JsValue) -> u32
pub fn unsigned_shr(&self, rhs: &JsValue) -> u32
Applies the binary >>> JS operator on the two JsValues.
sourcepub fn checked_div(&self, rhs: &JsValue) -> JsValue
pub fn checked_div(&self, rhs: &JsValue) -> JsValue
Applies the binary / JS operator on two JsValues, catching and returning any RangeError thrown.
sourcepub fn pow(&self, rhs: &JsValue) -> JsValue
pub fn pow(&self, rhs: &JsValue) -> JsValue
Applies the binary ** JS operator on the two JsValues.
sourcepub fn lt(&self, other: &JsValue) -> bool
pub fn lt(&self, other: &JsValue) -> bool
Applies the binary < JS operator on the two JsValues.
sourcepub fn le(&self, other: &JsValue) -> bool
pub fn le(&self, other: &JsValue) -> bool
Applies the binary <= JS operator on the two JsValues.
sourcepub fn ge(&self, other: &JsValue) -> bool
pub fn ge(&self, other: &JsValue) -> bool
Applies the binary >= JS operator on the two JsValues.
sourcepub fn gt(&self, other: &JsValue) -> bool
pub fn gt(&self, other: &JsValue) -> bool
Applies the binary > JS operator on the two JsValues.
sourcepub fn unchecked_into_f64(&self) -> f64
pub fn unchecked_into_f64(&self) -> f64
Applies the unary + JS operator on a JsValue. Can throw.
Trait Implementations
sourceimpl AsRef<Event> for InputEvent
impl AsRef<Event> for InputEvent
sourceimpl AsRef<InputEvent> for InputEvent
impl AsRef<InputEvent> for InputEvent
sourcefn as_ref(&self) -> &InputEvent
fn as_ref(&self) -> &InputEvent
sourceimpl AsRef<JsValue> for InputEvent
impl AsRef<JsValue> for InputEvent
sourceimpl AsRef<Object> for InputEvent
impl AsRef<Object> for InputEvent
sourceimpl AsRef<UiEvent> for InputEvent
impl AsRef<UiEvent> for InputEvent
sourceimpl Clone for InputEvent
impl Clone for InputEvent
sourcefn clone(&self) -> InputEvent
fn clone(&self) -> InputEvent
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresourceimpl Debug for InputEvent
impl Debug for InputEvent
sourceimpl Deref for InputEvent
impl Deref for InputEvent
sourceimpl From<InputEvent> for Event
impl From<InputEvent> for Event
sourcefn from(obj: InputEvent) -> Event
fn from(obj: InputEvent) -> Event
sourceimpl From<InputEvent> for JsValue
impl From<InputEvent> for JsValue
sourcefn from(obj: InputEvent) -> JsValue
fn from(obj: InputEvent) -> JsValue
sourceimpl From<InputEvent> for Object
impl From<InputEvent> for Object
sourcefn from(obj: InputEvent) -> Object
fn from(obj: InputEvent) -> Object
sourceimpl From<InputEvent> for UiEvent
impl From<InputEvent> for UiEvent
sourcefn from(obj: InputEvent) -> UiEvent
fn from(obj: InputEvent) -> UiEvent
sourceimpl From<JsValue> for InputEvent
impl From<JsValue> for InputEvent
sourcefn from(obj: JsValue) -> InputEvent
fn from(obj: JsValue) -> InputEvent
sourceimpl FromWasmAbi for InputEvent
impl FromWasmAbi for InputEvent
type Abi = <JsValue as FromWasmAbi>::Abi
type Abi = <JsValue as FromWasmAbi>::Abi
sourceunsafe fn from_abi(js: <InputEvent as FromWasmAbi>::Abi) -> InputEvent
unsafe fn from_abi(js: <InputEvent as FromWasmAbi>::Abi) -> InputEvent
sourceimpl<'a> IntoWasmAbi for &'a InputEvent
impl<'a> IntoWasmAbi for &'a InputEvent
type Abi = <&'a JsValue as IntoWasmAbi>::Abi
type Abi = <&'a JsValue as IntoWasmAbi>::Abi
sourcefn into_abi(self) -> <&'a InputEvent as IntoWasmAbi>::Abi
fn into_abi(self) -> <&'a InputEvent as IntoWasmAbi>::Abi
sourceimpl IntoWasmAbi for InputEvent
impl IntoWasmAbi for InputEvent
type Abi = <JsValue as IntoWasmAbi>::Abi
type Abi = <JsValue as IntoWasmAbi>::Abi
sourcefn into_abi(self) -> <InputEvent as IntoWasmAbi>::Abi
fn into_abi(self) -> <InputEvent as IntoWasmAbi>::Abi
sourceimpl JsCast for InputEvent
impl JsCast for InputEvent
sourcefn instanceof(val: &JsValue) -> bool
fn instanceof(val: &JsValue) -> bool
instanceof check to see whether the JsValue
provided is an instance of this type. Read moresourcefn unchecked_from_js(val: JsValue) -> InputEvent
fn unchecked_from_js(val: JsValue) -> InputEvent
sourcefn unchecked_from_js_ref(val: &JsValue) -> &InputEvent
fn unchecked_from_js_ref(val: &JsValue) -> &InputEvent
sourcefn has_type<T>(&self) -> boolwhere
T: JsCast,
fn has_type<T>(&self) -> boolwhere
T: JsCast,
T. Read moresourcefn dyn_into<T>(self) -> Result<T, Self>where
T: JsCast,
fn dyn_into<T>(self) -> Result<T, Self>where
T: JsCast,
T. Read moresourcefn dyn_ref<T>(&self) -> Option<&T>where
T: JsCast,
fn dyn_ref<T>(&self) -> Option<&T>where
T: JsCast,
T. Read moresourcefn unchecked_into<T>(self) -> Twhere
T: JsCast,
fn unchecked_into<T>(self) -> Twhere
T: JsCast,
sourcefn unchecked_ref<T>(&self) -> &Twhere
T: JsCast,
fn unchecked_ref<T>(&self) -> &Twhere
T: JsCast,
sourcefn is_instance_of<T>(&self) -> boolwhere
T: JsCast,
fn is_instance_of<T>(&self) -> boolwhere
T: JsCast,
T. Read moresourcefn is_type_of(val: &JsValue) -> bool
fn is_type_of(val: &JsValue) -> bool
JsValue provided
is a value of this type. Read moresourceimpl OptionFromWasmAbi for InputEvent
impl OptionFromWasmAbi for InputEvent
sourcefn is_none(abi: &<InputEvent as FromWasmAbi>::Abi) -> bool
fn is_none(abi: &<InputEvent as FromWasmAbi>::Abi) -> bool
None, and otherwise it will be passed to
FromWasmAbi. Read moresourceimpl<'a> OptionIntoWasmAbi for &'a InputEvent
impl<'a> OptionIntoWasmAbi for &'a InputEvent
sourcefn none() -> <&'a InputEvent as IntoWasmAbi>::Abi
fn none() -> <&'a InputEvent as IntoWasmAbi>::Abi
None branch of this option. Read moresourceimpl OptionIntoWasmAbi for InputEvent
impl OptionIntoWasmAbi for InputEvent
sourcefn none() -> <InputEvent as IntoWasmAbi>::Abi
fn none() -> <InputEvent as IntoWasmAbi>::Abi
None branch of this option. Read moresourceimpl PartialEq<InputEvent> for InputEvent
impl PartialEq<InputEvent> for InputEvent
sourcefn eq(&self, other: &InputEvent) -> bool
fn eq(&self, other: &InputEvent) -> bool
sourceimpl RefFromWasmAbi for InputEvent
impl RefFromWasmAbi for InputEvent
type Abi = <JsValue as RefFromWasmAbi>::Abi
type Abi = <JsValue as RefFromWasmAbi>::Abi
Self are recovered from.type Anchor = ManuallyDrop<InputEvent>
type Anchor = ManuallyDrop<InputEvent>
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous. Read moresourceunsafe fn ref_from_abi(
js: <InputEvent as RefFromWasmAbi>::Abi
) -> <InputEvent as RefFromWasmAbi>::Anchor
unsafe fn ref_from_abi(
js: <InputEvent as RefFromWasmAbi>::Abi
) -> <InputEvent as RefFromWasmAbi>::Anchor
impl Eq for InputEvent
impl StructuralEq for InputEvent
impl StructuralPartialEq for InputEvent
Auto Trait Implementations
impl RefUnwindSafe for InputEvent
impl !Send for InputEvent
impl !Sync for InputEvent
impl Unpin for InputEvent
impl UnwindSafe for InputEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.sourceimpl<T> IntoPropValue<Option<T>> for T
impl<T> IntoPropValue<Option<T>> for T
sourcefn into_prop_value(self) -> Option<T>
fn into_prop_value(self) -> Option<T>
self to a value of a Properties struct.sourceimpl<T> IntoPropValue<T> for T
impl<T> IntoPropValue<T> for T
sourcefn into_prop_value(self) -> T
fn into_prop_value(self) -> T
self to a value of a Properties struct.sourceimpl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
IntoWasmAbi::Abisourcefn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err. Read moresourceimpl<E> TargetCast for Ewhere
E: AsRef<Event>,
impl<E> TargetCast for Ewhere
E: AsRef<Event>,
sourcefn target_dyn_into<T>(&self) -> Option<T>where
T: AsRef<EventTarget> + JsCast,
fn target_dyn_into<T>(&self) -> Option<T>where
T: AsRef<EventTarget> + JsCast,
T. Read moresourcefn target_unchecked_into<T>(&self) -> Twhere
T: AsRef<EventTarget> + JsCast,
fn target_unchecked_into<T>(&self) -> Twhere
T: AsRef<EventTarget> + JsCast,
T. Read more