[][src]Struct web_sys::InputEventInit

#[repr(transparent)]pub struct InputEventInit { /* fields omitted */ }

The InputEventInit dictionary.

This API requires the following crate features to be activated: InputEventInit

Implementations

impl InputEventInit[src]

pub fn new() -> Self[src]

Construct a new InputEventInit.

This API requires the following crate features to be activated: InputEventInit

pub fn bubbles(&mut self, val: bool) -> &mut Self[src]

Change the bubbles field of this object.

This API requires the following crate features to be activated: InputEventInit

pub fn cancelable(&mut self, val: bool) -> &mut Self[src]

Change the cancelable field of this object.

This API requires the following crate features to be activated: InputEventInit

pub fn composed(&mut self, val: bool) -> &mut Self[src]

Change the composed field of this object.

This API requires the following crate features to be activated: InputEventInit

pub fn detail(&mut self, val: i32) -> &mut Self[src]

Change the detail field of this object.

This API requires the following crate features to be activated: InputEventInit

pub fn view(&mut self, val: Option<&Window>) -> &mut Self[src]

Change the view field of this object.

This API requires the following crate features to be activated: InputEventInit, Window

pub fn is_composing(&mut self, val: bool) -> &mut Self[src]

Change the isComposing field of this object.

This API requires the following crate features to be activated: InputEventInit

Trait Implementations

impl AsRef<InputEventInit> for InputEventInit[src]

impl AsRef<JsValue> for InputEventInit[src]

impl AsRef<Object> for InputEventInit[src]

impl Clone for InputEventInit[src]

impl Debug for InputEventInit[src]

impl Deref for InputEventInit[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for InputEventInit[src]

impl From<InputEventInit> for JsValue[src]

impl From<InputEventInit> for Object[src]

impl From<JsValue> for InputEventInit[src]

impl FromWasmAbi for InputEventInit[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for InputEventInit[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a InputEventInit[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for InputEventInit[src]

impl OptionFromWasmAbi for InputEventInit[src]

impl OptionIntoWasmAbi for InputEventInit[src]

impl<'a> OptionIntoWasmAbi for &'a InputEventInit[src]

impl PartialEq<InputEventInit> for InputEventInit[src]

impl RefFromWasmAbi for InputEventInit[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<InputEventInit>

The type that holds the reference to 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 more

impl StructuralEq for InputEventInit[src]

impl StructuralPartialEq for InputEventInit[src]

impl WasmDescribe for InputEventInit[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.